AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Custom GUI Controls & GUI related
Goto page Previous  1, 2, 3
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Elevator_Hazard



Joined: 28 Oct 2006
Posts: 297
Location: US

PostPosted: Sat Jun 02, 2007 2:19 am    Post subject: Reply with quote

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 Very Happy
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 4116
Location: Belgrade

PostPosted: Sun Jun 03, 2007 2:20 pm    Post subject: Reply with quote

Rich Edit added to list
_________________
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 4116
Location: Belgrade

PostPosted: Tue Jun 05, 2007 1:02 pm    Post subject: Reply with quote

SpreadSheet added to the list
_________________
Back to top
View user's profile Send private message
ABCYourWay
Guest





PostPosted: Wed Jun 06, 2007 7:09 pm    Post subject: Reply with quote

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





PostPosted: Thu Jun 07, 2007 10:35 am    Post subject: Reply with quote

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

PostPosted: Thu Jun 07, 2007 3:12 pm    Post subject: Reply with quote

2 Grumpy
Its jut result of your sick imagination. Razz
_________________
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 4116
Location: Belgrade

PostPosted: Thu Dec 13, 2007 9:26 am    Post subject: Reply with quote

[deleted]
_________________


Last edited by majkinetor on Sun Jan 27, 2008 3:14 pm; edited 1 time in total
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 4116
Location: Belgrade

PostPosted: Tue Jan 01, 2008 11:31 pm    Post subject: Reply with quote

Many new controls and gui related stuff added to the list.
_________________
Back to top
View user's profile Send private message
elektron



Joined: 02 Oct 2008
Posts: 12

PostPosted: Fri Jan 30, 2009 8:47 pm    Post subject: Reply with quote

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
View user's profile Send private message
hyperdyne



Joined: 06 Apr 2009
Posts: 18

PostPosted: Tue Apr 07, 2009 2:59 am    Post subject: Reply with quote

did u guys get this added to jons list???

http://www.autohotkey.com/wiki/index.php?title=Script_Listing#GUI
Back to top
View user's profile Send private message
elektron



Joined: 02 Oct 2008
Posts: 12

PostPosted: Tue Apr 07, 2009 7:35 pm    Post subject: Reply with quote

No I didn't... How do I add?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3
Page 3 of 3

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group