all groups > flash (macromedia) > september 2003 >
You're in the

flash (macromedia)

group:

Have you ever?


Have you ever? grover970
9/30/2003 11:09:39 PM
flash (macromedia): Has anyone ever inserted a movieClip into the scrollPane component, but when it previews it appears on top of the component and not within it?

Is there a reason for this?


Ben

Re: Have you ever? urami_
10/1/2003 12:10:18 PM


[quoted text, click to view]

nop, but remember people mention that before.
ANy FLA to view ? and , did you update your Authoring player ?




Regards

urami_*



<lsym>

There's no place like 127.0.0.1

Re: Have you ever? grover970
10/1/2003 3:01:49 PM
You can view the behavior that I am getting.
http://www.nealdesign.net/roberson


I am filling the scrollPanes with xml content. I don't think it is a font thing because I have done this before and have never had this problem.

Re: Have you ever? grover970
10/1/2003 3:03:58 PM
The Music Section is the only section active at this point.
From there, select "FOR COMPETITORS". You should ba able to find your way from there.

Re: Have you ever? grover970
10/1/2003 11:23:39 PM
This is the code that duplicates the buttons within the scrollPane from an XML file.

I have tried everything I can think of.

var yOffset_cdListItem = 17;

function buildCdList( aClass ) {
cdInfo.mListScroll.cdListMenu.duplicateMovieClip( "cdListMenu", cdInfo.mListScroll.cdListMenu.getDepth(), cdListMenu );
var cdListItem = cdInfo.mListScroll.cdListMenu.cdListItem;
for ( aMix = 0; aMix < aClass.mix.length; aMix++ ){
var mixData = aClass.mix[ aMix ];
var myCdMenu = cdListItem.duplicateMovieClip("cdListItem"+aMix, aMix, mixData );
myCdMenu.onRollOver = cdListItemRollOver;
myCdMenu.onRollOut = cdListItemRollOut;
myCdMenu.onPress = cdListItemPress;
cdListItem._y = cdListItem._y+yOffset_cdListItem;
}
cdListItem._y =0;
cdListItem._visible = false;
buildTrackList();
cdInfo.mListScroll.refreshPane();
}


AddThis Social Bookmark Button