Help with flash

Discussion in 'HTML & Website Design' started by Evan B., May 26, 2008.

  1. #1
    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.
     
    Evan B., May 26, 2008 IP
  2. nicangeli

    nicangeli Peon

    Messages:
    828
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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")
     
    nicangeli, May 26, 2008 IP
  3. Evan B.

    Evan B. Peon

    Messages:
    118
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    yes I know
    will that make a difference if I change it?
     
    Evan B., May 26, 2008 IP
  4. Flash Junky

    Flash Junky Well-Known Member

    Messages:
    319
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    130
    #4
    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...:)
     
    Flash Junky, May 27, 2008 IP
  5. Evan B.

    Evan B. Peon

    Messages:
    118
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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?
     
    Evan B., May 27, 2008 IP
  6. Evan B.

    Evan B. Peon

    Messages:
    118
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    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?
     
    Evan B., May 27, 2008 IP