Re: GUI scripting Flash
Re: GUI scripting Flash
- Subject: Re: GUI scripting Flash
- From: "Stockly, Ed" <email@hidden>
- Date: Fri, 10 Apr 2009 13:06:44 -0700
- Thread-topic: GUI scripting Flash
> I'm trying to script some processes inside Adobe Flash.
>...depending on how many art files I have to import, can I set a x value or
infinite value for repeat keystroke return?
Yes. This is what I would do:
tell application "Finder"
set selectedItems to the selection
end tell
set itemCount to count selectedItems
-- then, inside your system events tell---
repeat itemCount times
delay 1
keystroke return
end repeat
Or, if you prefer an infinite loop:
Repeat
delay 1
keystroke return
end repeat
> This is my first post. Should I post my script as I have it thus far?
Not needed, just post the parts you need help with. I don't have Flash, is
it totally non-AppleScriptable?
HTH,
ES
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden