how to open 'non-mac' stacks from within Rev on a Mac

Richard Gaskin ambassador at fourthworld.com
Fri Jan 2 21:08:09 EST 2004


Chipp Walters wrote:

> I've been saving from my PC to a Windows Share, then opening it on the Mac,
> but the Mac doesn't want to let me open it. So, I have to drag/drop it on
> the Rev icon and it opens. I can then save and everything's fine. On the PC,
> in the open/save dialog, there's a dropdown menu which allows you to open
> 'All Files.' Does such a thing exist on the Mac? Also, frequently I leave
> off the .rev extension for a stack, do I just have to drag/drop these stacks
> on top of the Rev App icon to launch them, or is there an easier way?

Thanks to Jacque I've compiled this AppleScript into a droplet for easily
setting the type and  creator codes:

on open theFiles
    tell application "Finder"
        repeat with x in theFiles
            set the creator type of x to "Revo"
            set the file type of x to "RSTK"
        end repeat
    end tell
end open


-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___________________________________________________________
 Ambassador at FourthWorld.com       http://www.FourthWorld.com



More information about the use-livecode mailing list