Can any one help me please,

I'm creating a projector (PC) with a MIAW as an intercative menu bar.

I've got some script from Macromedia site, but when the second window is
opened (MIAW) it adds an additional stage segment to the second movie (all
movie sizes are divisible by 16), that isn't the correct set size!
How can I rectify this?

The MIAW is triggered through a invisible bounding box with 'on mouseEnter'
& 'on mouseLeave' commands

Here's my scripts for both movies

Movie 1 script:-

on StartMovie
  repeat with channel = 95 to 100
    puppetSprite channel, 0
    set the cursor of channel to 280
  end repeat
end
---------------------------------------------------------------------------
global gDemoWin
on mouseEnter
  set gDemoWin to window "win1"
  set the fileName of gDemoWin to "secondmov1.dir"
  set the windowType of gDemoWin to 1
  open gDemoWin
end
----------------------------------------------------------------------------
global gDemoWin
on mouseUp
  if gDemoWin=0 then
    alert " no MIAW is open"
  else
    close gDemoWin
    forget gDemoWin
  end if
end
--------------------------------------------------------------------------

Movie 2 script:-

global gDemoWin
on mouseUp
  set gDemoWin to window "win1"
  set the fileName of gDemoWin to "secondmov1.dir"
  set the windowType of gDemoWin to 1
  open gDemoWin
end
-------------------------------------------------------------------------
global gDemoWin
on mouseLeave
  if gDemoWin=0 then
    alert " no MIAW is open"
  else
    close gDemoWin
    forget gDemoWin
  end if
end
-------------------------------------------------------------------------
on enterFrame
  updateStage
  if rollover (95) then
    go the frame
  else go to frame 18 of movie "firstmov1.dir"
end
on exitFrame
  go the frame
end
 ----------------------------------------------------------------------

Any help would be much appreciated

Advanced thanks

Marcus


[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