Jump to content

ISN AutoIt Studio [old thread]


ISI360
 Share

Recommended Posts

I don't want the "lower window" to be always visible or always hidden. Can you please add the F8 hotkey to show/hide the AutoIt debug pane as in SciTE?

 

Sorry can you explain in more detail..i don´t know what you mean.

And 0.96 is not released yet.

Link to comment
Share on other sites

dosen't insert Ip input custom font size. i just saw that. insert it manually until fix.

___

Edit: This is srsly sick! Even though the visual forms editor needs some work, this is off the proverbial hook.

BTW, I have 1 sugestions so far: at the ip input box, if the user types 0, as the first number, jump to the next field (considering 192.168.0. ... ). Frankly I never saw that anywhere and it's odd. With so much cash invested in UX, it's quite funny no one *important* has implemented it yet.

 

Thank you!

Edited by pauleffect
Link to comment
Share on other sites

Sorry can you explain in more detail..i don´t know what you mean.

And 0.96 is not released yet.

I really don't know how to explain this any better but I'll try. The "lower pane" annoys me when I'm coding because it wastes vertical space. However, when I need to run a script, I need the lower pane because I need to see any error messages or ConsoleWrite messages during script execution. I want the F8 hotkey to be assigned to hiding and showing the lower pane, just as it does in SciTE.

Who else would I be?
Link to comment
Share on other sites

Ah ok..now i understand what you mean.

Currently you can completly hide the "lower pane" in the program settings. But its a good idea to toggle the window with a hotkey.

Or only shows the window when a script is running...i will implement something like that in 0.96 ;)

Link to comment
Share on other sites

Hi,

First of all, congratulation for this software, seem to be the futur official editor for autoit ^^

But, for the first test i have done, here i my remark :

- Very difficult to find on the first launch how to create a GUI ( why have a button in the menu bar to comment line, and not one for create a gui ? )

- If i create a project, create a gui, create an ip input box, and run the script, you got an error :

Unknown function name.: _GUICtrlIpAddress_Create

like if it missed an include, but if you show the code from the gui, then execute the code, all is working

( if i open your project to understand the logic of isn studio, i can see you have #include <GuiIPAddress.au3> in your code, but i can see it in the gui code too )

- the right tree, is very useful, but bad that is only refresh when we run the script ( perhaps need a button to manually refresh it )

- when we go in compilation option we can only compil in 32 or 64 bit mode, not both at same time ?

- ISN does'nt auto increment version when compiling ? ( and i can't see the version number in windows file property )

That's all for now :)

 

( Don't missunderstand my post, i LOVE your software and will follow with lot of interesment ^^ , thanks again )

 

PS :

"Or only shows the window when a script is running...i will implement something like that in 0.96 ;)"

 

Yeahhh it will be useful !!!

Edited by pinkfoyd
Link to comment
Share on other sites

Guys, I have  a question and I need a little help.  Since I installed Autoit Studio on my pc, I've been having a little trouble with my scripts running correctly. I have 4 or 5 scripts that I use a main script to run them with using the ShellExecuteWait function. After installing Autoit Studio, at first all it would do is open these scripts in the Studio. Well I found in the settings how to stop that but, now all that happens is they are opening in the SciTE editor each time the the ShellExecute function fires. Where can I change the settings so that if I use ShellExecute, it will run the script and not just open it in an editor.

 

I found the answer to my question guys!

'?do=embed' frameborder='0' data-embedContent>>

Edited by RickB75
Link to comment
Share on other sites

@pinkfoyd:

Thanks for your feedback!

- About the formstudio and the includes:

Do not mix "include your form in your script" and "generate code in the formstudio". The "Generate AutoIt Code" in the should you use ONLY if you want to build a gui in the Formstudio and use the code in an external script (or want to edit it manually). When you wana use it with ISN you simply include the isf file (as in the testproject).

The isf does not include ANY other includes!!! You must set it in your main script. (Because if you have 10x GUIs you don´t need 10x for example GuiIPAddress.au3 includes)

An the best at this methode is: If you want edit something in your GUI...just open the isf..edit your GUI...click on save and its done! No more code copy/pase or something else!

The includes are only insertet when you klick on generate code. (To build a runnable script for testing the gui)

Just open an .isf file with notepad and you see how it works.

 

- The script tree refreshes everytime you save the script.

- about 32 and 64 bit compiling: If you wana build a complex compiling function you should test the macros. Here you can build a "Compile" Macro where you can easily compile a 32and 64bit version of your project! (And much more!)

Or you can also use the AutoIt3Wrapper in the Tools Menu. There you can select x86 & x64.

- Version when compiling: You can do this via the AutoIt3Wrapper (see Resource Update Tab)

Hope it helps you and sorry for my english ^^

Edited by ISI360
Link to comment
Share on other sites

 
Thank you!

Your editor is very user-friendly and works almost as good.

Maybe I'll use your editor for my projects.

I have a problem I have to solve.

my script start with settings like this:

#AutoIt3Wrapper_Res_File_Add=ResourcesSoundsxxx0001.wav,sound,s0001

when i compile the script with your editor then i get this errors:
 

Skipping #AutoIt3Wrapper_res_requestedExecutionLevel directive. Invalid value:Gil XXXXX
- Skipping #AutoIt3Wrapper_Res_File_Add because the file is not found:ResourcesSoundsxxx0001.wav,sound,s0001
- Skipping #AutoIt3Wrapper_Res_File_Add because the file is not found:ResourcesSoundsxxx0002.wav,sound,s0002

......

.....

 

I should not get these errors.
All files are in the right place and I do not get these errors if i compile the script with SciTE editor.

So the problem is in your editor.

I really want to use your editor, but unfortunately because of this problem I can not.

Also, is there a way to
directly run the script as compiled exe with one click? it will be very useful option..

i hope you understand what I mean. if so then how can i do this?

thanks

Link to comment
Share on other sites

Hmm..wait for the new 0.96 BETA (which will released in a few days). There will be a syntax update for Autoit and the AutoIt3Wrapper. If it doesn´t work with 0.96, please post a new message.

EDIT: When i try this in my ISN (0.95) it works normaly. Did the files really exist? Maybe the path is too long...

And about your running the compiled exe:

Just make a Macro where you compile your exe and the run it. You can trigger your macro with a macroslot so you can easily run it from the Toolbar (or the Tools Menu).

Hope it helps!

Edited by ISI360
Link to comment
Share on other sites

 

EDIT: When i try this in my ISN (0.95) it works normaly. Did the files really exist? Maybe the path is too long...

the files are exist.

it work if i compile it with SciTE so should not be any problem..

the file path is not full for a very good good reason.

the path start from where the script exist...

i can write the full path but then when i move the entire project to a different place, then i will have to update all the paths..

did you test the case that the path start from where the script exist(not full path)?

this is what you should test.

 

And about your running the compiled exe:

Just make a Macro where you compile your exe and the run it. You can trigger your macro with a macroslot so you can easily run it from the Toolbar (or the Tools Menu).

 

I could not understand your idea ..

I recommend you to develop this option.

this will be very useful in cases that the developer need to test things that can be tested only if the script is compiled.

Link to comment
Share on other sites

Yes i tested it with relativ dirs (where the script exist) and it worked. Can you post an whole example script which i can test?

 

this will be very useful in cases that the developer need to test things that can be tested only if the script is compiled.

 

Yes and this is exactly why macros exists. You can customize a lot of actions exactly how you want it. Just test it under project -> Macros. Just i said above create a macro (eg. Compile my script) and add a trigger. Here you can choose if you simply want after compiling to run your exe (as action run program) or make a full compiling macro with actions like compile this au3 to exe and run it and so on..

You can also set an Hotkey in the Programsettings to your Macro so you can easily run it (If you trigger it with a macroslot)

Link to comment
Share on other sites

Thanks TS, Koda is dead for a while and i am hoping your soft has a way to easily(without editing hassle) incorporate manual autoit code with custom made gui stuff, this was basically something i just cant live with in Koda anymore and i will gladly donate/pay if you solve this 

Link to comment
Share on other sites

Yes maybe the ISN is a tool you. Just see the testproject how easy it is to connect your Skript with a GUI!

No more code copy/paste or editing. Just make an isf GUI. Include the isf in you mainscript and do what you want with it! (e.g. show it with guisetstate)

And if you have to edit something on your gui...just simply open the isf..make your edits..click on save and it´s done! ;) ;)

Edited by ISI360
Link to comment
Share on other sites

Hi

I started using ISN 2 days ago and it was grate until i tested the organize includes tool and after i closed the tools gui i realized that my script reverted to my last saved version. So i lost couple of hours of coding. I know I should save more often but still.

You should add an must save warning or an autosave before running tools.

thx

Link to comment
Share on other sites

Hi

I started using ISN 2 days ago and it was grate until i tested the organize includes tool and after i closed the tools gui i realized that my script reverted to my last saved version. So i lost couple of hours of coding. I know I should save more often but still.

You should add an must save warning or an autosave before running tools.

thx

If you go to settings, there's a thing for automatic backups. So that you won't lose that much data. That is of course only a temporary fix, but backups are quite nice things to have.

Edited by Jonniy

Thanks for your help & have a good day. Yours sincerely, -Jonniy-  

Link to comment
Share on other sites

ISN AutoIt Studio 0.96 BETA is online!

Changes (by google translator):

-> ISN AutoIt Studio: <-
-----------------------------------
- Fix: In Dbug tool is the variable $ tmp now correctly displayed
- Bugfix: Resizingprobleme in Dbug Tool
- Fix: Fixed bug with macros disabled in conjunction with macro slots
- Fix: Fixed bug in "Set Startup Parameters " macro
- Fix: Bug when renaming the project fixed ( for activated change logs )
- Bugfix: " After compiling " macro was always started a little early . This is now fixed.
- Fix: the commands AU3Wrappers will now be highlighted in the code correctly
- Bugfix : Syntax Update for AutoIt version 3.3.10.2
- Bugfix : Hotkeys from the ISN now work even if you're currently in a plugin
- Fix: Fixed a bug where the button " Export Folder file / " is not
- Fix: Double-clicking on a variable automatically marked now the $ sign with
- Fix: Some buttons on the hotkeys were hardcoded in German ( eg. minus number block) . These are now also read from the language file.
- Bugfix : Various bug fixes
- NEW : Danish language update ( thx to Rex )
- NEW: If you use the ISN in portable mode , you can now also your entire AutoIt installation for ISN " portable" make ! Create simple in the ISN folder, create a subfolder called " AutoIt " (without quotes) and copy there the contents of your AutoIt into installation. The ISN automatically then uses the data from that folder . ( Does everything naturally only in Portable mode! )
A more detailed instructions , check out the FAQs.
- NEW: Change logs can now be activated already when creating a project.
- NEW: The time for change logs can now be in the format HH: MM: SS to be specified directly.
- NEW: It is now possible to delete all the change logs at once
- NEW: The path to the plug-ins can now be changed in the program settings . (Standard continues to be Data Plugins )
- NEW: New Macro : Insert snippet -> Adds AutoIt code at the cursor position in the Script Editor .
- NEW: New macro : project version change -> Changes the project version to a specific value . Alternatively, the project version can also be increased by one step.
- NEW : Updated APIs AutoIt version 3.3.10.2
- NEW: In the "Script Editor" settings nu can be determined whether scripts with the AutoIt3Wrapper to be launched
- NEW: New variables in the macros available ! ( eg. project % version% ) In addition to the "More Paths" is now added in the input field. Thus, the previous content will not be overwritten .
- NEW: In the " Edit" menu can now " switch Lower window " with the lower output of the console window displays / are hiding . There is also a hotkey for this is Availabilities are !
- NEW: If the project / script is started , sends the ISN all open files au3 the "Save" command before the script / project start
- NEW: The settings of the Tidy.ini can now be managed in the program settings ( script editor -> Tidy Source)
- NEW: If you search in the search box on the Script Tree something the found item is now displayed right in the Script Editor
- NEW: New Menu : View
- NEW: hotkey to hide the Script tree / project tree
- NEW: arrow keys can now be included in hotkeys.

-> ISN form Studio 2 : <-
-----------------------------------
- Bugfix : Various bug fixes
- Fix: Fixed a bug when dragging an Makierungsrahmens with the mouse
- NEW: In the dialog box " Select Image " is now a " Browse" button available . This can also post external files are selected .
- NEW : When moving from single controls now alignment lines appear ! ( Can also be disabled in the settings )
- NEW: In Controls now the size change can ( the resizing) can be determined. The corresponding field is now to find the right Control Editor under "General" .
- NEW: The distance of several controls can now be aligned horizontally and vertically by a private grid (context menu -> arrangement )

Link to comment
Share on other sites

Hi,

I started using ISN AutoIt Studio 0.95 BETA recently for my first project. It is really nice to have the possibility to add a GUI to the project easily. I added a menu to project. Today I updated to version 0.96 BETA and was no longer able to right click the little menu icon and get the menu editor loaded. Did anything change on how to load the menu editor or did I find a bug?

It seems to happen if more than one form is loaded in ISN....

Edited by nbnba
Link to comment
Share on other sites

  • Jos locked this topic
Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...