AutoHotkey Community

It is currently May 26th, 2012, 9:29 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 816 posts ]  Go to page Previous  1 ... 38, 39, 40, 41, 42, 43, 44 ... 55  Next
Author Message
 Post subject:
PostPosted: July 5th, 2009, 9:47 pm 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
No problem, I'm glad it's been sorted out. ;)
The issue should only occur on first call of the font dialog; subsequent calls will retain and display last choice.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 9th, 2009, 2:11 pm 
Awesome work buddy,

You deserve a medal or something keep it up!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: July 9th, 2009, 2:31 pm 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
Rajat - the original author - deserves all honors for creating this useful tool. ;)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 30th, 2009, 3:09 pm 
Offline

Joined: July 6th, 2009, 9:58 pm
Posts: 678
I searched and searched and searched, I can't figure out how to edit an existing GUI in a script???

Do you always have to build from scratch?

The only way I have found to do it at all is to launch my gui and use 'gui stealer' on it...


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

Joined: February 2nd, 2009, 2:03 pm
Posts: 112
Nicely done!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 4th, 2009, 7:04 pm 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
There is one way to edit an existing GUI in a script (File > Open Script) but it's quite limited currently. Moreover, I believe there's a bug that prevents the tool from opening any script through that menu entry after it's been used once - the tool must be restarted.

Unfortunately I'll be away from the Internet for a period of time so can't work on it.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 5th, 2009, 5:39 am 
Offline

Joined: November 21st, 2006, 9:00 pm
Posts: 210
Will this application ever have the Menu feature built in to it?

It's frustrating building a nice GUI only to add a menu in and everything gets misaligned.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 5th, 2009, 9:22 am 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
I agree, not only in regard to Menu but other elements as well. However, the code should be completely revised and that's something I can't do right now. :(


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 20th, 2009, 10:08 pm 
Offline

Joined: January 2nd, 2008, 4:47 am
Posts: 150
Location: Freenode IRC
Drugwash,

Please tell me more about this script you've authored for Smart GUI. To what extent does it modify Rajat's original application, and such? Do you have a version history or other documentation I could review?

_________________
Image

Need help right away? Get live support on IRC.
Already have an IRC client installed? /join #ahk


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 21st, 2009, 5:30 am 
Offline

Joined: June 26th, 2006, 6:14 pm
Posts: 1379
Location: USA
just look at the post he made or check them with examdiff

_________________
Image
ʞɔпɟ əɥʇ ʇɐɥʍ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 21st, 2009, 5:54 pm 
Offline

Joined: February 17th, 2008, 8:52 pm
Posts: 314
Drugwash and chance of you posting a non 7z version. The version of winzip I have can't open it.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 24th, 2009, 11:33 pm 
Offline

Joined: January 2nd, 2008, 4:47 am
Posts: 150
Location: Freenode IRC
vahju, I know it's not specifically my business to tell people what software to use... but I would recommend downloading WinRAR and/or 7Zip so you can access 7Zip and other archive formats.

These formats outclass the PKZip (WinZip) format and are to be expected on the internet. It'd be like asking web authors to offer GIF versions of their PNG files.

_________________
Image

Need help right away? Get live support on IRC.
Already have an IRC client installed? /join #ahk


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 25th, 2009, 12:51 am 
Offline

Joined: February 17th, 2008, 8:52 pm
Posts: 314
Trying to avoid multiple software that does the same thing on my work machine. Have to use WinZip on work laptop. No biggy. Will see if there is portable version of 7z or Winrar.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 25th, 2009, 2:03 pm 
Offline

Joined: June 17th, 2008, 7:51 am
Posts: 243
Drugwash wrote:
There is one way to edit an existing GUI in a script (File > Open Script) but it's quite limited currently.
I've made some minor changes to add the ability for editing a GUI out of the Clipboard (via Menu). Have a look at the lines with "ruespe" in the comments.
SmartGuiXP mod 4.2a
Perhaps you want to insert it into a next version.

_________________
Greetings
Rog


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 26th, 2009, 1:31 am 
ecksphore wrote:
Will this application ever have the Menu feature built in to it?

It's frustrating building a nice GUI only to add a menu in and everything gets misaligned.

You can use sgui to build your gui with everything execpt the main menu, then convert the gui code to use relative coords. Then you can easily add the menu element.
Code:
title         Abs2Rel v3 - Absolute to Relative coordinates fix for SGUI
source post   http://www.autohotkey.com/forum/post-71874.html#71874
in thread     http://www.autohotkey.com/forum/topic11722.html
code link     http://autohotkey.net/~aikscroll/Abs2Rel.ahk


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 816 posts ]  Go to page Previous  1 ... 38, 39, 40, 41, 42, 43, 44 ... 55  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: JSLover, MSN [Bot] 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