director (mac) question
director (mac) question
- Started
- Last post
- 2 Responses
- drzoom
I want to open up a popup projector from another projector. This works fine on a PC, but doesn't seem to do anything on a Mac.
This is the Lingo I used:
case the environment.platform of
"Windows,32":
open (the pathname & "popup/popup(pc).exe")"Macintosh,PowerPC":
open (the pathname & "popup/popup(mac)")end case
Any ideas what I'm doing wrong? Thanks.
- bitemedia0
I think your problem is that the delimiter or the character between directories should be a ':' instead of a '/' on the Mac...check out:
- drzoom0
yeah, that sounds like it - thanks!