Hi,
I’ve been trying day and night to get my flash site working. I broke down and paid for a template to make things easier. But it turned out harder…
This is the template I purchased: http://www.templatemonster.com/flash-templates/9476.html
I want to embed an external flv to my site which requires flash 8. Unfortunately my template is written in flash 6. When I change the publish mode to flash 8 (or 7) and export movie. The portfolio entrance is all funky (it does not work).
I would post the fla; but there is copy right issues since I purchased a single copy of the template. If you are interested in helping me; i would send you a copy of the fla for the purpose of you helping me. I would be very grateful.
Here’s a snippet of the code I think is having problems… but the variable used are beyond me.
onClipEvent(load) {
num=4;
}
on(rollOver) {
if(_root.link<>num) {
this.gotoAndPlay(“s1”);
}
}
on(rollOut, releaseOutside) {
if(_root.link<>num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on(release) {
if(_root.link<>num and _root.animation==1) {
_root.animation=0;
_root.link_prev=_root.link;
_parent[“item” + _root.link].gotoAndPlay(“s2”);
_root.link=num;
_root.play();
}
}
onClipEvent (load) {
accel = _root.accel;
rate = _root.rate;
targetwidth=_root.stand_value;
}
onClipEvent(enterFrame) {
width = width * accel + (targetwidth - _width) * rate;
_width += width;
if(Math.abs(targetwidth-_width)<1) { _width=targetwidth; }
x = x * accel + (targetx - _x) * rate;
_x += x;
_parent.line._x=this._x+7;
_parent.title._x=_x - _width/2;
}
onClipEvent (load) {
accel = _root.accel;
rate = _root.rate;
}
onClipEvent(enterFrame) {
x = x * accel + (targetx - _x) * rate;
_x += x;
}
Respond to this post or e-mail me at davidminhnguyen@gmail.com with your e-mail so I could send you the fla.
Thanks,
David