cwem Posted April 9, 2009 Posted April 9, 2009 I want to develop several scripts at the same time but it seems that I can't open several SciTE4AutoIt3's. Is there any workaround? Although there can be several EXEs to run at the same time, the scripts being debugged and tested can't be done in this way because I don't know what lines go wrong when problems occur.
JRowe Posted April 9, 2009 Posted April 9, 2009 Press ctrl+n while in scite, a new tab will pop up. [center]However, like ninjas, cyber warriors operate in silence.AutoIt Chat Engine (+Chatbot) , Link Grammar for AutoIt , Simple Speech RecognitionArtificial Neural Networks UDF , Bayesian Networks UDF , Pattern Matching UDFTransparent PNG GUI Elements , Au3Irrlicht 2Advanced Mouse Events MonitorGrammar Database GeneratorTransitions & Tweening UDFPoker Hand Evaluator[/center]
cwem Posted April 9, 2009 Author Posted April 9, 2009 Press ctrl+n while in scite, a new tab will pop up. Thanks but in fact only one tab can "F5 - Go" and the others can't be executed until the executed one has finished
Moderators Melba23 Posted April 9, 2009 Moderators Posted April 9, 2009 cwem,To open multiple instances of SciTE, use the 'Options - Open Global Options File' menu option. Once the 'SciTEGlobalProperties' file is open, look for the line "check.if.already.open=1" - it is line 105 for me. Add a '#' at the start of the line and save the file. Now SciTE will open a new instance when you select a new file to edit from an external program (such as Explorer). If you use the 'File - Open' menu in a currently running instance of SciTE, you will get the selected file opening in a new tab as before.Each instance of SciTE can run a separate script as you require.M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Developers Jos Posted April 9, 2009 Developers Posted April 9, 2009 cwem,To open multiple instances of SciTE, use the 'Options - Open Global Options File' menu option. Once the 'SciTEGlobalProperties' file is open, look for the line "check.if.already.open=1" - it is line 105 for me. Add a '#' at the start of the line and save the file. Now SciTE will open a new instance when you select a new file to edit from an external program (such as Explorer). If you use the 'File - Open' menu in a currently running instance of SciTE, you will get the selected file opening in a new tab as before.Each instance of SciTE can run a separate script as you require.M23I prefer you copy that line into the SciTEUser.properies and modify it there.This will override the default and will not be overridden with the next upgrade of SciTE4AutoIt3.Jos 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.
cwem Posted April 9, 2009 Author Posted April 9, 2009 I prefer you copy that line into the SciTEUser.properies and modify it there.This will override the default and will not be overridden with the next upgrade of SciTE4AutoIt3.JosI'm using this version:SciTE4AutoIt3 Version 1.77 Dec 24 2008 09:01:19by Neil Hodgson. Updated: Valik & JosNone of any Option files contains any lines in it and so I'm unable to locate SciTEUSEr.properties. If I edit another script by right clicking it and then edit, the currently opening sci editor will create another tab and therefore I'm unable to run 2 scripts at the same time
Moderators Melba23 Posted April 9, 2009 Moderators Posted April 9, 2009 Jos,I presume that you would advise me to copy the lines I have changed in Global.properties (position.left, position.top, visible.policy. etc) to User.properties as well? I can see the usual "DO NOT CHANGE ANYTHING" lines scattered around - anywhere in particular in the file?M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Developers Jos Posted April 9, 2009 Developers Posted April 9, 2009 Jos,I presume that you would advise me to copy the lines I have changed in Global.properties (position.left, position.top, visible.policy. etc) to User.properties as well? I can see the usual "DO NOT CHANGE ANYTHING" lines scattered around - anywhere in particular in the file?M23Its up to you to make the changes where you want but anything you change in au3.properties will get lost with the next update.Not sure I want the DO NOT CHANGE ANYTHING warning in it but could put something in it that warns about the chnages being lost with next update.Jos 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.
cwem Posted April 10, 2009 Author Posted April 10, 2009 Its up to you to make the changes where you want but anything you change in au3.properties will get lost with the next update.Not sure I want the DO NOT CHANGE ANYTHING warning in it but could put something in it that warns about the chnages being lost with next update.Jos Sorry but I can't see anything (i.e. blank option files), so what should I do in order to develop multiple autoit scripts? I don't want to buy multiple computers
Developers Jos Posted April 10, 2009 Developers Posted April 10, 2009 Sorry but I can't see anything (i.e. blank option files), so what should I do in order to develop multiple autoit scripts? I don't want to buy multiple computers Correct, SciTEUser.properties is empty when opened the first time. Add the parameters you want to change to it, in this case: check.if.already.open=0 Jos 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.
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