| View previous topic :: View next topic |
| Author |
Message |
Elevator_Hazard
Joined: 28 Oct 2006 Posts: 297 Location: US
|
Posted: Sat Jun 02, 2007 2:19 am Post subject: |
|
|
Yea, just that as plain-text, right? And for extended docs, use Natural Doc's output html. I hadn't taken a detailed look at Natural Docs.
And just some xml-based thing would be perfect, and after looking at your link, that C# type xml looks like it takes the cake. _________________ Changed siggy at request of ahklerner  |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4116 Location: Belgrade
|
Posted: Sun Jun 03, 2007 2:20 pm Post subject: |
|
|
Rich Edit added to list _________________
 |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4116 Location: Belgrade
|
Posted: Tue Jun 05, 2007 1:02 pm Post subject: |
|
|
SpreadSheet added to the list _________________
 |
|
| Back to top |
|
 |
ABCYourWay Guest
|
Posted: Wed Jun 06, 2007 7:09 pm Post subject: |
|
|
I didn't notice new sticky had been added. It's great.
How about "graphic button" and "AniGif"?
I think they derserve Attention. |
|
| Back to top |
|
 |
Grumpy Guest
|
Posted: Thu Jun 07, 2007 10:35 am Post subject: |
|
|
| ABCYourWay wrote: | How about "graphic button" and "AniGif"?
I think they derserve Attention. | Well, I see them in the first message... |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4116 Location: Belgrade
|
Posted: Thu Jun 07, 2007 3:12 pm Post subject: |
|
|
2 Grumpy
Its jut result of your sick imagination.  _________________
 |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4116 Location: Belgrade
|
Posted: Thu Dec 13, 2007 9:26 am Post subject: |
|
|
[deleted] _________________

Last edited by majkinetor on Sun Jan 27, 2008 3:14 pm; edited 1 time in total |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4116 Location: Belgrade
|
Posted: Tue Jan 01, 2008 11:31 pm Post subject: |
|
|
Many new controls and gui related stuff added to the list. _________________
 |
|
| Back to top |
|
 |
elektron
Joined: 02 Oct 2008 Posts: 12
|
Posted: Fri Jan 30, 2009 8:47 pm Post subject: |
|
|
Cool fade function I dev'd
| Code: |
/*
* This is the fade effects lib, pretty cool.
* Copyright (C) 2009 Alexander Alvonellos
*/
/*
* Be sure to make sure that you declare the program name properly.
* It's a good lib, and I've tried not to make it too confusing for
* the beginners to use. They should just have to set something like
* ProgramTitle := A_ScriptName or whatever and that should work fine.
* Or they cand o what I did and just set the program title in a variable
* (See var.ahk)
*/
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* elektron@cox.net
*
*/
FadeIn(Delay, ProgramTitle)
{
Transparency = 0
Critical ;; Helps prevent flickering, misc errors
Winset, Transparent, %Transparency%, %ProgramTitle%
Loop, 254 { ;; Doesn't want to work on 255, don't change this
Transparency++
Sleep, %Delay%
Winset, Transparent, %Transparency%, %ProgramTitle%
}
Critical, Off
}
FadeOut(Delay, ProgramTitle)
{
Transparency = 255
Critical ;; Helps prevent flickering, misc errors
Loop, 254 { ;;Doesn't seem to work on 255...
Transparency--
Sleep, %Delay%
WinSet, Transparent, %Transparency%, %ProgramTitle%
}
Critical, Off
}
|
|
|
| Back to top |
|
 |
hyperdyne
Joined: 06 Apr 2009 Posts: 18
|
|
| Back to top |
|
 |
elektron
Joined: 02 Oct 2008 Posts: 12
|
Posted: Tue Apr 07, 2009 7:35 pm Post subject: |
|
|
| No I didn't... How do I add? |
|
| Back to top |
|
 |
|