Supreme
09-18-2012, 09:22 PM
Hello SRL Community.
Before anything, I would like to say I just found out about SRL and Simba and I'm having a bit of a problem in the "last step" to have everything working.
I've set an auto talker but (I'm not sure if its possible on simba) I wanted it to "block on a window"... like I run the script and he only auto talks on a particular window.
I've been using 2 scripts that i'll post here for better understanding of what i'm saying:
This opens the window for the auto talker to auto talk on.
program new; {$DEFINE SMART} {$i srl/srl.simba} begin ClearDebug(); SetupSRL(); end.
This is the auto talker script:
program talker;
{.include srl/srl.simba}
begin
repeat
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
until(false)
end.
What I want is the auto talker to work only on that first window that pops when I run the first script.
If anyone could help me I would be deeply thankful.
Before anything, I would like to say I just found out about SRL and Simba and I'm having a bit of a problem in the "last step" to have everything working.
I've set an auto talker but (I'm not sure if its possible on simba) I wanted it to "block on a window"... like I run the script and he only auto talks on a particular window.
I've been using 2 scripts that i'll post here for better understanding of what i'm saying:
This opens the window for the auto talker to auto talk on.
program new; {$DEFINE SMART} {$i srl/srl.simba} begin ClearDebug(); SetupSRL(); end.
This is the auto talker script:
program talker;
{.include srl/srl.simba}
begin
repeat
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
until(false)
end.
What I want is the auto talker to work only on that first window that pops when I run the first script.
If anyone could help me I would be deeply thankful.