| View previous topic :: View next topic |
| Author |
Message |
Elevator_Hazard
Joined: 28 Oct 2006 Posts: 297 Location: US
|
Posted: Sat Jun 02, 2007 1: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: 4511 Location: Belgrade
|
Posted: Sun Jun 03, 2007 1:20 pm Post subject: |
|
|
Rich Edit added to list _________________
 |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4511 Location: Belgrade
|
Posted: Tue Jun 05, 2007 12:02 pm Post subject: |
|
|
SpreadSheet added to the list _________________
 |
|
| Back to top |
|
 |
ABCYourWay Guest
|
Posted: Wed Jun 06, 2007 6: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 9: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: 4511 Location: Belgrade
|
Posted: Thu Jun 07, 2007 2:12 pm Post subject: |
|
|
2 Grumpy
Its jut result of your sick imagination.  _________________
 |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4511 Location: Belgrade
|
Posted: Thu Dec 13, 2007 8:26 am Post subject: |
|
|
[deleted] _________________

Last edited by majkinetor on Sun Jan 27, 2008 2:14 pm; edited 1 time in total |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4511 Location: Belgrade
|
Posted: Tue Jan 01, 2008 10:31 pm Post subject: |
|
|
Many new controls and gui related stuff added to the list. _________________
 |
|
| Back to top |
|
 |
elektron
Joined: 02 Oct 2008 Posts: 21
|
Posted: Fri Jan 30, 2009 7: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: 21
|
Posted: Tue Apr 07, 2009 6:35 pm Post subject: |
|
|
| No I didn't... How do I add? |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Aug 10, 2010 12:08 pm Post subject: |
|
|
| addd explorer combo ctrl |
|
| Back to top |
|
 |
Devendra_Sci Guest
|
Posted: Sun Sep 19, 2010 1:49 pm Post subject: Bind all the above |
|
|
| Hi i love all the above scripts but it is very difficult to get everyone ....make a zip file containing all the above ...thanx in advance |
|
| Back to top |
|
 |
tidbit
Joined: 09 Mar 2008 Posts: 1806 Location: Minnesota, USA
|
Posted: Sat Dec 24, 2011 4:54 am Post subject: |
|
|
ImageButton no longer exists? _________________ rawr. be very afraid
*poke*
Note: My name is all lowercase for a reason.
Even monkeys fall from trees. - Japanese proverb |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 8688
|
|
| Back to top |
|
 |
|