> how can I tell Director that the movie "presentation.dir" is one folder
> higher than "firstmovie.dir"
> wich i have to in "firstmovie" to go back to "presentation.dir"

Look into the concept of using the "@" operator for relative path names. This will get 
You off the hook.

to go down a level

on mouseUp me
  go movie "@/aFolder/secondMovie"
end mouseUp

to go back up again
on mouseUp me
  go movie "@//firstMovie"
end mouseUp

Notice the // that backs up one level

This method also gets rid of the platform problem You can use either "/" or "\" or ":" 
as folder separator.

More is to be found in the help system if You search on "@".

Bjarne
_______________________________________________________
If it's true that we are here to help others, then what exactly are the OTHERS here 
for?

Bjarne Nyquist
Researcher, Lingo Programmer
The Interactive Institute, phone: +46-(0)8 783 24 74
www.interactiveinstitute.se



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/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!]

Reply via email to