ActionScript 3.0 :: Loading Different Movie Clips To ScrollPane?

May 6, 2010

The site is structured with all content inside entireSite, with two further movie clips nested myMenu, which contains all the button movieclips (rollovers etc) and AS to navigate the site and another entitled allPages which contains all the content.

on entrance to the site i want a grid of images appears which is scrollable using scroll pane. I have managed to achieve this just on a standalone .fla following this tutorial with the code

[URL]

scrollPane.source = myContent;
scrollPane.setSize(556, 300);

with the code sitting on the main timeline

now i have structired my site properly im having difficulty getting it to load correctly. I have the correct instance names for scrollpane and the linkage for the movie clip i want to load. im just wondering that now my scrollpane is nested in entireSite then allPages that the code will not recognise it?

How do i make it point to it? Also, as i move between different pages of the site more content will require a scrollPane, can i just use different instance names to do this?

Or should i go about removing the movieclip in scrollpane and adding a new one?

View 0 Replies


Similar Posts:


ActionScript 1/2 :: Addressing Movie Clips Inside A Movie Clip That Has Been Loaded Into A ScrollPane

Jul 6, 2009

I'm trying to use the scroll pane component for the first time, and I've spent most of the day getting nowhere. Based on my experience with other components and with loading content into movie clips, I expected that I would point my scroll pane to its content and be off and running, but that hasn't happened.

[Code]...

View 4 Replies

Actionscript 3 :: Multiple Movie Clips In ScrollPane?

Jan 20, 2011

I am loading multiple movie clips into a scrollpaneContainer mc and setting the source of my scrollpane to be the scrollpaneContainer.

Problem is the height of the scrollpaneContainer is larger than 2880 pixels (mc height limit).

I can split the movieclips into two scrollpaneContainer clips but I am unsure how to set the source of the scrollpane to be two different movie clips at the same time.

View 1 Replies

ActionScript 2.0 :: Loading External Movie Clip In ScrollPane

Nov 19, 2010

i am trying to import an external movie clip in a scrollpane in my flash movie my external movie is an animated sequence which expands on click of a button much like a data tree but here its just images so now i want that when someone clicks on the expand button the scroll should appear but i ran into this problem that the swf load perfect but no matter what i do the scroll either doesn't appears or even if its there it won't scroll through the complete swf rather just 5px in vertical i defined a few basic properties in AS and some through the property inspector Check the attachment below if u want to

View 1 Replies

ActionScript 1/2 :: Loading Multiple Movie Clips Inside Another Movie Clip?

Mar 11, 2010

I was wondering about the flexability of loading movies into a movie clip. Currently, I am well able to load one movie into a movie "loader" clip, but thought maybe there is a way to load additional movie clips into that same "loader" clip, as i am starting to accumulate several different graphics that i need to have be inside movie clips so that i can make them change colors on the same frame when needed.
 
i shot from the hip and tried this code, but didnt have any luck:
 
mc_LCD_loader.attachMovie("hilight", "g", 1), ("header", "X", 1); mc_LCD_loader.g._x = 0; mc_LCD_loader.g._y = 1000;
mc_LCD_loader.X._x = 0; mc_LCD_loader.X._y = 1000;

[Code]....

View 9 Replies

Loading Movie Clips From A Button?

Feb 28, 2010

I have three movie clips, called clip1, clip2, and clip3 that are in my library but not on the stage.

On the stage, I have a movie clip of a curtain that is a button. How can I make it so that clicking my button (which makes the curtain rise) will load and play one of the movie clips in the library?

View 1 Replies

ActionScript 3.0 :: Loading Movie Clips One After Another?

Feb 22, 2009

I have 16 movie clips on separeted layer on frame one on the timeline and I want to start one after another with a delay of one second between each of them. I feel like it should be easy, but I didn't find the solution so far. Anybody with a real life exemple, a tutorial or what method to use?

View 3 Replies

ActionScript 2.0 :: Loading Movie Clips?

Sep 30, 2003

have a movie and want to load external swf files into the middle section. my navigation allows users to access from 10 buttons. i can load the swfs either thru reateEmptyMovieClip, or loadmovieNum. but i can't seem to control the levels. that is previous movies can be seen underneath the new loaded movie... i need to clear previous movie clip before loading the next, i think??here is createEmptyMovieClip code.

this.createEmptyMovieClip("generic_mc",2);
generic_mc.x=0;
generic_mc.y=62;

[code].....

View 6 Replies

ActionScript 3.0 :: Loading And Unloading Movie Clips?

Mar 12, 2010

SO what I have here is a simple menu with 5 buttons. I have event listeners attatched to each button that loads an external swf each time each button is clicked. Im trying to wrap my head around a solution to unloading the movie clips. as it is each swf is just getting loaded on top of the other one when the button is clicked.

a sample of a button code is:
var hList = hardwareDisplay;hardware_mc.addEventListener(MouseEvent.CLICK, hListDisplay);function hListDisplay(event:MouseEvent):void{  hList = new

[code]....

View 5 Replies

ActionScript 2.0 :: Loading Data From Xml Into 3 Different Movie Clips?

Jan 28, 2009

I am trying to load data into 3 different movie clips. (content_mc, content2_mc and content3_mc). Each movieclip will get one image and two bits of text (picture, who and bios <== instance names)

Those 3 movieclips are inside of another movieclip, contentHold. That movieclip is setup to scroll vertically ( I was able to do that myself ).

SO my problem is I have that I can't figure out how to load the data into the 3 movieclips as I want to.

I have attached my .fla and .xml file from the project.

View 3 Replies

ActionScript 2.0 :: Loading Movie Clips From Library?

Jan 30, 2009

I'm new to AS but have some coding background (php, sql, vba) and some basic (non-AS) Flash skills.I want to create a bar chart a bit like this: http:[url].....Really would like some sample code if poss. This is my thinking:

1) Each section of the bar chart will be a movie clip, mc_2, mc_3 etc.

2) There will be an array with Qty, Type, Desc and Name of movie clip (e.g. mc_3).

3) There is a generic bar chart "block" movie clip in the library ("Block")

4) So I plan to loop through the array, attachMovie for each iteration, resize the Movie proportionate to Qty, and colour it by Type.

Problem is: (1) I don't know the right functions to use; (2) Are mc_2, mc_3 INSTANCES of my generic movieclip, "Block" ? (3) should the code sit on the timeline? (4) do i need an empty movie clip to attach the library item to?

Code:
Pseudo code:
n=length of array
for (var i:Number = 0; i < n; i++) {[code]....

The final thing would be a bit more complex with frames etc, but generating the movies would be a start.

View 2 Replies

ActionScript 3.0 :: Dynamically Loading Multiple Movie Clips

Aug 11, 2010

I am trying to perform the following:
1. Create a series of movie clips on the stage
2. Give each one a specific name (i.e. movieClip1_mc)
3. Load an image into each one
4. Add three unique listeners to them (MOUSE_OVER, MOUSE_OFF and CLICK)
Afterwards I want to create one single function that will handle all the above boxes depending on which box is clicked.

Obviously the 1st part is simple enough and I have no problem there. Without relying on the "multiple movie clip" parts, I can easily handle the next three - just can't get it to work when working with multiple dynamic movie clips. Where I get stuck will always be giving each one a name and then moving forward. One big issue I continuously face is creating one dynamic function that will handle based on which movie clip the user interacts with.

View 10 Replies

ActionScript 2.0 :: Loading Random Movie Clips From An Array?

May 2, 2011

My project has about 30 movie clips in the library. With an action that comes up every few seconds, I'd like to randomly load one of those 30 clips onto the stage and have it play until it's done.

BUT - once a movie clip is already out, I don't want it to reset or come out again. I'd like the next action to randomly call out one of the remaining 29 clips.

Once each movie clip is done, I need some action to make it go back to the "available" list so that it can be called out again.

I'm guessing that I need to use attachMovie to call out the movie clips, and an array (maybe two) to make sure that I only get one instance of each movie clip. But after lots of searching and various dead ends, I'm just not finding exactly what is needed.

View 2 Replies

ActionScript 3.0 :: Loading Images Into Movie Clips Onto Stage

Jun 2, 2011

I'm having an issue with placing images loaded from an XML file in placeholders within movie clip instances on the stage. It'll load an image onto stage, but only one image. I'm kinda at a loss at the moment.

Code:
import com.greensock.TweenLite;
import com.greensock.easing.Back;
import com.greensock.loading.*;
import com.greensock.loading.display.*;
import com.greensock.events.LoaderEvent;
[Code] .....

View 6 Replies

Professional :: Loading External Movie Clips Randomly

Mar 2, 2010

I am currently trying to load a movie clip in the main SWF. Got that done.Then call and replace the first movie clip with another, got that done too.This is for a menu i am making, I am not too great in action script. I am working in AS2.Problem is after I call the second external movie clip into the main SWF, it all stops working.Is there a way I set this up that no matter what it keeps loading and unloading the external movie clips? This is what I have so far.[code]This starts with the "king_menu.swf" already loaded, i have it unload it and load "dqueen_menu.swf" to the call point named "load_king".I am guessing I need to have a universal call point for all my external movies to load and work in a random chain.

View 10 Replies

Flash :: After Loading Scene 1, All Movie Clips Are Null?

Sep 21, 2011

In Scene 1, after pressing a button user goes to Scene 2. After coming back from that to Scene 1, All movie clips in other layers are null.

This is my code that goes to Scene 1:

MovieClip(this.root).gotoAndStop(1, "Scene 1");WHY?

View 2 Replies

Flash :: Loading Different Swf With Movie Clips With Same Class Linkage?

Oct 21, 2011

I have a problem with loading SWF and access to their elements by class linkage in Adobe AIR 2.6 for Android.

Problem: I have two different .swf files:

file1.swf (in which MovieClip with name1 has class linkage 'mainScreen')
file2.swf (in which MovieClip with name2 has class linkage 'mainScreen')

They have some action script code, which I need to import in my application domain. Files downloading great. After downloading they are in differen app domains But when I'm getting elements by class linkage and add them to stage - only element which was loaded second is shown. Looks like second movieclip with same class linkage replaces the first one.

For this I'm using such approach:

how can I load two different elements SWF files, which have elements with same class linkage, or explain why I can not do this? When elements have different class linkages - all OK. But!!! It is working for web, but for air it don't want to work.

package
{
import flash.display.*;

[Code]....

View 1 Replies

ActionScript 3.0 :: Loading Imgs Into Movie Clips On The Stage?

Dec 16, 2009

I have a banner that I've created and i'm trying to dynamically load in an image so that I can display it on the banner. However I'm having a very difficult time with it. I've found tutorials explaining how to load an image into flash and show it on the display but they are all creating an instance where as I have instances of the MC already set in tweens and on the stage.I tried attempting code such as:

Code:
this.Img_holder_mc.Load("myImage.jpg");
but this isn't working.

[code]........

View 1 Replies

ActionScript 3.0 :: Preloader For Loading Movie Clips With Buttons?

Feb 3, 2011

I've created a movie clip that contains several buttons that each load a separate movie clip when they are clicked. I would like to create a pre-loader for each of the separate movie clips because they will be rather large files when I finish adding content to them.

Below is the code I used to get the buttons load the movie clips. How to incorporate a pre-loader into this code

Code:
//##### My Code
var myLoader:Loader = new Loader();
addChild(myLoader);//first, the loaded clip is added to the stage wl
myLoader.x = 140;//then it is positioned

[Code].....

View 1 Replies

ActionScript 2.0 :: [FMX] Preloader Loading External Movie Clips?

Jan 29, 2003

I'm writing a preloader to load external movie clips but my function doesn't seem to be working properly. I call the function and it says that 100% is loaded and makes the movie clip thats showing the out put invisible...thats what supposed to happen except for the going to 100% straight away. the percent is being calculated properly but i think that the function is being executed before the new movie even starts to load...i've tried movieClip.onData but it doesn't seem to work..

Well heres the code

Code:
function loader() {
percentClip._visible = true;
targetClip._visible = false;
percent = 0;

[code]....

View 1 Replies

ActionScript 2.0 :: FMX - Direction-loading Movie Clips W/mp3s End To End?

Feb 20, 2003

Does anyone have a tutorial (or steps to reproduce) showing a beginner the best method for loading several swfs end to end, so they play as one movie using ActionScript? What I need is: to have the first movie play and immediately when it ends, for it to stop and then have the second movie play, but each movie has a different mp3 sound and I can't seem to get both movie's and their respective mp3s to play as one long movie.

1) I've created 2 fairly robust Flas; horizon1.fla and horizon2.fla

2) I've made each fla into a seperate movie clip; horizon1_mc and horizon2_mc.(the last frame in horizon1_mc uses the same pic as the first frame in horizon2_mc -so that they will appear to play seamlessly as one long movie)

3) horizon1_mc needs to play using sun.mp3.

4) horizon2_mc then needs to play using sunburst.mp3

fyi: I've got the "FlashaMX Designer's ActionScript Reference" book but all I've found is how to load content (chap11) using static movie clips using "loadmovie" and I'm not sure how this applies to actual animated clips.

View 3 Replies

ActionScript 2.0 :: Loading Movie Clips Instead Of External Movies?

Nov 25, 2006

i'm trying to create a simple site with three buttons and three different screens rotating (so if one button is clicked the current screen fades out, a new one fades in, then when a second button is clicked the same thing happens and so on).i was using the tutorial found [url]my problem is that i need everything pre-loaded from the begining. i was trying to create a preloader that loads all external files, but it would be a lot easier to have the different screens as movie clips in one file. the problem is, i'm not sure how i should modify the code to place a movie clip in my "container", rather then load an external file...

[code]...

View 3 Replies

ActionScript 2.0 :: Depth To The Dynamic Loading Movie Clips

Nov 30, 2006

In my stage im loading many dynamic movieClips.at the same tim i have the static movieClips too..while i'm loading these dynamic movieClips, thats overlapping the static movieclips on the screen.. actually i need the static movieclips at the topmost position. is there any option to do like?

View 2 Replies

ActionScript 2.0 :: Loading Images To Duplicated Movie Clips?

Jul 26, 2007

I have a problem in loading pictures to duplicated movie clips. I have a dynamic sliding menu and I wanna load images to submenus. However I havent succeeded yet.

Here is the code:

setProperty("Rub", _visible, false);
setProperty("subrub", _visible, 0);
bas._visible=false

[Code].....

View 3 Replies

ActionScript 3.0 :: Loading Random Movie Clips From The Library?

Mar 19, 2009

(****another title for this could be "how to create a MovieClip variable")
basically, im trying to load random movie clips from the library when i run the function "TRO1".. the logic behind what im trying to do is to to first create an array containing the class names (name given in the "linkage" option) of the movie clips in the library... then randomly select an item from that array... then bring it to the stage.. Here is the code I typed:

var characterArray:Array = ["truck", "car", "boat", "train", "helicopter"]
function TRO1(event:Event):void
{

[Code].....

When i try to run the function, i get the error message "Instantiation attempted on a non-constructor..."

I think the problem is that flash doesn't understand what "randomCharacter" is in the line "var character:MovieClip = new randomCharacter();"... I assume there is a proper way of writing the "randomCharacter" variable so that i can use it in the succeeding line...

View 1 Replies

IDE :: Loading And Playing Internal Movie Clips Randomly?

Sep 18, 2003

how to get movie clips to play randomly? Here's what I want to do:

I have four movie clips already created and I want to make it so that when someone visits the page and accesses it for the first time, one of the four is randomly selected and plays (I also want to be able to tell it what frame of the movie clip to go to)!

View 1 Replies

ActionScript 2.0 :: [FMX] Loading An .swf Into Multiple Empty Movie Clips

Feb 29, 2004

I'm still having some problems with loading an .swf into multiple empty movie clips. The AS that I'm using loads all the clips into empty movie clips at different depths on _level0. When I run the main .swf everything starts fine but when I rollover or rollout of any of the loaded clips it only effects the first MC loaded.

View 6 Replies

ActionScript 2.0 :: MX 2004 - Randomly Loading Movie Clips?

Jul 19, 2004

I need to make something that mimicks The Dancer over at[URL]I've created all the movie clips but I don't know where to start with the loading and unloading of the dancing bits The buttons at the bottom scroll through movie clips with different movement. So the "arms" button would load arms01, then when it's clicked again, it would load arms02, clicked again it would load arms03, and then repeat when it reached the end.

View 2 Replies

ActionScript 2.0 :: Loading JPG Images Into Movie Clips, Then Drawing A Border Around Them?

Aug 26, 2009

i am loading JPG images into movie clips, then drawing a border around them with this code:

Code:
var frameColor:Number = 0xffffff;
var lineThick:Number = 1;[code]..............

i am resizing the movieclips (and thus the contained pictures) down to 160 x 120, but those pixel values didn't work in my lineTo statements. i multiplied them by 3, using 480 and 360 and it works better. however, the behavior isn't consistent. i am attaching a picture so you can see how the border is too tall on some of the images.so, is there a better way to use pixel dimensions with lineTo? does the scaling factor between flash vector units and pixels change between movieclips depending on what content i load into the movie clip?

View 1 Replies

ActionScript 3.0 :: Loading Random Movie Clips With Tween Effect

Nov 30, 2009

code of loading random movie clips for example fac1_mc,fac2_mc,fac3_mc and etc, i want them to display random on my screen with tween transition i'm gna post the fla so you can see what i want to do, or the other way is to make more external swf's with picture animated and load them random with a 10sec between them. here is the link to my .fla with movieclips animated, and dunno how to make them to display random and animated

[Code]....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved