HI DP members. well I have this site that is all flash. I have the .fla file. What I have done so far is this. You can see the site here. When you look in it. you click on the enter site. and when the last tab comes up it goes away. It making me mad. Here is the site. silkenshomedecor.com Please tell me how to fix that. thnx.
Well I am pretty sure it is nothing that anybody can fix without the .fla You do know that the 5th element that loads is the same as the 4th. (The number and the "Contact Us")
Kinda hard to figure out without having the fla file. If I had to guess, I would say you're movie looks like it is jumping frames in the timeline. Meaning: you have all of the tabs in one frame, but the movie keeps going to a different frame. You could try adding a stop command on the top of your actionScript for the frame with all of your tabs present: stop(); Code (markup): Other than that, your movie clips could be dynamically loaded from actionScript. If this is the case, and you bought this template from somone, your best bet would be to get a hold of the original Flash designer that made the template and have him/her modify the code for you...
Well the .fla is to big to give it. If some will help me personally. like flash junky. Can I have your email? or do you have messenger?
ok well I think I am getting some where. Well the tab with the number 3 at the top has this for the actions. onClipEvent(load){ this.x = 1; _root.xkoord3 = 0; //trace (this._x) //-------------------- _root.vis3 = obj_h._alpha; this.k = 100; //trace(_root.vis3); } onClipEvent (enterFrame) { if (_root.xkoord3<>this._x){ this.x = this.x*_root.accel+(_root.xkoord3-this._x)*_root.rate; this._x += this.x; if (Math.abs(_root.xkoord3-this._x)<1){ this._x = _root.xkoord3; if (this._x == _root.xkoord3){ _root.G = 0; } } } if (_root.vis3<>obj_h._alpha){ this.k = this.k*_root.accel1+(_root.vis3-obj_h._alpha)*_root.rate1; obj_h._alpha += this.k; } } Code (markup): and the tab with the number 4 has this. onClipEvent(load){ this.x = 1; _root.xkoord3 = 0; //trace (this._x) //-------------------- _root.vis3 = obj_h._alpha; this.k = 100; //trace(_root.vis3); } onClipEvent (enterFrame) { if (_root.xkoord3<>this._x){ this.x = this.x*_root.accel+(_root.xkoord3-this._x)*_root.rate; this._x += this.x; if (Math.abs(_root.xkoord3-this._x)<1){ this._x = _root.xkoord3; if (this._x == _root.xkoord3){ _root.G = 0; } } } if (_root.vis3<>obj_h._alpha){ this.k = this.k*_root.accel1+(_root.vis3-obj_h._alpha)*_root.rate1; obj_h._alpha += this.k; } } Code (markup): And now. what should I put for the tab that I am making?