Alright! Got that figured out. Turns out it was a nesting issue. This worked fine when I had the buttons on the stage (and used this[event.target.name] and no quotes around the button names in the switch statement), but, when I put them in a nested clip, I had to use event.target.name and add the quotes around the button names...strange, but it works now.

Now, my only issue is that none of the documents open on the Mac side...hmmm....more testing...

Let me know if anything jumps out at anyone about my folder structure....since I have the Mac files in the start.app folder, do I need to include that in my .app files somewhere?? Instead of this:

PHP Code:
tell application "Finder"
   
activate
   select file 
"file.doc" of folder "fscommand" of disk "CDNAME"
   
open selection
end tell 
does it need to say something like:

PHP Code:
tell application "Finder"
   
activate
   select file 
"file.doc" of folder "fscommand" of folder "start.app" of disk "CDNAME"
   
open selection
end tell