--
You received this message because you are subscribed to a topic in the Google Groups "innosetup" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/innosetup/jobkzP1LRg4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to innosetup+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/innosetup/43764b5f-805f-4cd1-8455-0c893b53e9d0n%40googlegroups.com.
[Files]
;Adds AutoItX Functionality
Source:
"AutoItX3.dll"; Flags: dontcopy noencryption
[Code]
Const…
Var…
//runs one of many of the commands listed in the AutoItX help file against a particular
//Window\Control via AutoIt
procedure AU3_ControlCommand(title:string; text:string; control:string; command:string;
extra:string; response:string; buffer_len:integer); external
'AU3_ControlCommand@files:autoitx3.dll';
procedure InitializeWizard();
Var
//stores the response of the autoit command
strResponse: string;
begin
//Selects the installation type
named “InstallationType”
AU3_ControlCommand('Installer Window Title',
'', 'TNewComboBox1', 'SelectString', ‘IntallationType',
strResponse, 2048)
end;
Thanks,
Christian Blackburn