AutoHotkey Community

It is currently May 25th, 2012, 7:37 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 45 posts ]  Go to page Previous  1, 2, 3
Author Message
 Post subject:
PostPosted: June 2nd, 2007, 2:19 am 
Offline

Joined: October 28th, 2006, 2:14 am
Posts: 297
Location: US
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 :D


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 3rd, 2007, 2:20 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Rich Edit added to list

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 5th, 2007, 1:02 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
SpreadSheet added to the list

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 6th, 2007, 7:09 pm 
I didn't notice new sticky had been added. It's great.
How about "graphic button" and "AniGif"?
I think they derserve Attention.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 7th, 2007, 10:35 am 
ABCYourWay wrote:
How about "graphic button" and "AniGif"?
I think they derserve Attention.
Well, I see them in the first message...


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 7th, 2007, 3:12 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
2 Grumpy
Its jut result of your sick imagination. :P

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 13th, 2007, 9:26 am 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
[deleted]

_________________
Image


Last edited by majkinetor on January 27th, 2008, 3:14 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 1st, 2008, 11:31 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Many new controls and gui related stuff added to the list.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 30th, 2009, 8:47 pm 
Offline

Joined: October 2nd, 2008, 8:16 pm
Posts: 21
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
}


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 7th, 2009, 2:59 am 
Offline

Joined: April 6th, 2009, 2:50 pm
Posts: 18
did u guys get this added to jons list???

http://www.autohotkey.com/wiki/index.php?title=Script_Listing#GUI


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 7th, 2009, 7:35 pm 
Offline

Joined: October 2nd, 2008, 8:16 pm
Posts: 21
No I didn't... How do I add?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 10th, 2010, 1:08 pm 
addd explorer combo ctrl


Report this post
Top
  
Reply with quote  
 Post subject: Bind all the above
PostPosted: September 19th, 2010, 2:49 pm 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 24th, 2011, 5:54 am 
Offline

Joined: March 10th, 2008, 12:55 am
Posts: 1906
Location: Minnesota, USA
ImageButton no longer exists?

_________________
rawr. be very afraid
*poke*
Note: My name is all lowercase for a reason.
"I think Bigfoot is blurry, that's the problem. It's not the photographer's fault, Bigfoot is blurry. So there's a large, out-of-focus monster roaming the countryside."


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 24th, 2011, 7:23 am 
Offline
User avatar

Joined: December 26th, 2005, 4:40 pm
Posts: 8775
tidbit wrote:
ImageButton no longer exists?


An another moderator must have deleted it.
http://web.archive.org/web/201009142329 ... 50730.html

The function is available here: http://www.autohotkey.com/forum/topic61248.html


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 45 posts ]  Go to page Previous  1, 2, 3

All times are UTC [ DST ]


Who is online

Users browsing this forum: nightson, Retro Gamer and 16 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group