i’m using the actionscript:
[FONT=Courier New][LEFT][COLOR=#0000FF]this[/COLOR].[COLOR=#0000FF]createEmptyMovieClip[/COLOR][COLOR=#000000]([/COLOR][COLOR=#FF0000]“pixHolder”[/COLOR], [COLOR=#000080]2[/COLOR][COLOR=#000000])[/COLOR];
[COLOR=#0000FF]with[/COLOR]COLOR=#000000[/COLOR][COLOR=#000000]{[/COLOR]
[COLOR=#0000FF]_x[/COLOR]=[COLOR=#000080]10[/COLOR] [COLOR=#808080]//or whatever your coordinates are[/COLOR]
[COLOR=#0000FF]_y[/COLOR]=[COLOR=#000080]10[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#808080]//write a function that loads a picture into the pixHolder[/COLOR]
[COLOR=#000000]function[/COLOR] loadPixCOLOR=#000000[/COLOR][COLOR=#000000]{[/COLOR]
pixHolder.[COLOR=#0000FF]loadMovie[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR]
button1.[COLOR=#0000FF]onRollOver[/COLOR]=[COLOR=#000000]function[/COLOR]COLOR=#000000[/COLOR][COLOR=#000000]{[/COLOR]
[COLOR=#808080]//call the function, pass the specific picture name[/COLOR]
loadPixCOLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR]
button2.[COLOR=#0000FF]onRollOver[/COLOR]=[COLOR=#000000]function[/COLOR]COLOR=#000000[/COLOR][COLOR=#000000]{[/COLOR]
loadPixCOLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR]
[/LEFT]
[/FONT]
how do i send the dynamically created pixHolder to display in the back of the project, not the front? using this code covers my buttons and creative. is there a way in actionscript to have the jpg’s that pixHolder is displaying to display as the back most object?
also…
is there a variant of pixHolder that will display movie clip symbols instead of static jpgs?
thanks kirupians,
jh.