would mySpot be substituted for the instance name of the button?
thanks,
Main Topics
Browse All Topicsgreetings.
i'm using loadMovie to introduce some content on top of my current movie. The links from the bottom movie are showing through the top movie.
http://luminopolis.com/por
steps to replicate.
browse to page.
click a thumb (detail will expand)
the only link in that window should be the web address. the four spots where the thumbs are on the bottom movie are showing through the content.
thanks,
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
hi,
u can do some work around
add a dummy button (bottom most layer) to ur details movie clip and give instance name as mybtn1_btn and add following script to time line
mybtn1_btn.onRollOver = function()
{
mybtn1_btn.useHandCursor = false;
}
or u can add following script on button
on(rollOver){
mybtn1_btn.useHandCursor = false;
}
i hope this will help
regards,
anjip
hmm, i can't seem to get that to work for me.
in the external movie i'm opening i have:
_root.btn_aikc.onRollOver = function()
{
_root.btn_aikc.useHandCurs
}
i also tried:
_root.btn_aikc
where btn_aikc is the instance name of the button in the bottom movie.
Ideally i'd like to only disable the buttons on the bottom movie when the loadmovie loads the external movie and then enable them when the user closes the top movie.
suggestions?
interesting.
i'm putting that code in the movie that opens on top of the root movie and cannot get it to work.
heres my fla's
http://luminopolis.com/por
http://luminopolis.com/por
thanks,
Hi
you can download the files from
www.pylon-group.com/tmp/po
I've fixed it for you
Regards,
Ramy
hi dirklance,
have you tried this
add a dummy button (bottom most layer) to ur details movie clip and give instance name as mybtn1_btn and add following script to time line
mybtn1_btn.onRollOver = function()
{
mybtn1_btn.useHandCursor = false;
}
or u can add following script on button
on(rollOver){
mybtn1_btn.useHandCursor = false;
}
this will work
rgds
anjip
Business Accounts
Answer for Membership
by: Ramy_atefPosted on 2006-05-23 at 15:24:16ID: 16746994
Hi
You can enable or disable the buttons or the movie clips by
mySpot.enabled=false
and to activate it again
mySpot.enabled=true
Regards,
Ramy