AutoHotkey Community

It is currently May 27th, 2012, 6:16 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 264 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18

What should happen to this project?
Let's work on it, I'll help
Keep it alive
Let it go
I don't care
You may select 1 option

View results
Author Message
 Post subject:
PostPosted: February 5th, 2010, 2:20 am 
This is just awesome like smartGUI


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 20th, 2010, 7:47 pm 
Offline

Joined: April 24th, 2009, 7:06 pm
Posts: 87
Is this project still alive?

I am using the latest Versiion and have some
strange behavior adding a Groupbox to a GUI.

Please have a look at this video to see
what i am talking about.

http://rapidshare.com/files/377579300/Video_2010-04-19_105420.wmv

Thanks
Deep-Silence


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 24th, 2010, 4:20 am 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
The project is dead. Most likely the only help youll get is if you fix the error yourself.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 24th, 2010, 2:16 pm 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
i wish this project was still active

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 27th, 2010, 2:33 pm 
Offline

Joined: August 18th, 2009, 12:07 pm
Posts: 375
Location: holland
Dead or just cooling off for a while, somebody will come along and give it the kiss of life?

_________________
"Choose your parents wisely"


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 25th, 2010, 6:16 pm 
i apologize for this question:

i have been using ahk for a couple years and pretty profficient with it. taking my first dive into moving scripts into a gui.

have been messing w lil builder. i cannot figure out at all how to save your gui, and how to move it into a script.

i have searched around and not having luck. even pointing me to proper threads at the least would be greatly appreciated.

thank you.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: November 25th, 2010, 7:36 pm 
You can save the gui with a right click on the toolbox, IIRC. Haven't looked at the code for years.
After that you can include the files. Then most of functions should be there.

Have fun scripting
toralf


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 22nd, 2011, 3:20 am 
Offline

Joined: October 12th, 2010, 9:23 am
Posts: 132
I just started using this great script and saw it was not really active. I found one problem when I opened the export dialog where the dialog did not display properly. So I played around with the ExportGui.lbp file and came up with the following changes if you too might have a display problem with that dialog.

Here is the modified section I came up with. Just replace that section in the ExportGui.lbp file (save your original copy in case it doesn't work):
Code:
Static Projectdata, ProjectDataPart1 = "
(
[Project]
ExportOnlyData=0
ExportOnlyDataAndFunc=1
ProjectName=ExportGui_
RunExport=0
ListOfGuiID=4
[Gui 4]
PosSize=x163 y202 w398 h220
AlwaysOnTop=0
Content=Export Project
Hidden=1
Resize=1
Toolwindow=1
OrderOfControls=1|2|3|4|5|6|7|8|9|10|11|12
[Control 1]
Content=Save to File:
Disabled=0
Hidden=0
Type=Text
PosSize=x2 y9 w76 h19
[Control 2]
AnchorValue=w
Disabled=0
Hidden=0
Label=ExportGui_EdtFile
Type=Edit
VarName=ExportGui_EdtFile
PosSize=x80 y6 w293 h19
[Control 3]
AnchorValue=x
Content=...
Disabled=0
Hidden=0
Label=ExportGui_BtnBrowseFile
Type=Button
VarName=ExportGui_BtnBrowseFile
PosSize=x376 y5 w18 h21
[Control 4]
AnchorValue=w
Content=Export Options
Disabled=0
Hidden=0
Type=GroupBox
VarName=ExportGui_GrbOptions
PosSize=x7 y32 w325 h170
[Control 5]
Checked=0
Content=Export as real AHK script   (!!! later import not possible)
Disabled=0
Hidden=0
Label=ExportGui_ChkRealAhkScript
Type=CheckBox
VarName=ExportGui_ChkRealAhkScript
PosSize=x12 y46 w251 h42
[Control 6]
Checked=1
Content=Run file after export
Disabled=0
Hidden=0
Label=ExportGui_ChkRunExport
Type=CheckBox
VarName=ExportGui_ChkRunExport
PosSize=x12 y90 w170 h23
[Control 7]
Checked=0
Content=Export only project data
Disabled=1
Hidden=0
Label=ExportGui_ChkExportOnlyData
Type=CheckBox
VarName=ExportGui_ChkExportOnlyData
PosSize=x12 y114 w170 h23
[Control 8]
Checked=0
Content=Export only project data and functions
Disabled=1
Hidden=0
Label=ExportGui_ChkExportOnlyDataAndFunc
Type=CheckBox
VarName=ExportGui_ChkExportOnlyDataAndFunc
PosSize=x12 y138 w250 h22
[Control 9]
AnchorValue=x
Content=Export
Disabled=1
Hidden=0
Label=ExportGui_BtnExport
Type=Button
VarName=ExportGui_BtnExport
PosSize=x262 y146 w59 h28
[Control 10]
AnchorValue=x
Content=Cancel
Disabled=0
Hidden=0
Label=ExportGui_BtnCancel
Type=Button
VarName=ExportGui_BtnCancel
PosSize=x262 y113 w59 h28
[Control 11]
Checked=1
Content=Prefix functions with:
Disabled=0
Hidden=0
Label=ExportGui_ChkPrefixFunc
Type=CheckBox
VarName=ExportGui_ChkPrefixFunc
PosSize=x12 y162 w135 h22
[Control 12]
AnchorValue=w
Disabled=0
Hidden=0
Type=Edit
VarName=ExportGui_EdtPrefixFunc
PosSize=x152 y162 w81 h20
)" ; end of static ProjectDataPartX variables


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 8th, 2011, 9:23 pm 
Offline

Joined: June 7th, 2007, 1:33 pm
Posts: 1019
avira reports it as malware


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 264 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18

All times are UTC [ DST ]


Who is online

Users browsing this forum: Apollo, Google Feedfetcher, JamixZol, rbrtryn, Stigg, Yahoo [Bot] and 20 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