Sascha Posted August 22, 2023 Share Posted August 22, 2023 (edited) @philpw99 ; ... Other AutoIt code lines ; include the gui code Include "myGui.isf" ; run the main declaration function then get a map variable, which contains all control handles. $mMyGUI = mygui() ; Manipulate the controls GUICtrlSetData( $mMyGUI.MyTextCtrl, "Text for my edit") GUICtrlSetData( $mMyGUI.MyList, "item1|item2|item3") ; Show the GUI by using gui handle. GuiSetState($mMyGUI.handle) How did you do that? The function mygui() ist not part of the automatic gernerated code or did i miss something? I created a form project and included testform.isf and i have not been able to call the testform() function. Regard Sascha Edited August 24, 2023 by Sascha Link to comment Share on other sites More sharing options...
asdasf Posted August 22, 2023 Share Posted August 22, 2023 I'm a Korean. Korean language is lost in logs and console windows. Korean is also broken in au3 files. I can't even comment The tools are great. But my Korean is broken, so I can't use it. Link to comment Share on other sites More sharing options...
ISI360 Posted August 26, 2023 Author Share Posted August 26, 2023 On 8/22/2023 at 2:17 PM, Sascha said: @philpw99 ; ... Other AutoIt code lines ; include the gui code Include "myGui.isf" ; run the main declaration function then get a map variable, which contains all control handles. $mMyGUI = mygui() ; Manipulate the controls GUICtrlSetData( $mMyGUI.MyTextCtrl, "Text for my edit") GUICtrlSetData( $mMyGUI.MyList, "item1|item2|item3") ; Show the GUI by using gui handle. GuiSetState($mMyGUI.handle) How did you do that? The function mygui() ist not part of the automatic gernerated code or did i miss something? I created a form project and included testform.isf and i have not been able to call the testform() function. Regard Sascha You need to switch to "Return the gui in a map"-mode in the Formstudio. (It´s in the GUI Settings -> AutoIt Code Settings) You can also check the Testproject 4 on my website, it´s all about that new feature. Link to comment Share on other sites More sharing options...
Sascha Posted August 28, 2023 Share Posted August 28, 2023 On 8/26/2023 at 6:14 PM, ISI360 said: You need to switch to "Return the gui in a map"-mode in the Formstudio. (It´s in the GUI Settings -> AutoIt Code Settings) You can also check the Testproject 4 on my website, it´s all about that new feature. @ISI360 Thank you. Now it works. Nice job. Regards Sascha Link to comment Share on other sites More sharing options...
ISI360 Posted May 7 Author Share Posted May 7 Hi folks It´s update time again! ISN AutoIt Studio version 1.16 is now online! Have fun with it, and as always: Feedback is welcome! 😎 Here the detailed changelog (translated by google): Spoiler --> ISN AutoIt Studio: <-- ----------------------------------- [Bug fixes] - Various bug fixes - Fixed a crash when canceling a file dialog (only occurred when the skin was active) (thx to bfgxp) - The initial setup wizard was displayed in the wrong language. This is now fixed. - Fixed incorrect icons in the macro slots - Fixed redraw bug in toolbar for macro slots - Fixed Redraw issue when locking/unlocking the computer. - When compiling individual files, the project directory was always used as the working directory, which meant that the compiled files always ended up in the root of the project. This is now fixed. (thx to kittmaster) [New Features] - Links to any files can now be created directly in the context menu of the project tree. This function is also available as a toolbar element and as a hotkey. - Added hotkeys for the "Create new subfolder" and "Create new shortcut" functions [Improvements] - The functions "Create new file", "Create new subfolder" and "Create new shortcut" now always use the currently selected location in the project tree as the storage location. Previously, this was only the case when the function was called via the context menu of the project tree. - Connected network drives are now displayed with the correct drive name in the project tree in editor mode - The current storage location of the project is now also displayed in the project properties --> ISN Form Studio 2: <-- ----------------------------------- [Bug fixes] - Various bug fixes - Bug with umlauts in extra code fixed (thx to aSeCa) [Improvements] - The Undo/Redo functions now retain the currently open tab page. (thx to aSeCa) - Added more FormStudio Extracode variables. Almost all elements from the Control Editor and the GUI itself can now be inserted into Extracode with variables. Musashi, argumentum and SOLVE-SMART 3 Link to comment Share on other sites More sharing options...
MattHiggs Posted May 10 Share Posted May 10 Built-in update feature for ISN Autoit studio not working. I click "check for updates" in the main menu, the application detects there is a more up-to-date version available, the program exits to "apply the update," and I am immediately met with this: Process terminates, and re-launching ISN autoit studio shows that update has not been installed. Just a heads up. Link to comment Share on other sites More sharing options...
Rex Posted May 11 Share Posted May 11 Internal update worked fine for me. What version are you on? /Rex Link to comment Share on other sites More sharing options...
argumentum Posted May 11 Share Posted May 11 I use other themes in Windows and as such, nothing is as expected. but if the background is preset, then the other colors should be preset too. TIA Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting. Link to comment Share on other sites More sharing options...
JonJablonowski Posted May 16 Share Posted May 16 (edited) I just started testing this out, and can't seem to find an option to import an au3 file or copy pasting code to generate the UI in the .isf file, similar to how it would work in other GUI creators like Koda. Edited May 16 by JonJablonowski I'm new to all this so excuse my beginner questions 😕 Link to comment Share on other sites More sharing options...
ISI360 Posted May 21 Author Share Posted May 21 On 5/10/2024 at 9:02 PM, MattHiggs said: Built-in update feature for ISN Autoit studio not working. I click "check for updates" in the main menu, the application detects there is a more up-to-date version available, the program exits to "apply the update," and I am immediately met with this: If the included updates does not work, just download the latest version from my website (installer) and overwrite your installation. And don´t worry..none of your user data or ISN settings will be touched at this process. Link to comment Share on other sites More sharing options...
ISI360 Posted May 21 Author Share Posted May 21 On 5/16/2024 at 5:13 PM, JonJablonowski said: I just started testing this out, and can't seem to find an option to import an au3 file or copy pasting code to generate the UI in the .isf file, similar to how it would work in other GUI creators like Koda. The ISN does not (exacly) work like that. In the ISN you create .isf files. These files are oppened with the integrated form designer (isn form studio 2). Here you design your GUI and save it back to the ISF. The nice part about: .isf files contains the raw autoit Code of your gui..so you dont ned to "generate autoit code" from your gui and past it in your script, like in koda. You simply can include the .isf file in your script and that´s it. See the demo projects on my website for some examples. And note: There is a Koda to .isf Converter plugin on my Website, if needed. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now