Search…

X3 Photo Gallery Support Forums

Search…
 
Apache13
Topic Author
Posts: 12
Joined: 04 Nov 2008, 15:05

imagevue is killing my code

04 Nov 2008, 15:11

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

04 Nov 2008, 23:36

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.
 
Apache13
Topic Author
Posts: 12
Joined: 04 Nov 2008, 15:05

05 Nov 2008, 14:49

Great appreciate the help - I pasted the code
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

05 Nov 2008, 23:13

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!
 
Apache13
Topic Author
Posts: 12
Joined: 04 Nov 2008, 15:05

06 Nov 2008, 11:44

 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

06 Nov 2008, 22:07

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 ...
 
Apache13
Topic Author
Posts: 12
Joined: 04 Nov 2008, 15:05

06 Nov 2008, 22:20

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 :)
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

07 Nov 2008, 23:10

Unfortunately, I can't see anything suspect out of that snippet. It could be the tween classes.
 
Apache13
Topic Author
Posts: 12
Joined: 04 Nov 2008, 15:05

08 Nov 2008, 15:22

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 :)