ScriptWriter
#1
Posted 02 January 2008 - 03:53 PM
#2
Posted 03 January 2008 - 02:00 AM
WinGetTitle()
WinGetText()
and
ControlGetText()
#3
Posted 03 January 2008 - 07:25 AM
I know this functions! And i use it in my scripts. But i want that he works in writescriptere`s during record script!Not really sure of what you want here but have you looked at
WinGetTitle()
WinGetText()
and
ControlGetText()
I think its very simple and little work.
#4
Posted 03 January 2008 - 07:44 AM
Main idea and target of this - script maximaly ready to work!
In idealy script must have parametr-switch, and this value control script line behavior - mouse-move or ControlClick !!!
#5
Posted 03 January 2008 - 01:39 PM
#6
Posted 29 January 2008 - 06:18 PM
Sorry i don''t undestand you reply!You missed the point. GEO was suggesting you write your own.
How i can write my own scriptwriter?!
I don''t have this deep knowledge in system programming and many time for this!
This feature very important for me and people who make autoinstalling CD DVD disk's or autorun menu's.
I very very chagrined!!!
#7
Posted 29 January 2008 - 06:31 PM
And those of us that do have "this deep knowledge in system programming" don't have the time, desire or need for a script-writer.Sorry i don''t undestand you reply!
How i can write my own scriptwriter?!
I don''t have this deep knowledge in system programming and many time for this!
This feature very important for me and people who make autoinstalling CD DVD disk's or autorun menu's.
I very very chagrined!!!
#8
Posted 29 January 2008 - 09:05 PM
Well if I understand you correctly what you want is a method to create a autorun.inf file that will open a menu when the CD is inserted. That is not the kind of a feature that is going to be included in AutoIt. It's up to you to use AutoIt for doing this.Sorry i don''t undestand you reply!
How i can write my own scriptwriter?!
I don''t have this deep knowledge in system programming and many time for this!
This feature very important for me and people who make autoinstalling CD DVD disk's or autorun menu's.
I very very chagrined!!!
Here is a sample autorun.inf file built with the autorun.inf builder that I wrote in AutoIt. Note that I wrote it, I didn't ask the AutoIt developers to include it in AutoIt so that I wouldn't have to figure it out myself.
[autorun] open=MyMenu.exe label=Install my program icon=MyMenu.exe,0
Now I am "very very chagrined!!!"
#9
Posted 29 January 2008 - 09:35 PM
Once more:
I use ScreeptWrite to get the fish for script of installing some program packet's.
On rezult output i have some like this:
WinWait("ACDSee Pro - InstallShield Wizard","I &do not accept the") If Not WinActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") Then WinActivate("ACDSee Pro - InstallShield Wizard","I &do not accept the") WinWaitActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") MouseMove(124,352) MouseDown("left") MouseUp("left") Sleep(1000) MouseMove(447,439) MouseDown("left") MouseUp("left")
It is work! But i prefer that code based on ControlClick instructions. Same code look like this :
[code]WinWait("ACDSee Pro - InstallShield Wizard","I &do not accept the") If Not WinActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") Then WinActivate("ACDSee Pro - InstallShield Wizard","I &do not accept the") WinWaitActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") ControlClick("ACDSee Pro - InstallShield Wizard","I &do not accept the","Button2") Sleep(1000) ControlClick("ACDSee Pro - InstallShield Wizard","I &do not accept the","Button5")
I dream that script writer can generate this type of code. Of cose optionaly!
Sorry for my bad english!!!
Edited by NikLok, 29 January 2008 - 09:36 PM.
#10
Posted 29 January 2008 - 09:46 PM
Again that is something that you would write yourself, not a feature that should be included natively in AutoIt.I'm sorry may be i very bad write about my problem/
Once more:
I use ScreeptWrite to get the fish for script of installing some program packet's.
On rezult output i have some like this:WinWait("ACDSee Pro - InstallShield Wizard","I &do not accept the") If Not WinActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") Then WinActivate("ACDSee Pro - InstallShield Wizard","I &do not accept the") WinWaitActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") MouseMove(124,352) MouseDown("left") MouseUp("left") Sleep(1000) MouseMove(447,439) MouseDown("left") MouseUp("left")
It is work! But i prefer that code based on ControlClick instructions. Same code look like this :[code]WinWait("ACDSee Pro - InstallShield Wizard","I &do not accept the") If Not WinActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") Then WinActivate("ACDSee Pro - InstallShield Wizard","I &do not accept the") WinWaitActive("ACDSee Pro - InstallShield Wizard","I &do not accept the") ControlClick("ACDSee Pro - InstallShield Wizard","I &do not accept the","Button2") Sleep(1000) ControlClick("ACDSee Pro - InstallShield Wizard","I &do not accept the","Button5")
I dream that script writer can generate this type of code. Of cose optionaly!
Sorry for my bad english!!!
By the way if you are looking for a silent install (so you don't even see that window) just run the installer with the /s switch. If that doesn't work try /q. Any windows which can not be skipped like product registration windows will still show.
#11
Posted 29 January 2008 - 10:00 PM
It is not a feature of autoit! It is some emprovment of scriptwriter!Again that is something that you would write yourself, not a feature that should be included natively in AutoIt.
I begin from this! But today and tomorrow i and many people prefer AutoIt foк this work!By the way if you are looking for a silent install (so you don't even see that window) just run the installer with the /s switch. If that doesn't work try /q. Any windows which can not be skipped like product registration windows will still show.
#12
Posted 29 January 2008 - 10:00 PM
#13
Posted 29 January 2008 - 10:04 PM
Think that one does create Control type commands if I remember correctly ..
Visit the SciTE4AutoIt3 Download page for the latest versions Forum Rules
Live for the present,
Dream of the future,
Learn from the past.
#14
Posted 29 January 2008 - 11:36 PM
Come on Jos. You have the time. All I need is something where I input my script concept, click a button and Presto!...there's my script.Its not going to happen in scriptwriter but you could look at AutoItMacroGenerator that also comes with the full SciTE4AutoIt3 installer.
Think that one does create Control type commands if I remember correctly ..
Don't often use smileys but I need this one before someone takes me seriously. Can't let that happen.
#15
Posted 30 January 2008 - 08:02 AM
When have we ever been taking you serious ?Don't often use smileys but I need this one before someone takes me seriously. Can't let that happen.
Visit the SciTE4AutoIt3 Download page for the latest versions Forum Rules
Live for the present,
Dream of the future,
Learn from the past.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users





