Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
m.stenbaek #1
problem with duplicateMovieClip
I can't get to duplcateMovieClip(), createEmptyMovieClip(), or
createTextField(), when using vars like this :
//just some vars for example
var i = 0;
var startX = 5;
var startY = 5;
var depth = this.tekst.getDepth()++;
var txtName = "txt"+i;
_root.createTextField(txtName, depth, startX, startY, 400, 20);
depth++;
//or
this.tekst.duplicateMovieClip(txtName, depth);
//won't work either !
//end
If i use trace() the vars read clear the names that they are given !
What am I doing wrong ??
m.stenbaek Guest
-
duplicateMovieClip problem
- I have a clip collection somewhere in my movie, adress stired in _global.Album - I have a clip elsewhere in the same movie where I want a copy of... -
duplicateMovieClip question
Hi everybody, Sorry if this is a basic question, but I'm having issues with the duplicateMovieClip command. Using MX 2004 professional. The... -
duplicateMovieClip {help please}
hello all, here is what i am tring to do. i want take the value of an array(value1) and apply that value to a movieClip(square) then duplicate the... -
Problem with stopDrag for DuplicateMovieClip
Hi. This is my first time posting. I will appreciate any help given. I am currently working on a flash application to help train users for an... -
DuplicateMovieClip
im trying to reference my duplicatemovieclips that i created and give them an "onpress" function. i am able to change the duplicates alpha and... -
kglad #2
Re: problem with duplicateMovieClip
change your var depth=this.tekst.getDepth()++ statement to:
depth = this.tekst.getDepth();
depth++;
kglad Guest
-
m.stenbaek #3
Re: problem with duplicateMovieClip
Thanks but the depth tracing OK s? i cant understand if that's tha problem. Besides i have tried this with out anny result - sorry
m.stenbaek Guest



Reply With Quote

