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 

Lil Builder 0.7.1
Goto page Previous  1, 2, 3 ... , 16, 17, 18  Next
 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  

What should happen to this project?
Let's work on it, I'll help
14%
 14%  [ 13 ]
Keep it alive
80%
 80%  [ 74 ]
Let it go
1%
 1%  [ 1 ]
I don't care
4%
 4%  [ 4 ]
Total Votes : 92

Author Message
ahkuser



Joined: 27 May 2005
Posts: 9

PostPosted: Sat Jan 19, 2008 5:53 am    Post subject: Reply with quote

I added your code above and uploaded a new zip file.
_________________
This ID is used by a team of AHK users working together.
Feel free to ask if you want to join.

_________________
Back to top
View user's profile Send private message
BlaXpirit



Joined: 12 Aug 2008
Posts: 2

PostPosted: Wed Aug 13, 2008 2:00 pm    Post subject: Reply with quote

Much better than Smart GUI Creator... Very Happy
Much more bugs... Crying or Very sad
_________________
Back to top
View user's profile Send private message
Fry



Joined: 01 Nov 2007
Posts: 885

PostPosted: Mon Aug 18, 2008 10:06 pm    Post subject: Reply with quote

Wish this was still being developed.

Sad
Back to top
View user's profile Send private message
darklight_tr



Joined: 29 May 2008
Posts: 21
Location: Madison, WI

PostPosted: Tue Aug 19, 2008 5:30 pm    Post subject: Reply with quote

I wish either this or SmartGUI Creator were still being developed. I use SmartGUI because of its interface but I dread the day that neither one works...
Back to top
View user's profile Send private message
toralf n-l-i
Guest





PostPosted: Tue Aug 19, 2008 8:07 pm    Post subject: Reply with quote

You could step in an do some development. It happens that I do not have time and will probably not have in the near and long term future. Sorry.
Back to top
darklight_tr



Joined: 29 May 2008
Posts: 21
Location: Madison, WI

PostPosted: Wed Aug 20, 2008 5:20 pm    Post subject: Reply with quote

toralf n-l-i wrote:
You could step in an do some development. It happens that I do not have time and will probably not have in the near and long term future. Sorry.


Unfortunately both apps are way beyond my meager knowledge of AHK. I would end up making things worse. Sad

Hey, you developed this for free on your own time. I completely understand the fact that you are unable to support it anymore.
Back to top
View user's profile Send private message
rani



Joined: 18 Mar 2008
Posts: 192

PostPosted: Sat Oct 11, 2008 6:58 am    Post subject: Reply with quote

I asked this question in other AHK discussions , with no answer,
may be in this forum it can be answered:

table/grid properties:

freeze columns
1. is it possible to define 'fixed columns' means:
on scroll left-right the specific signed columns will not move ?

Image control
is there an Image control in this tool ?
so I set the image file and see it in the GUI ?

if yes:
can the image control create, by setting it's properties,
scrollers vertical and horizontal ?
so user can scroll the image both directions ?

I asked this question because the AHK standard picture gui
I cannot set the scrollers left/right or up/down

or there is a simple way to do it ?

but of-course the best thing will be if it will be a standard property
of the Image control in this project ,lil builder

any help will be apprecieated.

rgrds
rani
Back to top
View user's profile Send private message
cerewa notloggedin
Guest





PostPosted: Wed Jan 07, 2009 10:51 pm    Post subject: Reply with quote

This looks like a great project.

Wonder if it's appealing enough that people would pay money to see it developed...

If people don't have time to work on it but want to see it done...

maybe they'd pitch in a couple dollars to see it improved...

I personally feel like automatic gui-creators are a huge part of AHK's appeal.
Back to top
Lexikos



Joined: 17 Oct 2006
Posts: 7299
Location: Australia

PostPosted: Thu Apr 23, 2009 5:47 am    Post subject: Reply with quote

I realise Lil Builder probably isn't being actively developed, but I have a suggestion to fix a rather annoying bug: if the selection window's borders aren't exactly 3 pixels wide/high, selecting a control resizes it slightly. This is because Selector_Set2PosSize uses a simple -= 6 adjustment before resizing the Gui with Gui, 1:Show. This isn't adequate, especially on Vista (or 7) where the borders are larger. Instead, Selector_Set2PosSize should use WinMove to size the Gui, or calculate the actual size of the borders. (SysGet 32 or 33 should return the size of one border, but on my system they return 7 when 6 is the correct value.)

I also chose to disable "Aero" rendering of the window border (and the window's shadow):
Code:
DllCall("dwmapi\DwmSetWindowAttribute", "uint", WinExist(), "uint", 2, "int*", 1, "uint", 4)
Back to top
View user's profile Send private message Visit poster's website
Fry



Joined: 01 Nov 2007
Posts: 885

PostPosted: Thu Apr 23, 2009 4:21 pm    Post subject: Reply with quote

Lexikos you will be a god if fix this. I beg of you. BEG OF YOU
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 4511
Location: Belgrade

PostPosted: Thu Apr 23, 2009 5:14 pm    Post subject: Reply with quote

Ill post module you can use to fix this one of next days. Its called Win.ahk and brings usefull windows functions in uniform and convinient API.

Win_Get function can return bunch of win information, one of them to be border size which depend on bunch of things, like OS, skin, etc...
All of the things having different values with different skins (tittlebar, borders, etc..) can be done with it.

I wont fix the code tho, but the line can be simply changed to something like

Code:
x -= Win_Get(hwnd, "Bx")  ;returns border width

_________________
Back to top
View user's profile Send private message
mAdDoG



Joined: 29 Dec 2004
Posts: 75

PostPosted: Sun Jan 10, 2010 3:28 pm    Post subject: Reply with quote

Guys, looks like it would be great, but I immediately get this error when trying to add a standard control:



Hope someone can help soon!
_________________
-buttons, buttons,...
I like to push all the buttons!!!
Back to top
View user's profile Send private message
randallf



Joined: 06 Jul 2009
Posts: 678

PostPosted: Tue Jan 19, 2010 6:38 pm    Post subject: Reply with quote

So how exactly does one view or edit the gui code once one has created a gui?
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 4511
Location: Belgrade

PostPosted: Wed Jan 20, 2010 12:20 pm    Post subject: Reply with quote

Right click on the toolbar and choose export.
_________________
Back to top
View user's profile Send private message
randallf



Joined: 06 Jul 2009
Posts: 678

PostPosted: Wed Jan 20, 2010 4:22 pm    Post subject: Reply with quote

majkinetor wrote:
Right click on the toolbar and choose export.


Thanks! For my 2c this does look really cool, worlds beyond the packaged item... honestly I think you should package this with AHK instead of SmartGUI... (except that it's full of crash bugs... but the interface is really epic)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... , 16, 17, 18  Next
Page 17 of 18

 
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