The MIAW Xtra (included in Director) enables Director to open other director
movies in windows other than itself.
MIAWs can for example be used if you want to create a pop-up window containing
another movie.
The following code opens and closes a MIAW example
global win
on mouseUp me
win=window("miaw2")
-- this
is where you tell director the file name
win.filename="miaw2"
win.open()
win.rect= rect(0,0,300,100)
end
-----------
if you want to close a miaw:
global win
on mouseUp me
close(win)
forget(win)
end
-------
if you want to remove the title bar
window("hello world").windowType = 1
MIAWs are great and there is a lot of info on them in Director Help (how to make custom dialog boxes, how they can communicate with eachother etc.)
3) Jeff's Joystick Example
Download it from here:
http://34n118w.net/145A/Annina/
Basically, what you need to do is download the "transfer.cst".
This is a cast consisting of just one script.
Import the cast and drag the script onto the sprite you want to move.
This did not work when i used it with my joystick but maybe it works for you.