Page 1 of 1

imagevue is killing my code

Posted: 04 Nov 2008, 15:11
by Apache13
I have the imagevue loading into a mc from the main site. It is working great although when I load the imagevue then navigate to the rest of the site for some reason it is killing my code.

Click on the shop now section - then click the press section - It works great

Click celebrities in the press section to load imagevue then click the shop section and it messes up the code. You can also then click the press section. Before I used imagevue it was working perfect - any thoughts why it is killing the code?

I also have imagevue in the look book section - once imagevue is loaded same problem happens for the shop,press section

www.imediastudios.com/monicasmall8

Posted: 04 Nov 2008, 23:36
by mjau-mjau
hmm, what is the export parameters of your parent flash?

Of course, it could be a function or global variable that corrupts something in your code. You could try to set "movieClip.rootLock = true" for the movieClip where you are loading Imagevue, although it might not make a difference.

I am right in saying it kinda messes up your menu, and your menu only, right? Perhaps you can paste the code you got for your menu at pastebin, and I could look through it ...
http://pastebin.com/

Unfortunately, we currently have very little experience with running imagevue V2 in external flash pages since we are still in early stages.

Posted: 05 Nov 2008, 14:49
by Apache13
Great appreciate the help - I pasted the code

Posted: 05 Nov 2008, 23:13
by mjau-mjau
Apache13 wrote:Great appreciate the help - I pasted the code
I think you need to also give me the link to the page where you pasted your code!

Posted: 06 Nov 2008, 11:44
by Apache13

Posted: 06 Nov 2008, 22:07
by mjau-mjau
Apache13 wrote:Great appreciate the help - I pasted the code
Where?
I thought you were gonna paste me the code to your menu that I could look through ...

Posted: 06 Nov 2008, 22:20
by Apache13
I posted it at http://pastebin.com/ I hope you do not mind if I paste it here

This is the function for the shop now

_global.shop = function() {
clip.unloadMovie("findstore.swf");
pcredit.gotoAndStop(1);
_root.descr.text = "";
black.gotoAndStop(2);
black.tween("_alpha",100,1,"easeOutExpo",.3);
nav.b1.tween("_y",-90,1,"easeOutExpo",.5);
nav.b2.tween("_y",-66,1,"easeOutExpo",.5);
nav.b3.tween("_y",-42,1,"easeOutExpo",.5);
nav.b4.tween("_y",297,1,"easeOutExpo",.5);
nav.b5.tween("_y",321,1,"easeOutExpo",.5);
nav.b6.tween("_y",345,1,"easeOutExpo",.5);
nav.b7.tween("_y",369,1,"easeOutExpo",.5);
nav.b8.tween("_y",436,1,"easeOutExpo",.5);
_root.vide.myPlayer.pause();
bg_mc.colorTo(null,1,"easeOutExpo",.5);
nav.ho.gotoAndStop(1);

};

I also experimented with putting the code directly on the button - Appreciate the help :)

Posted: 07 Nov 2008, 23:10
by mjau-mjau
Unfortunately, I can't see anything suspect out of that snippet. It could be the tween classes.

Posted: 08 Nov 2008, 15:22
by Apache13
Your right - for some reason the tween classes were getting messed up so I hand coded it frame by frame and it is working great - appreciate your help :)