Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

X-Gui Creator v0.6.1 [12/7/12]


  • Please log in to reply
103 replies to this topic
nothing
  • Members
  • 129 posts
  • Last active: Oct 03 2014 04:51 AM
  • Joined: 09 Jan 2010

XGC is a small tool to help you create GUI.
Updated.
ToDoList:
-Font & Color
- Label.

thank #1 guest for the suggestion.
Link:http://www.mediafire...78q78ytnmslz4ia
feel free to reply,report bugs.Have a nice day!


nothing is impossible with ahk (_L).
Excuse my bad English.
Busy

IHatePoly
  • Guests
  • Last active:
  • Joined: --
This is great!

If you can enclosed a code editor with function/label management (like VB), it would be perfect!!!

Thank you!

nothing
  • Members
  • 129 posts
  • Last active: Oct 03 2014 04:51 AM
  • Joined: 09 Jan 2010
it's on my way!
thanks.
nothing is impossible with ahk (_L).
Excuse my bad English.
Busy

MilesAhead
  • Members
  • 578 posts
  • Last active: Feb 29 2016 05:15 PM
  • Joined: 21 Jan 2009
I'm missing how to start with this. The program comes up with button checkbox etc.. but no main form/gui. I click stuff and nothing happens.

"Some people, when confronted with a problem, think I know, I'll use regular expressions.  Now they have two problems."

- Jamie Zawinski


vahju
  • Members
  • 337 posts
  • Last active: Sep 21 2014 03:52 AM
  • Joined: 17 Feb 2008
Looks like you have to create the main GUI first.

Click Gui > New
Add title then adjust height and width
Click Done
Then add controls from toolbar

DataLife
  • Members
  • 1022 posts
  • Last active: Nov 27 2015 01:09 AM
  • Joined: 27 Apr 2008
This is very nice.
The ability to add associated variables, gLabels, Gui Names, ETC.... is GREAT.

Nice work.

What does the Go button do next to the Label edit box on the menu on the left?

It appears the horizontal positioning of controls does not get it exactly in the middle.
Is that what the H and the V is supposed to do?

When I click H it positions it close to the middle vertically.
When I click V it positions it close to the middle horizontally.

Are these reversed or am I looking at it the wrong way?

After positioning a button with the H and it positions it half way down the GUI then I right click and select move my cursor is appx 1 or 2 inches above the control as I move the control.

I am not able to position a text, updown, or picture control and many more controls with the H and V.

Is that fix planned?

Thanks for the great script.

DataLife
Check out my scripts.  (MyIpChanger) (XPSnap) (SavePictureAs) All my scripts are tested on Windows 7, AutoHotkey 32 bit Ansi unless otherwise stated.

nothing
  • Members
  • 129 posts
  • Last active: Oct 03 2014 04:51 AM
  • Joined: 09 Jan 2010
Hehe.. thanks for your reply!
It gave me a lot of motive force to cancel my day-off plan to continue with this project.
And about the bug. You are right.
I misunderstood the meaning of the 2 words :D.
The "go" button is in my to-do-list that will allow user easily edit the label contents,and so that the gui script can be run instantly after created.
Thanks,
___x@____
---------------------------
Need some help if possible:
- A new nice Icon library for the toolbar :)
nothing is impossible with ahk (_L).
Excuse my bad English.
Busy

DataLife
  • Members
  • 1022 posts
  • Last active: Nov 27 2015 01:09 AM
  • Joined: 27 Apr 2008
I have always wanted a GUI creator that lets you "Drag To Move" controls to place them exactly and quickly where you want them.

The example below gets the job done but I am sure there are much more advanced ways to do this.

This allows you to drag controls on the SmartGUI Creator. But SmartGUI saves the original control position not the final control position when using this script to move the controls.

~LButton::
WinGetActiveTitle,title
WinGet,SGUIID,id,GUI WorkSpace
CoordMode, Mouse
MouseGetPos, MouseStartX, MouseStartY, MouseWin, Control
if MouseWin <> %SGUIID%
 return
SetTimer, WatchMouse, 10
return
WatchMouse:

CoordMode, Mouse
MouseGetPos, MouseX, MouseY
DeltaX = %MouseX%
DeltaX -= %MouseStartX%
DeltaY = %MouseY%
DeltaY -= %MouseStartY%
MouseStartX = %MouseX%  
MouseStartY = %MouseY%
ControlGetPos,CMX,CMY,,,%Control%, GUI WorkSpace
CMX += %DeltaX%
CMY += %DeltaY%
SetControlDelay, -1
ControlMove ,%Control%,%cmx%,%cmy%,,,GUI WorkSpace
GetKeyState, LButtonState, LButton, P
if LButtonState = U  
 {
  SetTimer, WatchMouse, off
  return
 }
return

Would something like this be possible with X-Gui Creator?
Check out my scripts.  (MyIpChanger) (XPSnap) (SavePictureAs) All my scripts are tested on Windows 7, AutoHotkey 32 bit Ansi unless otherwise stated.

nothing
  • Members
  • 129 posts
  • Last active: Oct 03 2014 04:51 AM
  • Joined: 09 Jan 2010
Please wait a few days, i have finish the move controls,i think you will be surprised with this feature .now i'm working on the section: "load gui from AHK file". and still need a new Icon library.
------------------
any help 's welcome !
nothing is impossible with ahk (_L).
Excuse my bad English.
Busy

DataLife
  • Members
  • 1022 posts
  • Last active: Nov 27 2015 01:09 AM
  • Joined: 27 Apr 2008

Please wait a few days, i have finish the move controls,i think you will be surprised with this feature .now i'm working on the section: "load gui from AHK file". and still need a new Icon library.
------------------
any help 's welcome !


I'm looking forward to the latest updates.
thanks
Check out my scripts.  (MyIpChanger) (XPSnap) (SavePictureAs) All my scripts are tested on Windows 7, AutoHotkey 32 bit Ansi unless otherwise stated.

nothing
  • Members
  • 129 posts
  • Last active: Oct 03 2014 04:51 AM
  • Joined: 09 Jan 2010
:mrgreen:
nothing is impossible with ahk (_L).
Excuse my bad English.
Busy

oldbrother
  • Members
  • 149 posts
  • Last active: Nov 09 2014 07:36 PM
  • Joined: 06 Jul 2005
Bug found.

1)Add a Tab control and then add a Listview to one of the tabs.

Switching the Tabs, the Listview is always showing on the top.

2)ListBox has the same problem.

3)Can not add a tab control to another tab control.

Thanks!

nothing
  • Members
  • 129 posts
  • Last active: Oct 03 2014 04:51 AM
  • Joined: 09 Jan 2010
@oldborther:fixed!
thank you for the report.
nothing is impossible with ahk (_L).
Excuse my bad English.
Busy

Klark92
  • Members
  • 870 posts
  • Last active: Dec 29 2015 09:47 PM
  • Joined: 19 Feb 2012
Yeah, tab is always problem, rajat's version either.. only drugwash solved that problem professionally :)

I CAN PROTECT YOUR SCRIPT (ANTI-DECOMPILER by Klark92) (AHK_L*)(PM)
Klark92's Script2Exe Wizard
AHK_L / AHK COMPILED EXE / BIN ICON CHANGER


nothing
  • Members
  • 129 posts
  • Last active: Oct 03 2014 04:51 AM
  • Joined: 09 Jan 2010
@Klark92: this one can do that.
nothing is impossible with ahk (_L).
Excuse my bad English.
Busy