How to scroll MC

Hi guys..
I am trying to scroll a movieclip with some scroll bar....I have tried ULscrollBar but it ends up only works for text...
I also tried scrollBar but ends up it couldn't even use addChild to put it on the stage..(not sure why..)
Are there anyway to scroll MC by using only AS3 in flex environment...? Thanks.

Export ur movie clip for actionscript
Than use the scroll component found in CS5 flash and in the properties panel of the scroll component give the class name of the class name of the movieclip as the source for the scroll component.
Even in flex use scroller  componenet,add ur movie clip within the scroller.

Similar Messages

  • I turned some mode where i have to double tap everything and i cant figure out how to scroll, I turned some mode where i have to double tap everything and i cant figure out how to scroll

    I need  help I turned some mode on that makes me duoble tap whatever i want to open it say whatever it is i am touching and I cant figure out how to scroll to turn it off

    It is an accessibility setting and is covered in the manual:
    iPhone User Guide (For iOS 5.1 Software)

  • How to scroll text.

    I want to scroll text on a touch device. But i have no idea how to do this. I read up on adobe that a mouse event will work, but a touch point could also be used, then they lost me talking about item rendering.
    Can someone help me figure out how to scroll text on a touch enabled device?

    You don't want to use just a while loop because once you get into the loop, it'll stay in there until you break out. Nothing else will be allowed to process. You'll want to use a Thread with a while loop inside.
    I don't know if thise code will work. just wrote it off the top of my head. But something like that. You'll probably have to put extra white space in at the beginning of your scrollText so it starts on the far right side.
    class ScrollArea extends JTextField implements Runnable
    private Thread myThread;
    private int i;
         public ScrollArea()
              myThread = new Thread(this);
              int scrolDist = textToScroll.length() + this.getColumns();
              i = 0;
         public void Run()
              int scrolDist = textToScroll.length() + this.getColumns();
              while(true)
                    if(i == scrolDist)
                         i = 0;
                    int scrolDist = textToScroll.length() + this.getColumns();
                    this.setText(textToScroll.substring(i, scrolDist)
                    i++;
         }

  • How to scroll presenters notes during presentation?

    I have some slides with quite a lot of notes. How do I scroll the presenters notes during a presentation when I am using the Presenter Display? I can see the notes, but they are too long to show in the window. I can't figure out how to scroll the notes to read the rest of the notes.
    Many thanks,
    Darren

    Is it bad form to answer my own question?
    I finally found the answer in the User Guide:
    "To scroll presenter notes up or down, press the U or D key."

  • How to scroll the contents of the table without scrolling tab/colmn headers

    how to scroll the contents of the table without scrolling table and column headers in WebDynPro.
    I have set the table properties as
    footer visible = false;
    Visible row count = -1;
    and have put the table into scroll container with some specified height.
    I dont want to use the footer as I have used many tables in the container in same row and with same <b>Data node</b>.
    I have used many tables in same row and with same context node to differentiate it with two different colors for that specific columns.
    I am using <b>NW 04</b> and not NW04s.
    Please help me regarding this.

    To print the whole data of your table you have to do it yourself. The showPrintablePageBehavior only print what you actually see on the page. It does not traverse the data.
    The normal way to handle tis is to use a report generator (like itext, jasper report, fop ...).
    Timo

  • How to scroll i presenterwiev

    Im trying to figure out how to scroll my presenternotes (the are very long) i presenter view by Im unable to succed.

    Welcome to the forums, stefanbje!
    While in presenter view in Keynote 3, Shift-D will scroll down the notes a line at a time (d, without shift, will scroll down a full "page"). Likewise, Shift-U will scroll up a line (and u, without shift, will scroll up a full page).
    Under the Help menu in Keynote, there is a handy Keyboard Shortcuts guide that covers a wide variety of areas, including shortcuts usable during presentations.

  • How to scroll datagrid to highlight records?

    I have used
    styleFunction(data:Object,col:AdvancedDataGridColumn) to highlight
    one record in a datagrid. My question is how to scroll to this
    highlighted record using action script?
    Thanks

    For now you can enable scroll bars so that they are always visible, and thus able to grabbed using your pen. Check this under System Preferences > Personal > General > Show Scroll Bars > Always.
    The default setting is "Automatically based on Input Device" which makes me think that perhaps Wacom needs to do something in order for OS X Lion to recognize that if you are using a pen, the scrollbars will appear automatically. That's my hope at least!

  • In adobe muse when we have more thumbnail in slide show how can scroll them?

    In adobe muse when we have more thumbnail in slide show how can scroll them?

    Hi,
    Can you please be a little more specific regarding your issue?   perhaps a screenshot explaining what you are trying to do using muse would be really helpful .
    Regards,
    Rohit Nair

  • On iPhone 5s, I cannot see more than 11 messages.  I have NOT deleted older ones and need to view them.  How?  Scrolling in the list of 11 does not help.

    On iPhone 5s, when I click on "Messages" I can only view eleven when I scroll.  I need to view the older ones which I have NOT deleted.  How can I do that, please?

    You need the version of iPhoto that you wan tot use installed and then follow the IPLM directions
    http://www.fatcatsoftware.com/iplm/Help/downgrading%20a%20library%20to%20an%20ea rlier%20version%20of%20iphoto.html
    Downgrading a library to an earlier version of iPhoto
    If you have a library from a newer version of iPhoto that you simply want "downgrade" to an older version of iPhoto, the easiest way to do that is with the "Rebuild Library" command. You will want to be running iPhoto Library Manager on the machine that has the older version of iPhoto you want to convert the library to. This will create a new library and import the entire contents of the original library into the new one using the older version of iPhoto. As with any rebuild, there are some items that will not be included (most notably, hidden photos, books, calendars, and slideshows), but if you have none of these items or don't mind losing them in the downgrading process, then this is a decent option for converting a library to an older version.
    LN

  • How to scroll or move a map

    I want to figure out how to move a map if I got objexts placed all around in a huge area and got one guy moving would I need to use scroll and if so how do I use it on this code?
    package {
        import flash.display.Sprite;
        import flash.events.MouseEvent;
        import flash.events.Event;
        import flash.events.KeyboardEvent;
        import flash.ui.Keyboard;
        public class platform extends Sprite {
            protected var hero:Hero;
            protected var char:Char;
            protected var keys:Array;
            protected const MAX_KEY:int = 128;
            public function platform() {
                hero = new Hero();
                addChild(hero);
                hero.x = 0;
                hero.y = 0;
                var a:NestedCircles = new NestedCircles(true, 0xff0000);
                var b:NestedCircles = new NestedCircles(true, 0x0f0ff0);
                var c:NestedCircles = new NestedCircles(false, 0x000ff0);
                a.x = 100;
                b.x = 200;
                c.x = 300;
                a.y = b.y = c.y = 200;
                addChild(a); addChild(b); addChild(c);
                stage.addEventListener(KeyboardEvent.KEY_DOWN, onKey);
                stage.addEventListener(KeyboardEvent.KEY_UP, onKey);
                keys = new Array(MAX_KEY);
                char = new Char();
                addChild(char);
                char.x = stage.stageWidth/2;
                char.y = stage.stageHeight/2;
                addEventListener(Event.ENTER_FRAME, onEnterFrame);
                if(char.x >= stage.stageWidth){
                scroll()
            protected function onKey(event:KeyboardEvent):void {
                if (event.keyCode >= MAX_KEY) return;
                keys[event.keyCode] = (event.type == KeyboardEvent.KEY_DOWN);
            protected function onEnterFrame(event:Event):void {
                if (keys[Keyboard.UP]) char.y -= char.height;
                if (keys[Keyboard.DOWN]) char.y += char.height;
                if (keys[Keyboard.LEFT]) char.x -= char.width;
                if (keys[Keyboard.RIGHT]) char.x += char.width;
    import flash.display.*;
    import flash.events.MouseEvent;
    class NestedCircles extends Sprite {
        public var child:NestedCircles;
        protected var stroke:Shape;
        public function NestedCircles(useRoll:Boolean, color:uint = 0,
                                      size:Number = 60, isChild:Boolean = false) {
            graphics.beginFill(color, 0.25);
            graphics.drawCircle(0, 0, size);
            graphics.endFill();
            stroke = new Shape();
            addChild(stroke);
            stroke.graphics.lineStyle(5, 0xffff00);
            stroke.graphics.drawCircle(0, 0, size);
            stroke.visible = false;
            if (useRoll) {
                addEventListener(MouseEvent.ROLL_OVER, handler);
                addEventListener(MouseEvent.ROLL_OUT, handler);
            } else {
                addEventListener(MouseEvent.MOUSE_OVER, handler);
                addEventListener(MouseEvent.MOUSE_OUT, handler);   
            if (!isChild) {
                child = new NestedCircles(useRoll, color, size/2, true);
                addChild(child);
                child.y = -size;
        protected function handler(event:MouseEvent):void {
            trace(event.target.name, event.type);
            switch (event.type) {
                case MouseEvent.MOUSE_OUT:
                case MouseEvent.ROLL_OUT:
                    stroke.visible = false;
                    event.stopPropagation();
                    break;
                case MouseEvent.MOUSE_OVER:
                case MouseEvent.ROLL_OVER:
                    stroke.visible = true;
                    event.stopPropagation();
                    break;
    import flash.display.Shape;
    class Hero extends Shape {
        public function Hero() {
            graphics.beginFill(0x10c010);
            graphics.drawRect(0, 0, 500, 500);
            graphics.endFill();
    import flash.display.Shape;
    class Char extends Shape {
        public function Char() {
            graphics.beginFill(0x000000);
            graphics.drawRect(0, 0, 12, 30);
            graphics.endFill();

    Scrolling normally just involves incrementally adjusting the x or y property of an object via some control.  I doubt anyone is going to try to decipher your code to see where anything in the way of scrolling might fit in.

  • How to scroll down text on UITextField ?

    Hi guys.
    I am trying make multiline text edit field using UITextField.
    When writing a long text, it doesn't scroll down (doesn't move to down next line).
    Just appearing one line.
    Can you help me how to make multiline text editing field ?
    Thanks in advance.

    Is there some reason you're not using UITextView instead of UITextField? UITextView is a subclass of UIScrollView, and supports multi-line text entry as well as vertical and horizontal scrolling. UITextField is not designed to do what you want.
    \- Ray

  • Music-synced Text Scroller Design - How to scroll the text?

    Hallo, Flash-loving people,
    I'm a writer of stories and I want to make a Flash app that will scroll text whilst music plays. The music part is easy, but scrolling the text...
    I've tried simply importing ALL of the text, resizing, and scrolling that one giant object upwards, but when the screen was full of text it began to slow down. I need the speed uniform to sync it with the music in the background.
    I could have a 70,000,000,000 frame movie and move each element individually, avoiding the heavy load, but the amount of work on my end this would require would be so astronomical that it just wouldn't be worth it. Ideally I want something like a component that I can dump text into and have it deal with making the scroll speed uniform.
    It would also be a major plus point if it could be used/created by another program, so that someone without Adobe Flash could produce a similiar kind of movie simply by putting in their text and MP3 file and hitting a "Generate" button, but this is optional. This way I could share it with my fellow writers, but hey, if it's all mine all mine, that's not a bad thing for me!
    Does anyone have any idea how this can be done, or any hints as to where I can look?
    Many, many thanks in advance.
    - Pride

    In your music file, you can place cue points, markers, that can then be read by Flash. Here's an article on that: http://help.adobe.com/en_US/Soundbooth/2.0/WSA5A1DDFB-6BE2-4486-BE0C-A10CEEF119ADa.html
    To display the text you can use either a TextField object or a TextArea component. I would use a TextField myself. You can write the actual text in an external file and import it at runtime. Here's info on TextFields: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.ht ml?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6#includeExamplesSummary Here's a tutorial on importing text: http://www.republicofcode.com/tutorials/flash/as3externaltext/
    You will need to use the scrollV property of the textfield to scroll the text. You should be able to find an example of that. Then you use the cue points in the sound file tell the textfield to scroll a line at a time.
    If you use an external sound file and an external text file, you can plug in any external files and re-use the same code.

  • ME22N - How to scroll down the purchase order items

    Hi,
    I have to make a function with call transaction (ME22N) and when I use the SHDB transaction to build the script, I can´t find the scroll down command for the items list. I have to use because we will have many items to edit / exclude / finalize in a purchase order. How can I solve this problem?
    Thanks.

    Hi,
    It is not suggested to make a recording for a BDC in tx: ME22N, ( EnjoySAP transactions are not suitable for SHDB recording ) instead use ME22 and on the table control scrolling, you find an "ITEM" field where you enter the item which should be positioned in first line of the table control where you could double click the first line in table control to view the details.
    Also you could achieve the change of a PO by BAPI: BAPI_PO_CHANGE.
    Hope this helps.
    Best Regards, Murugesh

  • How to Scroll the UIScrollBar component to the top?

    I'm using the UIScrollBar with a dynamic text field. If
    content gets scroll by the user, and then the text fiel dis update
    with new text, the new text remains "pre-scrolled". So, obviously,
    I want to set the scroll position to 0 every time I update the
    content in that field. But how do you do this?
    Is this something I do to the text field or to the
    UIScrollBar component?
    What is the method?
    Could somebody please give me an example?
    Thanks in advance...

    Silly me, I think I walked past this one several times
    thinking I had tried it.
    // To scroll the UIScrollBar to the top
    info_txt.scrollV = 1;
    My problem was that I was using the parantheses to pass the
    value, like this:
    // This doesn't work
    info_txt.scrollV(1);

  • How to scroll panels using scrollpane?

    i am having two panels containing different images in a main panel.
    my problem is that due to big size only one panel is visible in run time so i want to add scrollbar to the main panel.
    i have used scrollpane for the main panel but i am getting confused that at which event i should put the code of repainting the visible area.
    can anybody tell me how to implement this.
    plz... help

    gaurav_mishra wrote:
    actually i am working in netbeans so i don't know where is the paint method of the panel.can anybody plz help me get rid of this problemApparently we were all mistaken by your description, it looked like you were writing a custom JPanel subclass, with a custom paintComponent() method that would draw the images...
    I don't know how you display images in a Panel with NetBeans, but presumably it re-uses some existing JComponent and it doesn't have to generate a paintComponent() method.
    At that step you should consider the very first reply: please post some code, the shortest running example that demonstrates your problem.
    If you're reluctant, try a simple scroll example: put a single JButton in a JPanel with a FlowLayout, using an image as the button's icon. Stuff this panel into a JScrollPane, itslef in a JFrame, run the app and resize the JFrame. Check whether the button displays appropriately. If it does, try to check what's different with your problematic case.
    I like NetBeans (or merely, NetBeans's GUI designer), but it's not the best way to learn Swing programming, which looks like what you're doing.

  • How to scroll to given position in a scrollpane?

    while using a jScrollpane how can i scroll down to a particular position?

    "What would you suggest instead of datatable? I just want to show info of my lists that's all."
    Show in a control such as the WinForms's DataGridView or something similar?
    If you do not known the number and type of columns in advance then yes, using DataTable is a convenient way to do that as binding the grid to the list of lists won't work. Well, if the number of rows you can consider populating the grid control directly.
    If you do know the number and type of columns it's in general preferable to create a class to hold the information that corresponds to a row and then use a list of objects of that class. That list can easily be displayed in a grid control.

Maybe you are looking for

  • How to create a node with attributes at runtime in webdynpro for ABAP?

    Hi Experts,          How to create a node with attributes at runtime in webdynpro for ABAP? What classes or interfaces I should use? Please provide some sample code. I have checked IF_WD_CONTEXT_NODE_INFO and there is ADD_NEW_CHILD_NODE method. But t

  • After using SAVE_TEXT in VA01 getting problem

    Hi Friends , As per below link i have used SAVE_TEXT with vbeln "XXXXXXXXXX" 'SAVE_TEXT' or 'CREATE_TEXT' unable to use But text is copied default to other orders also in VA01 .. I tried using CALL FUNCTION 'FREE_TEXT_MEMORY' but it did not worked .

  • I want to Pick the Single file from The source Directory

    Hi,    My Scenario is File to RFC .. I'm getting the files in the source Directory.. File names  are  SENDER_(TIMESTAP).XML .. but the problem is... When ever  Files  are available in the Source Directory  Immediately  XI was picking  all the files a

  • ABAP Proxy - AAE Synchronous message problem.

    Hi, We are using ABAP Proxy -> PI 7.11-> JDBC stored procedure. We are using AAE. The problem we are facing is identical to the one mentioned in the thread below: [Re: <SAP:Code area="PARSING">GENERAL</SAP:Code> - Error;] That is the first call is ok

  • Class or interface could not be loaded?

    I am very new to coding in general, ini fact this is my fisrt crack at it, and right now I'm just going off a tutorial, but for whatever reason i'm having an issue that the class/interface not being loaded. My code right now is: class ship extends Mo