all i want to do is have a scroll pane into which all my .SWF files load when the relevent button is clicked on in the navigation bar. can someone explain how to for me or direct me to the tutorial as i cannot find it. ive searched the forums lots and nothing directly answers my question.
Even more boring as all you have to do is open Flash, go to Help, Actionscript Dictionnary, and read under F (all components are there) all you want to know about the scrollpane… !
Copy/Paste:
"myScrollPane.setScrollContent(target)
Parameters
target A text string specifying the symbol linkage ID of a movie clip in the library or an instance of a movie clip.
Returns
Nothing.
Description
Method; specifies a movie clip to display in the scroll pane. Calling this method overrides the Scroll Content parameter value set in authoring.
Example
The following example specifies the movie clip instance BetsyTacy as the target for display1.
read up on “createEmptyMovieclip”
_root.createEmptyMC(params…)
_root.emptyClip.loadMovie(“yourContent.swf”);
scrollpane.setScrollContent(_root.emptyClip);