Action Script 2 with scroll pane

The project I'm working on is only a Action Script 2.  Took a project IE updated to a site.

What I'm trying to do is have a scrolling pane that will contain the images and linkable links

So I have a:

Scroll one component the instance name is spane

I have a clip (with images done art card) and I have name myimage and the instance name is myimage

The two are on a single layer and frame 1 (note there are more elements on the page but on different layers)

I chose with instances (both) and action script I

Spane.source = myimage;

But it doesn't work at all, I've got is a box

Any help would be great.

The scroll pane will be working with action script 2?

Thank you

Damon

Is there an as2 scrollpane.

You must use the scrollpane not the scrollpane as3, as2 and you use code as2 (check under components help files).  for example, use contentPath, no source for your as2 scrollpane component.

Tags: Adobe Animate

Similar Questions

  • Action Script associated with code in a Flex Application.

    Hello

    right now I am adding any Action script code linked directly within my MXML file like this:

    < / mx:script > and the code looks like clumpsy.

    Is it possible to write some actionscript code sperately and include this file?

    Just include your script files:

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=usingas_4.html

    Dany

  • am a new user, I hope someone can help. am using action script 3 with flash cs4

    I'm trying to create a Clip that bounces on both sides of the stage!

    I only Manager to create a Clip that bounces from one side of the stage using the following syntax...

    var ballTween:Tween = new Tween (ball, "x", Bounce.easeOut, 520, 5, true);

    peuvent some please help!

    Thank you very much for your help!

  • Is it possible to group objects, which are placed in the project and then hide them with line a single action-script? THX in advance, Philip

    I work in CP 9 and I'm going to try the following: the user must be able to make ALL invisible or visible to highlight boxes by clicking on the corresponding button on the first page layout. Thus, for example, if the user does not want the highlight boxes appear, click on "Hide the boxes" and boxes are hidden for the rest of the project. I managed to get to this point for help... but it is still a lot of work for me to manually enter all the different names of these boxes in the action-script. So my question is: is it possible to group objects, which are placed in the project and then hide them with line a single action-script? THX in advance, Philip

    Actually... releasing the CpExtra HTML5 widget, it will be possible.

    It has a function called @syntax that allows you to perform an action (for example HIDE) automatically on any object throughout a project of Cp9 simply based on the name of the object.

    So for example, if you named all the boxes to highlight you want hidden this way to have the suffix _HideMe and you say CpExtra you want all of them hidden if a user variable is assigned to a certain value, then that is what will happen.

    That's the good news.  The bad news is that the widget is still in BETA final tests at the moment, so you may need to wait a bit before you can realize your idea.

  • action script 3, swapChildren with setChildIndex problem

    Hello to everyone! I do a fighting games of action script 3, and I'm having a problem with swapChildren and setChildIndex. the case is the last fighter who attacked gets in front of the other, so I use swapChildren(fighter_1,fighter_2).

    While the fight goes it works fine, but when the fight ends and I change the second intertwined scene veterans depths during the struggle always appear on the scene! sound like they have been duplicated! does anyone have a solution? Thanks in advance!

    to remove a displayobject and maybe it null, call the removeF:

    function removeF(dobj:DisplayObject,nullBool:Boolean):void {}

    {if (dobj.stage)}

    dobj.parent.removeChild (dobj);

    }

    {if(nullBool&&dobj)}

    dobj = null;

    }

    }

  • Transparency with action script

    I have a swf file and I want to give a transparent background on the stage. I understand that it is possible to give it transparency through the HTML publish setting using the ' transparent windowless "property.
    However, I wanted to know if there is an actionscript property to give the same effect of transparency to the scene. like the opactiy or something (sorry, that I may be wrong)

    The thing is I have an external preloader that loads the swf content and when it is loaded, the stadium loses its transparency.
    any help please with action script on transparency?

    As mentioned, that there is no bottom in a loaded SWF file. Unless you EXPLICITLY put a layer in your document with a background on the subject, it is transparent. You can load SWF 500 inside another, you will never get a background of any of them.

    The sole purpose of context is if the original HTML wrapper was not established transparent windowless.

    Your problem is elsewhere, trust us. Look for something, a background of drawing in one of your movies, because something is without doubt.

  • Need help with 3.0 in Flash CS5 action script?

    Hi I work with action script 3.0 in flash and our school teacher wants us to create a simple action that allows us to have a clip from the animated film and then we have a stop and a button "play", so when I click on stop the clip stops and when I click on play it moves again. Have tried several times, I get compiler errors. I have my buttons on one layer and my video clip on a separate layer. All I have is 2 buttons. One for the stop and the other to play.

    What I am doing wrong? Here is my code and my mistakes-

    start_btn.onRelease = function() {}


    Polygon.Play ();
    }
    stop_btn.onRelease = function() {}
    Polygon.Stop ();
    }

    Here are my mistakes and if he please be aware that our teacher said to use action script 3 only and no action script 2.

    Scene 1, 'Layer' buttons, image 1, line 1 1120:Access of start_btn of property not defined
    Scene 1, 'Layer' buttons, image 1, line 1 1120:Access of stop_btn of property not defined
    Scene 1, 'Layer' buttons, image 1, line 1 1120:Access of the polygon of property not defined
    Scene 1, 'Layer' buttons, image 1, line 1 1120:Access of the polygon of property not defined

    I think your teacher, or anyone else, gave you sense with ActionScript 2 programming. In AS2, what oyu have here would have worked very well. But in AS3, you use a rather different approach. Your buttons and their instance name, can remain the same. But now in AS3, you must add the following event listeners:

    yourButtonName.addEventListener (MouseEvent.CLICK, yourListenerFunction);

    In your case, you can do one of two things - A) assign a unique to each key listener function or B) assign the same listsner to the two functions:

    (A)

    start_btn.addEventListener (MouseEvent.CLICK, startPolygon);

    stop_btn.addEventListener (MouseEvent.CLICK, stopPolygon);

    function startPolygon(e:MouseEvent):void {}

    Polygon.Play ();

    }

    function stopPolygon(e:MouseEvent):void {}

    Polygon.Stop ();

    }

    (B)

    start_btn.addEventListener (MouseEvent.CLICK, controlPolygon);

    stop_btn.addEventListener (MouseEvent.CLICK, controlPolygon);

    function controlPolygon(e:MouseEvent):void {}

    If (e.target.name == "start_btn") {//Test for the name of the object that sent the CLICK event

    Polygon.Play ();

    } ElseIf (e.target.name == "stop_btn") {}

    Polygon.Stop ();

    }

    }

    When I use multiple buttons that do the same/almost similar things, I support approach B on A, as it keeps me just a simple to process function.

  • stop the sound with the action script?

    Hello

    Im a beginner with action script, and is there a way to stop a sound using actionscript?

    My sound is called "CRICKET.mp3", if it is necessary to know.

    You can still use:

    SoundMixer.stopAll ();

    to stop all sounds.  but, if you want to stop a particular sound, you must apply stop() to soundchannel your sound (created when the play() method is applied to your sound).

  • How to create the object rectangular box with a pure action script.

    How to create the object rectangular box with a pure action script?

    I think, it can be done through the clip library, but I'm not sure. Please, I want to take the suggestion to create a rectangular box as a script through

    Take a new file and write about the first image the code below, it works fine:

    var rect = new Shape();
    rect.graphics.beginFill (0xFF0000);
    rect.graphics.drawRect (0, 0, 100,50);
    rect.graphics.endFill ();

    var MC = new MovieClip();
    mc.addChild (rect);
    addChild (mc);

    If this doesn't solve your problem then paste the error you get

  • Interpolation with action script + / from a fixed location

    I know the basics of the interpolation with action script, but I have a picture located in the center of the stage at x = 50.  With a click, I, move this photo - 10 x from this position if it will end the interpolation at 40.  A different button, I would make the oppositie, + 10 x to its current position and if it was at 40 you come back at the beginning and if it was at the beginning, it would be at age 60.

    Thank you

    You can use:

    prevTX.onRelease = function () {}

    this.useHandCursor = false;

    nextTX._visible = true;
    prevTX.enabled = false;
    nextTX.enabled = false;

    addition of the var: number = 100 + thTX._x;
    var myTween1:Tween = new Tween (thTX, "_x", Strong.easeOut, thTX._x, addition, 3, true);
    myTween1.onMotionFinished = function() {}

    prevTX.useHandCursor = true;
    prevTX.enabled = true;
    nextTX.enabled = true;

    }

    }

  • masking a layer with an action script

    Hi all

    I did some research and it seems that you can't hide a layer using action script. I'll make a page with a lot of form controls to this topic, and when the user clicks on the button submit, I want that all the controls go away so that I can show something else.

    Really, I don't want to have to do control._visible = false for each item. I did see one person saying I could join these fields in form (movieclips) to a parent movieclip and then just do the parents visibl = false. What is the best way to hide a bunch of controls without explicitly defining each movieclip visibility? If so, how to do something the child of an element parent?

    Thank you

    Select the movieclip you placed in the properties panel and gives it an instance name.  Then, whenever you want to deal with something in it, use this instance name...

    yourInstanceName.cbox1.etc...

  • Help with Action script 2.0 Please

    Hello
    I'm new to actionscript and I really could with little help please. I'm loading external movie clips in two different containers depending on which button is clicked. Sometimes, there may be two conatiners attached to a buuton click, while the other buttons may only need to download a video clip. Here is the action script, I've been using:

    Button1.onPress = function () {}
    _root.createEmptyMovieClip ("container", 1);
    _root.createEmptyMovieClip ("Container1", 2);
    unloadMovie ("container1");
    loadMovie ("scene2.swf", "container");
    loadMovie ("scene5.swf", "Container1");

    Container._x = 50;
    Container._y = 110;
    container1._x = 170;
    container1._y = 5;
    }
    Button2.onPress = function () {}
    loadMovie ("scene6.swf", "container");
    unloadMovie ("container1");
    Container._x = 50;
    Container._y = 110;
    }

    It is responsible for the movies, but I have to press first button both work. Ideally I need to be able to call a movieclip at any time. Can someone tell me where I'm wrong?

    Try to move these lines outside the function of the button:

    _root.createEmptyMovieClip ("container", 1);
    _root.createEmptyMovieClip ("Container1", 2);

    You can use 'this' instead of '_root'... that will save any problem if you never move it to some other films. In addition, move the x / y assignments right under these lines since they relate to them directly.

  • Help with action scripts

    I have developed a website and I have problems with something that is probably very simple. I created several clips that expand and contract as you hover over them. I wanted to make a function/method when the user clicks, it leads to another scene from this movie. Here is the action script I use:

    {We (Release)}
    gotoAndPlay ("scene 9");
    }

    Unfortunately, this does not work. I thought that maybe the method one (release) would not work on these video clips based on the action script that I was already using to expand/collapse the boxes, but the following code works fine:

    {We (Release)}
    getURL ("home.html");
    }

    I'm puzzled. Can anyone offer a suggestion as to what I should do? Here is the web address of the page, I'm working, that's the movie I'm having a problem with. AndrewJW.com. the first picture on the left next to the photograph of Word links to another page in the site. The image of Pearl next to this ring is one who will not advance to the next scene in the film.

    Thanks for any input.

    Andrew

    Jeckyl >

    UH... Okay I admit my mistake in the 2nd script.
    _root.gotoAndPlay () takes a single argument,
    _root.gotoAndPlay ("scene 9", 1); doesn't work.
    Thanks for reminding me

    in fact this will make me confuse awhile,
    indicator of code in flash.

    for gotoAndPlay,.
    gotoAndPlay ( frame);
    gotoAndPlay ( scene, frame);

    for MovieClip.gotoAndPlay,.
    MovieClip.gotoAndPlay ( framework);

    Thus, gotoAndPlay can accept 2 arguments only when use without 'something dot' forwards.

    If Andrew script is attached to an instance of the button symbol, we use

    {We (Release)}
    gotoAndPlay ("scene 9", 1);
    }

    As Andrew attach the script to an instance of movieclip, it can use:

    {We (Release)}
    gotoAndPlay ("scene 9");
    }

    where the label to be the 1st image of 'Scene 9' even with the stage name.

    I'm right Jeckyl?

    I heard a lot of people said 'scene' + 'script '=' buggy', but some times that I get it 'works '. What is your opinion?

  • Fill the stage with Action Script

    Hello

    I'm new to flash and Action script. I would like to know how I could fill (instead of copy and paste) the scene with a small button e.g. 10 x 10 px. Let me explain what I'm trying to do here. It's a simple game that includes 4000 buttons, 50 lines of 80 buttons. Each button has States, not available, available and in the process. Visitors come to the page and start clicking, wins the one who has the most clicks.

    So instead of doing this with the painful copy and paste, to give the button a unique id, I was wondering if there is a way to do this with action script, generating 50 lines, 80 buttons per line, and each of them giving an id with j ++ or something.

    Thank you very much and sorry for my English.

    Of course, no problem actually. I would use two pieces of code. The first would be a
    class, which extends MovieClip and attached to your button element in the library.
    Then a little to the loop on the main timeline to attach buttons to the
    step and you're all set.

    For the class:

    class com.yourdomain.Sample extends MovieClip
    {
    var myID:Number;

    function Sample() {}

    public function set id(newID:Number):Void
    {
    myID = newID;
    this.onRelease = function() {}
    trace (this.) MyID);
    }
    }

    }

    Of course, you will need to change the com.yourdomain to your own class path.
    Then just put your clip in the library to export for ActionScript and set
    class: com.yourdomain.Sample

    In the main timeline then write a function createGrid bit as follows:

    function buildGrid (tot, sx, sy, pc, cs, rs) {}
    var startX = sx;
    var currX = startX;
    var startY = sy;
    perCol var = pc;
    var colSpace = cs;
    var rowSpace = rs;
    Use tot + 1 because we are not going to go 1-0 in the loop below
    var total = tot + 1;

    for (var i = 1; i)< total;="">
    Clip var = this.attachMovie ("btn", "btn" I, I + 10, {_x:currX,)
    _y:startY});
    clip.ID = i;
    currX += colSpace;
    If (I % perCol == 0) {}
    startY += rowSpace;
    currX = startX;
    }
    }
    }

    And call it:

    buildGrid (100, 20, 20, 10, 12, 12);

    This will make a grid of 100 occurrences of the element named "btn" (one with)
    your attached class), from 20,20 with 10 per line and 12 pixels
    between the centers... When you click on one any of them they will trace their
    appropriate index 1-100

    HTH

    --
    Dave-
    Developer leader
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.Adobe.com/communities/experts/

  • Flash beginner needs help with Movie Clips/Action script

    HI -.

    I'm having a problem with my video clips playing simultaneously and cannot, for the life of me, know what I did wrong. I'm new to flash so I can I have created something wrong but this is what I have so far:

    11 layers, total: 1 layer with 10 buttons, each button with the following actionscript code:


    on (release) {}
    gotoAndPlay (85);
    }


    When the number changes with regard to keyframes, the next film is about.

    I have 10 films, total, but they are only video clips, mainly photo slideshow with audio, does everything in the library.

    The problem occurs when I click on the second or third button. Not only the movie I selected starts to play, but all previous clips are as well, he has completely blurred all the sounds. I don't know what Miss me in action script, as my Action layer has a stop command to this topic at each keyframe where there is a new clip to play.

    I tried to add a stopAllSounds command, but I'm afraid that does nothing because it is not an "audio file" in itself playing in the timeline panel.

    I'm at the end of my rope and really need help to understand this one. My project is hanging in the balance on this point, I wrote everything correctly and it works beautifully.

    Help, please!

    Thank you
    Caroline

    Start your sounds in frame 2 and place stopAllSounds() on each keyframe where begins a movieclip.

Maybe you are looking for

  • Satellite 1800: boot failure - Invalid BOOT. INI file

    When I'm getting the following error message appears Invalid BOOT. INI fileBooting from C:\WINDOWS\NTDETECT failed I tried using the recovery CD, but it makes no difference Someone at - it ideas?

  • Is there a WiFi light?

    How do I know if my DEXT uses a connection wi - fi for Web access? It doesn't seem to be an indicator on the screen. The parameters of connection Wi - Fi says: my network is "Remembered, secured with WEP" and I press Connect. My phone always seems to

  • cannot start the computer

    Have a Dell 4600 and can not start the computer, white screen Dale may

  • Windows media center program guide?

    yesterday, I had to reinstall windows vista from the ground upward. I went to set up my tv and tv tuner/cable program guide in order to record and watch TV on my computer. Everything went through everything as before until I opened the guide to recor

  • keep proportions after import

    HelloSorry I am a newbie to making films and Premiere Elements.I'd be happy if someone can give me an idea.I make a film by first of 14 elements using png images.The images are not photos, but the lines and designs.I do these png images using windows