Hello guys!
I have made a project and i have a couple of problems...
<b>1.</b> rollover fast on the images...it will go fuzzy some times ... several images will remain large, and the movie will mess up...why is happening all this?...each button has onRollover and onRollout actions...but the Rollout doesn't work sometimes....when i Rollout very fast for e.g. ... this is a problem i had on many of my projects...a button with rollOver and rollOut actions...acting veird with the rollOut state...is there a fix for this?...i tried somtimes with an invisible button around my button...and changed the rollOut action on the button with an rollOver action on the invisible button....but it shouldn't be necessary to add that button...i don't understand why the rollOut action is acting weird sometimes...see it on this example.
actions for <b>rollOver</b>
on (rollOver) {
_level0.main.movie1.swapDepths(k);
gotoAndPlay("in"
;
_global.i=1;
//i is the number of the picture
var j;
var myvar;
for(j=1;j<=nrpictures;j++){
if (i != j) {
myvar=eval("_level0.main.movie"+j);
myvar._alpha=40;
myvar.enabled=false;
}
}
}
actions for <b>rollOut</b>
on(rollOut){
gotoAndPlay("out"
;
_global.i=1;
//i is the number of the picture
var j;
var myvar;
for(j=1;j<=nrpictures;j++){
if (i != j) {
myvar=eval("_level0.main.movie"+j);
myvar._alpha=100;
myvar.enabled=true;
}
}
}
<b>2.</b>I want now to make everything as optimized as possible...for the slideshow gallery i found a component that i can use...and just change the images outside the flash movie when i customize the gallery for somebody else...
...but i want to add a preloader to this gallery...similar to the one i have on my existing slideshow...how can i do this guys?...i need some assistance with this.
<b>3.</b> Do you think that i can do the gallery ... not the slideshow...like it is now ... with those animations for in and out...to generate automatically?...so i can change only thge images outside the flash movie....??? <b>i really need help on this</b>
Thank you all!
Regards,
Dragos.
I have made a project and i have a couple of problems...
<b>1.</b> rollover fast on the images...it will go fuzzy some times ... several images will remain large, and the movie will mess up...why is happening all this?...each button has onRollover and onRollout actions...but the Rollout doesn't work sometimes....when i Rollout very fast for e.g. ... this is a problem i had on many of my projects...a button with rollOver and rollOut actions...acting veird with the rollOut state...is there a fix for this?...i tried somtimes with an invisible button around my button...and changed the rollOut action on the button with an rollOver action on the invisible button....but it shouldn't be necessary to add that button...i don't understand why the rollOut action is acting weird sometimes...see it on this example.
actions for <b>rollOver</b>
on (rollOver) {
_level0.main.movie1.swapDepths(k);
gotoAndPlay("in"
_global.i=1;
//i is the number of the picture
var j;
var myvar;
for(j=1;j<=nrpictures;j++){
if (i != j) {
myvar=eval("_level0.main.movie"+j);
myvar._alpha=40;
myvar.enabled=false;
}
}
}
actions for <b>rollOut</b>
on(rollOut){
gotoAndPlay("out"
_global.i=1;
//i is the number of the picture
var j;
var myvar;
for(j=1;j<=nrpictures;j++){
if (i != j) {
myvar=eval("_level0.main.movie"+j);
myvar._alpha=100;
myvar.enabled=true;
}
}
}
<b>2.</b>I want now to make everything as optimized as possible...for the slideshow gallery i found a component that i can use...and just change the images outside the flash movie when i customize the gallery for somebody else...
...but i want to add a preloader to this gallery...similar to the one i have on my existing slideshow...how can i do this guys?...i need some assistance with this.
<b>3.</b> Do you think that i can do the gallery ... not the slideshow...like it is now ... with those animations for in and out...to generate automatically?...so i can change only thge images outside the flash movie....??? <b>i really need help on this</b>
Thank you all!
Regards,
Dragos.