Jump to content

Autoit-gui (v102.16) Install Question


Recommended Posts

I just downloaded AutoIt-GUI alpha v102.16

I have some autoit code that I have now converted from v2 to v3. Took awhile, but I'm glad I did it. The ease of reading the code was a major benefit, but certainly not the only benefit.

The GUI is written in GUI4Cli. It is a pretty simple GUI. I would like to convert it to AutoIt-GUI (now or later, whatever makes sense). I will change it to use Jon official GUI code, when it is released.

My question is about installing AutoIt-GUI that I downloaded...

Do I install AutoIt-GUI alpha into the AutoIt v3.0 build 101 (official code) folder?

Or, should I install AutoIt v3.0 build 101 into a second (alpha) folder and then install AutoIt-GUI alpha into this folder?

Or, should I install the latest AutoIt beta/unstable code and then install AutoIt-GUI alpha into this beta folder? If so, where do I download the latest AutoIt beta/unstable version from?

Thanks, Lilla

Link to comment
Share on other sites

  • Developers

I have seperate directories for the Unstable and the autoit-Gui version and made seperate userfunctions in Scite to run with these versions...

command.8.*.au3=c:\.....\autoit3\au3beta\autoit3.exe "$(FilePath)"

command.name.8.*.au3=Beta AutoIt

command.save.before.8.*.au3=1

command.7.*.au3=c:\.....l\autoit3\au3gui\autoit3.exe "$(FilePath)"

command.name.7.*.au3=Au3Gui AutoIt

command.save.before.7.*.au3=1

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

jdeB, thanks for the feeback.

The deed is done. I converted my GUI from Gui4cli to AutoIt-GUI. It's working well. I am very pleased with the result.

In case it might help some one else get started, here's what I did...

I unzipped AutoIt-GUI (v102.16) into this folder...

c:\program files\AutoIt3\AutoIt-GUI

Tip: the #include in GUI_test.au3 works because it is in the same folder, but the code you write will be stored in a different folder, thus, you must include the path.

For example,

d:\MyScripts\MyGui.au3

#include "c:\program files\autoit3\autoit-gui\GUI_include.au3"

To test during development, I created...

d:\MyScripts\MyGui_test.au3

RunWait('c:\program files\autoit3\autoit-gui\aut2exe.exe /in MyGUI.au3')

sleep(100)

Run( 'MyGUI.exe')

Thanks again,

Lilla

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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