>> on mouseUp me
>> baOpenFile (the moviepath&"CDresources/advancesales.pdf")
>> end
>
> Now see here you're doing the 'polite' thing and using UNC notation,
> in the form of a '/' for your path delimiter -- that's great.
> Unfortunately it doesn't work with BAPI, FX3 or FileIO, if I recall
> correctly. These Xtras want "legitimate" -- system-specific -- path
> delimiters.
>
> Arg, eh? So try this instead:
>
> on mouseUp me
> baOpenFile ( the moviePath & "CDResources" & \
> the last char of the moviePath & \
> "advancesales.pdf" )
> END mouseUp
Perhaps the path delimiter is an issue, but the error is due to the
statement having the wrong number of parameters. baOpenFile() requires two
parameters, the second of which is ignored on the mac, and I can't remember
what it does on windows.
baOpenFile("path to file", "") is the correct call.
-Kurt
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email
[EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for
learning and helping with programming Lingo. Thanks!]