Hello,
(Been gone from here a while, mostly shame for not creating an FAQ I had suggested. But since this is the best place for answers.)
I have a movie clip that is three movie clips deep. I am scrolling that clip with actionscript. Then the movieclip reaches the end...a 'next' button will load page two (another movieclip).
The problem is since I am reusing the instance name, page two,three,four, etc are all scrolled to the same point.
I have attempted to set the x and y in the attachmovie command...but it isn't working.
This won't work. I have tried a 'this._x' and even the entire path..but then I get an identifier error.
My work around is this...(but it bugs me to use a workaround)
Any suggestions?
Dave
"Credit belongs to the man who is actually in the arena - T.Roosevelt
(Been gone from here a while, mostly shame for not creating an FAQ I had suggested. But since this is the best place for answers.)
I have a movie clip that is three movie clips deep. I am scrolling that clip with actionscript. Then the movieclip reaches the end...a 'next' button will load page two (another movieclip).
The problem is since I am reusing the instance name, page two,three,four, etc are all scrolled to the same point.
I have attempted to set the x and y in the attachmovie command...but it isn't working.
Code:
this._parent.workSheetSlide.attachWorksheet.attachMovie
(whatWorksheet + whichSheet, "wrksht",
this.getNextHighestDepth(),{_x:10, _y:10})
This won't work. I have tried a 'this._x' and even the entire path..but then I get an identifier error.
My work around is this...(but it bugs me to use a workaround)
Code:
this._parent.workSheetSlide.attachWorksheet._x =0
this._parent.workSheetSlide.attachWorksheet._y = 0
this._parent.workSheetSlide.attachWorksheet.attachMovie
(whatWorksheet + whichSheet, "wrksht",
this.getNextHighestDepth())
Any suggestions?
Dave
"Credit belongs to the man who is actually in the arena - T.Roosevelt