Ask a Question related to Macromedia Director Basics, Design and Development.
-
Andrew Kennedy #1
Re: Rollover
take a look at this for example of rollovers...
[url]http://portfolio.jumpout.co.uk/examples/director[/url]
"Robert Lee" <rjlee@earthling.net> wrote in message
news:bg8v09$4r0$1@forums.macromedia.com...rollover> I'm not sure what's going on. I've imported a png button for rollover. I'm
> using the same script base that I use for other buttons in the movie. I've
> just changed the member names to match the new button. It does the> action ok, but when I leave, the sprite disappears. I can't see anything
> wrong with the script. Any ideas. I can send you the script if it helps.
>
> --
> -Robert-
>
> Robert J Lee
> [email]rjlee@anastasisproductions.org[/email]
> [url]http://www.anastasisproductions.org[/url]
>
>
Andrew Kennedy Guest
-
help with rollover in DW 8
im trying to do this http://www.dynamicdrive.com/dynamicindex4/lightbox2/index.htm and here is my code. it doesnt actually do what is... -
rollover in 3D
I would like to make a kind of a rollover in a 3d world. I use this script voor a mouseDown action: on mouseDown (me) -- update the mouse down... -
trying to do a rollover - please help!!!
Hi, I'm a bit new to Director and i'm trying to make a rolloverbutton so that when i entermouse i want the transparency to go from 100 to 0. And... -
Rollover and making another rollover with links
Hi, This website is nicely designed and the rollover menu design is simple, but clear and effective. http://earthtrends.wri.org/ Does... -
Rollover ???
hi, I am trying to build my first site with flash and i have a question. what I am trying to do is to get photos to change from grayscale to... -
Desmond22 webforumsuser@macromedia.com #2
Re:Rollover
Not promising anything but zip the script and put it up so I can take a look.
Desmond22 webforumsuser@macromedia.com Guest
-
MeadowRyan webforumsuser@macromedia.com #3
rollover
Please check my site here at
[url]www.meadowlarkco.com/meadowweb/main.htm[/url]
when you rollover company profile, I should have text show up, but it isn't,
my main flash file is called background.fla, and the properties for my button company profile, have
on (rollOver) {
loadMovie("companyprofile.swf", 0);
}
the when I get to my company profile.fla, I should be able to go back to my original fla
heres the code for that
on (rollOver) {
loadMovie("background.swf", 0);
}
Please Help, as nothing is showing up?
MeadowRyan webforumsuser@macromedia.com Guest
-
maltax webforumsuser@macromedia.com #4
Re: rollover
why not using in your first swf, a place at (for exemple) image 70 where nothing apears exept a back button, then use loadMovieNum on your button to load the second swf at level1 and then to go back, the button i told u that unload the level1 movie;gotoAndStop (your image in first swf).
I think this solution is better than what u wanted to use.
maltax webforumsuser@macromedia.com Guest
-
maltax webforumsuser@macromedia.com #5
Re: rollover
also i don't think you should use "onRollover" but prefer "on Realease" for such a button.
maltax webforumsuser@macromedia.com Guest
-
MeadowRyan webforumsuser@macromedia.com #6
Re: rollover
So what would my code look like then: ?
on (rollOver) {
loadMovieNum("companyprofile.swf", 0);
}
and then unload that movie, and then load the other movie?, Im a little confused?
MeadowRyan webforumsuser@macromedia.com Guest
-
maltax webforumsuser@macromedia.com #7
Re: rollover
better if u use:
on (release) {
gotoAndStop (image70)
loadMovieNum("companyprofile.swf", 1);
}
and at image 70 u place a "back" button with this code:
on (release){
unloadMovieNum(1);
gotoAndStop(1);
}
Maltax
maltax webforumsuser@macromedia.com Guest
-
MeadowRyan webforumsuser@macromedia.com #8
Re: rollover
There must be an easier way to do this, 'cause I don't want to use a button, I simply want it so when you rollover the text it goes to the next movie, and from that movie, when you do the same it goes back to the main movie, that's it.
MeadowRyan webforumsuser@macromedia.com Guest
-
maltax webforumsuser@macromedia.com #9
Re: rollover
ok then, u can use on(rollOver) .
But i think it should be disturbing for the users.
the code is the same:
on (rollOver){
unloadMovieNum(0);
loadMovieNum("companyprofile.swf", 0);
}
and in your companyprofile, u should have a button for going back to the menu wich will have:
on (rollOver){
UnloadMovieNum(0);
loadMovieNum("background.swf",0);
}
but i'm not sure that loadMovieNum works with the level0
you have to test it first.
Maltax
maltax webforumsuser@macromedia.com Guest
-
maltax webforumsuser@macromedia.com #10
Re: rollover
but i'm sure it work with level0 for bakgroung.swf and companyprofil in level1.
all u have to do is creating a blank keyframe in bakground.swf at image70, and the ur code
in the company button will be:
on (rollOver) {
gotoAndStop (image70);
unloadMovieNum(1);
loadMovieNum("companyprofile.swf", 1);
}
and in companyprofil, the code for the back button will be:
on (rollOver) {
unloadMovieNum(1);
_root.gotoAndStop.(1); //or u can also use: _level0.gotoAndStop(1)
}
maltax webforumsuser@macromedia.com Guest
-
MeadowRyan webforumsuser@macromedia.com #11
Re: rollover
neither of those two methods worked, could I get your email, and send you my files?
MeadowRyan webforumsuser@macromedia.com Guest
-
SteveO #12
rollover
rollover text links that change colour.
Do these have to be done in java or is there a simple script you can use?
SteveO Guest
-
David Bartosik - MS MVP #13
Re: rollover
changing link color on a mouseover is simply CSS.
Publisher has no support for your using your own CSS, but you can try adding
this snippet of CSS for the href hovor into your page via the html code
fragment:
<style>
a:hover {color: #990000}
</style>
Of course change the html color code to your desired color.
--
David Bartosik - Microsoft MVP
Visit [url]www.davidbartosik.com[/url]
for Publisher and Web Design
Tips and How-to's.
"SteveO" <steve@afc.com> wrote in message
news:bssqlj$n68$1@hercules.btinternet.com...> rollover text links that change colour.
> Do these have to be done in java or is there a simple script you can use?
>
>
David Bartosik - MS MVP Guest



Reply With Quote

