Jump to content

Recommended Posts

Posted

Great looking program! I don't know if this is just me, or if you intentionally had it like this, or if its a bug...

Alot of my buttons wont work.

x Y x

x x x

x x x

Y x x

x x x

Y x x

Y Y x

Pretend like the xs and Ys are the buttons on your gui for the bottons.

The Capital (Y) = buttons that dont work for me. Sorry if this is known information.

Thanks!

-Para

  • Replies 151
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted (edited)

@Angel:

It's on the to-do list.

@bshoenhair:

Sure. However, I would need to create a different background image if you wanted to see a smaller grid.

@para:

Yep, those controls are not fully supported yet. If you don't want them grayed out you can comment out:

$notYetImplemented = ",2,10,16,19,20," ;cursor is index 1

and replace it with

$notYetImplemented = ""

But they won't do anything.

Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Posted

@Angel:

It's on the to-do list.

That'd be really cool! How do you plan to do it? Would you save the GUI framework in XML or something similar?

BTW, is there any builtin or library UDF XML support in AutoIt?

Cheers,

Angel

Posted

:lmao:

I thought it was funny how the girls post came up, i knew it would sky rocket.

Then the boy made the joke and it was just fun to compare.

Sorry for the clutter = /

Thanks

  • 3 weeks later...
  • 1 month later...
Posted (edited)

I plan to rename AutoBuilder to GuiBuilder based on feedback/suggestions.

- I think I can make MDI work; I'm making progress.

- This is just a screenshot; I don't have a new version to post yet.

- Between work and important basketball games, I haven't don't much. Sorry for the delays

Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Posted

Thank you for your hard work on this, CS.

If only it could resume previous builds :)

"I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
  • 2 weeks later...
Posted

cant find the file on fileman .. "404: The page/file you requested could not be found." ?!

or has it moved to some other place?

http://www.autoitscript.com/fileman/users/public/CyberSlug/

Posted

cant find the file on fileman .. "404: The page/file you requested could not be found." ?!

or has it moved to some other place?

http://www.autoitscript.com/fileman/users/public/CyberSlug/

<{POST_SNAPBACK}>

The latest is included with Scite4Autoit3. If that helps you. :)
  • 2 weeks later...
Posted

For CS,

To start with many thanx for the GuiBuilder, saves on the things we do over and over again.

Not sure if your aware of this but the $WS_VISIBLE seems to be causing the GuiCtrlCreateGraphic's to not (graphic not showing) work properly

On the Note of the GuiBuilder, suggestion:

When it builds i think it would help to create constants for the width and height

that way if the window needs to grow or shrink it's easier to do in one place

Example:

If(Not IsDeclared("G_DTWidth")) Then Global Const $G_DTWidth = 500
If(Not IsDeclared("G_DTHeight")) Then Global Const $G_DTHeight = 500

GuiCreate("MyGUI", $G_DTWidth, $G_DTHeight,(@DesktopWidth-$G_DTWidth)/2, (@DesktopHeight-$G_DTHeight)/2 , $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS)

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Posted (edited)

$WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS)

those styles are supposed to be BITOR'd together instead of using the + sign

Edited by quaizywabbit
[u]Do more with pre-existing apps![/u]ANYGUIv2.8
Posted

those styles are supposed to be BITOR'd together instead of using the + sign

<{POST_SNAPBACK}>

To combine styles to default style use BitOr...

; transparent child window

$pic=GUICreate("", 14, 80, 0, 0,$WS_POPUP,$WS_EX_LAYERED+$WS_EX_MDICHILD,$gui)

:) Looks optional, if you wish too add to the default style, then use BitOR.
  • 3 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...