Animated GIF dialog HTTP connection

Hello

I created a screen of dialogue GIF animated using pop-up screen and I have to show it when an application connects to the server using httpconnection. So the problem is when I create dialogue and display it on the screen the network connection is not happeneing animation only one thread is running.

For example

I have a class called AnimatedDialog that draws the gif image using a thread.

My Httpconnection is awritten in function connectToServer()

It is how I call it

AnimatedDialog.show)

Thread t = new Thread (new Runnable ({}

public void run() {}

connectToServer()

}});

t.Start ();

Any suggestion of implementation of such a screen. I can't update the lively dialog of HttpConnection. Once the httpconnection is completed, the dialog box, I closed.

Depends on what you do inside your AnimatedDialog.show ().  If you use UiApplication.getUiApplication () .pushModalScreen (...) in there, that's what you'll get - it will not go forward until the screen is out.

Why is it that you do not reverse the order of the actions?  For example:

Thread t = new Thread(new Runnable()
    public void run() {
        connectToServer();
        AnimatedDialog.hide(); // or pop it some other way
    }
});

t.start();

AnimatedDialog.show();

In this way, you start the thread and display the dialog box indicating that you are a background operation (already!)...

Tags: BlackBerry Developers

Similar Questions

  • How can animated GIFs, I do to make them work with Windows 7?

    I can't do the animated GIFs to work after that I have download on my computer.

    I tried to get a few new avatars and for some reason that I can't animated GIFs to work after that I have download it to my computer, they remain as an ordinary image. For example, if I tried to get ith animated GIFs

    .
    http://www.glitter-graphics.com/down...100&height=100

    So I followed the directions [with the right button on the image below and select "save under" only for personal purposes: Please do not send to other sites.] (see our TOS)]   and always get a still image. What I am doing wrong?

    What is going on with everything I tried to copy or download animated GIFs, never had this problem with Windows XP.
    Now I have windows 7.

    Help? anyone?

    Thank you

    Have a look here.

    Panel\All Control Panel Items\Default programs, "Associate a type of file or Protocol with a program", the command on my machine the default program for .gif is Internet Explorer.  Which appear to indicate a page full of IE with an animated .gif, maybe you need a third party program to do what you want?

    Go to IE tools/internet options/advanced/multimedia. Make sure that the option to play the animations is turned on. If no joy, make sure that your connections are associated with Internet Explorer - if you click on a .gif file in windows Explorer, IE should open to view it.  Some security software can disable the animation.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/default.aspx/KB/929135

    See what is here if you are looking for Avatars.
    http://www.Google.com.au/search?q=avatars+download&SourceID=IE7&RLS=com.Microsoft:-to the: IE-SearchBox & ie = & oe = & redir_esc = & ei = d8t6TOL4JIPJce2Z4PcF

  • ePub + animated gif

    Hello

    It is discouraged or forbidden to insert a gif image animated in an ePub file?

    Thanks in advance!

    [This is a question with a question mark at the end of the sentence!  ]

    Animated GIFs are supported, at least in iBooks.

    One of my favorite ePub to 2014 is NYC basic tips and etiquette, a recomposable EPUB with amazing animations, all of which are all animated GIFs

    https://iTunes.Apple.com/us/Book/NYC-basic-tips-and-etiquette/id838645454?Mt=11

    AM

  • Minimize the size of the animated gif file?

    This is the original animated gif file:
    http://img186.imageshack.us/img186/7232/bandierajuve.gif
    And that's what I created him: http://img186.imageshack.us/img186/5286/80916350.gif

    The size of the original is just 7 KB, but my new is 113KB
    I exported the stages of my new to the separate gif file, and they are just around 2 ~ 3 KB per gif file.

    So what I don't understand, is why I add just that all the steps in a new, but its size is so large?

    Setting:
    Animation

    hiru169 wrote:

    > I changed the configuration of my gif file that you said but its size is now
    > 110 KB. Do I need to create it in a completely new to it worked?

    N ° you just need too export it rather that save it. Here is 7.46 k
    After the export with the settings I suggested you use.

    http://www.playingwithfire.com/80916350.gif

    --
    Linda Rathgeber - Adobe Community Expert
    http://www.Adobe.com/communities/experts/members/8.html
    --------------------------------------------------------------

  • How to get the gif file hosted by using the Http connection?

    Hello

    I have an application that downloads animation gif from a server by using the http connection. Here is the code I use to download the image.

    try {
    
                httpConnection = (HttpConnection) Connector.open(url, Connector.READ_WRITE);            httpConnection.setRequestMethod(HttpConnection.GET);
    
                if (httpConnection.getResponseCode() == HttpConnection.HTTP_OK) {                DataInputStream dS = httpConnection.openDataInputStream();
    
                    byte[] data = new byte[dS.available()];                dS.read(data);
    
                    gifImage = (GIFEncodedImage) EncodedImage.createEncodedImage(data, 0,data.length);
    
                } else {                throw new Exception("ResponseCode:" + httpConnection.getResponseCode());            }        } catch (Exception e) {                        gifImage = null;            e.printStackTrace();        }
    

    the problem with this code is, when the gif file is 1175 bytes above, it does not load the gif.

    example:-If the gif on the server is 1500 bytes, this code retrieves only 1175 bytes.

    I think that the rest of the bytes are sent in a different package. But how to get them.

    can someone please provide a code for buffering the inputstream?

    any help is appreciated.

    Dieye

    Hmm, nobody seems to know how to do, it seems. Here's how I did it.

                httpConnection = (HttpConnection) Connector.open(url, Connector.READ_WRITE);
                httpConnection.setRequestMethod(HttpConnection.GET);
    
                int responseCode = httpConnection.getResponseCode();
                if (responseCode == HttpConnection.HTTP_OK) {
                    inputStream = httpConnection.openInputStream();
                    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
    
                    byte[] buffer = new byte[256];
                    int len = 0, imageSize = 0;
    
                    while (-1 != (len = inputStream.read(buffer))) {
                        byteArrayOutputStream.write(buffer);
                        imageSize += len;
                    }
    
                    byteArrayOutputStream.flush();
                    byte[] imageData = byteArrayOutputStream.toByteArray();
                    byteArrayOutputStream.close();
    
                    gifImage = (GIFEncodedImage) EncodedImage.createEncodedImage(imageData, 0, imageSize);
    
  • Progress until you get http connection data dialog box?

    Hello

    Can someone help me with the progress dialog box until I get the Http connection data?

    I tried using Status.show but how will disappear once I have given. Once I have the data I want to update the user interface. I think it should be the combination of Thread and UiApplication.getApplication.invokelater, but if someone can guide me in the right direction, then it will be a great help.

    Concerning

    Sunil

    Check http://supportforums.blackberry.com/t5/Java-Development/Sample-quot-Please-Wait-quot-screen-part-1/t...

  • Premiere Elements is usable on an animated gif file?

    I plan to buy Premiere Elements, but I need to know if we can use it to add effects to an animated gif file.

    For example, in Photoshop Elements, you can add some effects to a gif image, as what gives it some textures or filters.

    Can we do the same sort of thing in Premiere Elements and if so it is possible to an animated gif file?

    Perhaps a better way to ask this question is: can you import a gif file in Premiere Elements, and then manipulate?  Run filters, etc..

    Thanks for your help.

    If you load your GIF in first 10 items, change, then share in an AVI file, you can then import the AVI file in GIF Movie Gear by Gamani, who will then create an animated GIF. I learned about this utility from a Microsoft tutorial on creating icons for Windows XP.

    http://www.gamani.com/product_icon.htm

    If you use Firefox and redirected, try to use Internet Explorer instead.

    After the trial period is over, it is $29 for 4 licenses .95US.

    When you share an AVI file, you will want to choose the Microsoft AVI item in the list, and then click the Advanced button to open the dialog box where you should select a codec and enter the size of the image and the pace. The codec must be one who loves of GIF Movie Gear, so there may be some adequate error to get a good codec. I shared an avi after picking Xvid for the codec, including GIF Movie Gear imported.

  • Animated GIF causes popup to hang?

    Hello:

    We started to use animated GIFs strongly in popups Teststand for about a year and a half. As we used this feature, we have had reports more and more Teststand suspended after acknowledging the popups.

    The problem is very intermittent. But it is reproducible. See the attached files. Sequence is call a popup not modal teststand again and again that displays an animated image. The popup is set to timeout after a second (just for the convenience to reproduce the problem). The sequence always crashes in minutes. Behavior is the same in the editor of sequence or the user interface of the CVI. If the sequence changes so that no image is displayed by the popup, the sequence does not crash.

    We use Teststand 4.0.1f1. I would like to know how to solve this, because it is quite a major problem with us.

    Thank you

    Dave

    Dave-

    Wanted to just call with you on this issue. LabWindows/CVI 9.0.1 was released and its runtime engine resolves the deadlock problem that have seen you. So to avoid blocking on a system, you just install the new version of the RTE located in the: http://ftp.ni.com/support/softlib/labwindows/cvi/Run-Time%20Engines/9.0.1/NILWCVIRTE90.exe. You may need to restart your system after the installation.

  • animated GIF not showing do not adequately

    I have an animated gif image, and I used http://supportforums.blackberry.com/t5/Java-Development/Display-an-animated-GIF/ta-p/445014 this link to animate the noise towards the top of the screen and that did not work properly

    You can see the animation below

    public class UpdatePopScreen extends PopupScreen{
    
            public UpdatePopScreen(){
                 super(new VerticalFieldManager(), Screen.DEFAULT_CLOSE); 
    
                 GIFEncodedImage ourAnimation = (GIFEncodedImage) GIFEncodedImage.getEncodedImageResource("sunblackk.gif");
                AnimatedGIFField _ourAnimation = new AnimatedGIFField(ourAnimation, Field.FIELD_HCENTER);
    
                this.add(_ourAnimation);
               add(new LabelField("Loading..."));
    
        }         
    
        }
    

    and I have attached AnimatedGIFField.java

    I think something is wrong in your establishment or the way you use this code, because it works very well for me.  Sorry you'll have to do investigative work to identify the problem.

    I suspect there are two possibilities:

    (a) you have not configured your environment properly

    (b) you use something else keeps track of events

    I think that (b) is the most likely, but to test these two at the same time, you must proceed as follows:

    Create a new project and a new example application, then, in this application, test the screen.  Nothing else in this project - it should start just a screen, the screen should have a button, when you click the button the treatment should push the pop-up screen.

    I have included my code (which combines Animation and popup screen into one file - not recommended but useful source under test).  Use this code and the image as an attachment in your new project.

    Test it on your Simulator.

    Assuming that you can get this working, then we can investigate on what is actually wrong in your application.

    package mypackage;
    
    import net.rim.device.api.system.GIFEncodedImage;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.Screen;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.BitmapField;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.PopupScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    
    public class UpdatePopScreen extends PopupScreen {
        public UpdatePopScreen(){
    
             super(new VerticalFieldManager(), Screen.DEFAULT_CLOSE); 
    
             GIFEncodedImage ourAnimation = (GIFEncodedImage) GIFEncodedImage.getEncodedImageResource("animated.agif");
            AnimatedGIFField _ourAnimation = new AnimatedGIFField(ourAnimation, Field.FIELD_HCENTER);
    
            this.add(_ourAnimation);
            add(new LabelField("Loading..."));
    
        }
    }
    
    class AnimatedGIFField extends BitmapField
    {
        private GIFEncodedImage _image;     //The image to draw.
        private int _currentFrame;          //The current frame in the animation sequence.
        private AnimatorThread _animatorThread;
    
        public AnimatedGIFField(GIFEncodedImage image)
        {
            this(image, 0);
        }
    
        public AnimatedGIFField(GIFEncodedImage image, long style)
        {
            //Call super to setup the field with the specified style.
            //The image is passed in as well for the field to configure its required size.
            super(image.getBitmap(), style);
    
            //Store the image and it's dimensions.
            _image = image;
    
            //Start the animation thread.
            _animatorThread = new AnimatorThread(this);
            _animatorThread.start();
        }
    
        protected void paint(Graphics graphics)
        {
            //Call super.paint.  This will draw the first background frame and handle any required focus drawing.
            super.paint(graphics);
    
            //Don't redraw the background if this is the first frame.
            if (_currentFrame != 0)
            {
                //Draw the animation frame.
                graphics.drawImage(_image.getFrameLeft(_currentFrame), _image.getFrameTop(_currentFrame),  _image.getFrameWidth(_currentFrame)
                                    , _image.getFrameHeight(_currentFrame), _image, _currentFrame, 0, 0);
            }
        }
    
        //Stop the animation thread when the screen the field is on is
        //popped off of the display stack.
        protected void onUndisplay()
        {
            _animatorThread.stop();
            super.onUndisplay();
        }
    
        //A thread to handle the animation.
        private class AnimatorThread extends Thread
        {
            private AnimatedGIFField _theField;
            private boolean _keepGoing = true;
            private int _totalFrames;               //The total number of frames in the image.
            private int _loopCount;                 //The number of times the animation has looped (completed).
            private int _totalLoops;                //The number of times the animation should loop (set in the image).
    
            public AnimatorThread(AnimatedGIFField theField)
            {
                _theField = theField;
                _totalFrames = _image.getFrameCount();
                _totalLoops = _image.getIterations();
    
            }
    
            public synchronized void stop()
            {
                _keepGoing = false;
            }
    
            public void run()
            {
                while(_keepGoing)
                {
                    //Invalidate the field so that it is redrawn.
                    UiApplication.getUiApplication().invokeAndWait(new Runnable()
                    {
                        public void run()
                        {
                            _theField.invalidate();
                        }
                    });                
    
                   try
                    {
                        //Sleep for the current frame delay before the next frame is drawn.
                        sleep(_image.getFrameDelay(_currentFrame) * 10);
                    }
                    catch (InterruptedException iex)
                    {
    
                    } //Couldn't sleep.
    
                    //Increment the frame.
                    ++_currentFrame;      
    
                    if (_currentFrame == _totalFrames)
                    {
                        //Reset back to frame 0 if we have reached the end.
                        _currentFrame = 0;
    
                        ++_loopCount;
    
                        //Check if the animation should continue.
                        if (_loopCount == _totalLoops)
                        {
                            _keepGoing = false;
                        }
                    }
                }
            }
        }
    }
    
  • ESW-540-8 P, http connection and browsers

    Howdy,

    Portal: cisco-onplus

    VAR: 1913

    Client: 5651 (USS Nautilus SSN-571)

    Version: with On - 100K 9

    ESW540 - 8 p on a network with the default settings. The goal is to connect through proxy http OnPlus http (kubrick) devices management I / F and change the settings.

    By the compatibility of the devices for ESW540, I define http (port 80) as a method of connection and allow to "set the headers.

    Using a PC connected locally, I checked that I can establish http connection directly (without proxy OnPlus) using IE, firefox, and Safari browsers on multiple platforms (2 win 7 PCs (FF, IE, Safari), 1 iPhone4. () Safari).  In all cases, I'm able to establish the http connection to the ESW540 connection - 8 p and perform operations remotely on the device http user interface through the user interface of the browsers.

    However, when I try the same when connected remotely through OnPlus, I get different behaviors for success/failure in the browser I use.

    When I use Firefox or IE, as soon as I click on the 'Connect' button on the modal system, a browser window is launched as planned.

    For IE (IE7) on both Win7 computers, 10 seconds after the launch of the window, the device UI presents its login screen. I provide credentials for the connection. Soon after, a partial rendering of the page main 'status' for the device is presented on the user interface of the browser. I can see the CSS styles of painting, but I see no text, areno visible URL and the simulation planned device indicator is not visible. Clearly, the appliance http server enabled connection. Shortly after the connection information has been presented, a dialog box appears that States "disconnected from server...". "xlx...

    For firefox (FF 6.02) on the two WIn7PCs, I get the same behavior with one exception - the connection process does not have the point of view of the page for the device UI http authentication.

    Note, I am able to navigate, to connect to and manipulate all the pages of the user interface http to a cable modem TWC ODM built... using any platform and one of the three browsers.

    Also of note, I have configured the ESW540 - 8 p to the backup configuration file automatically and every night. This automatic access (using the credentials provided in the "References" of the modal device tab) works very well... even if she does not resemble his support in the list of devices.

    I suspect that it is a FF/IE browser config issues with specific pains of Kubrick (Java?). But I'm just guessing. Fortunately, I have Safari on all three devices, so this isn't a big deal. Ideallly, however, I prefer using FF - manage my browser of choice for all the other things-webby.

    Any help appreciated.

    See you soon,.

    Dave

    PS - I told you lately how 'killer' this "Cisco OnPlus" remote service is? It is beautiful thing you've built.

    Captain Howdy!

    The ESW540 was a little 'fun' with cross-launch. We expect a potential MR later this fall that may be able to answer some of these questions. In the meantime, I'll get the documentation updated to reflect the following details on ESW540 support.

    1. the port 80 and "Headers of difficulty" are correct configuration items to set for cross-launch.

    2. the Safari browser works fine, but you have to ignore the pop-up "lost connection". Everything works perfectly.

    3 Firefox has a particular problem. When you connect first with firefox, you'll get an error. It is different with different versions of firefox. If you copy the URL and open a new window, and then paste the URL into the new window, things will work (again, with the message lost connection to ignore).

    4 IE tends to work perfectly, without any problem. I have only tested with IE8. There could be a problem with IE7.

    These problems come from the fact that OnPlus was not there when the ESW has been developed and switches don't usually do the test to be able to withstand to be connected through a firewall. New SMB devices are tested with OnPlus in order to avoid this type of problem in the future.

    Specifically, there is a behavior of Web Management page in the ESW trys to be compatible with all web browsers and it breaks down when you launch into another page, or by an indirect method.

    Enjoy,

    Robert

    PS I'm glad you like it. Your praise seems strangely familiar though ;-)

  • Http connection does not.

    Hello world

    In my application I use connection Http get method it works very well in a simulator, but not in the device...

    And also I tried this separate connection as a thread but no use... its does not work in the unit.

    Any idea? I paste my code below please help me...

    Thank you

    PAPI M

    String Url = "http:/mysitepath/filename.php?cmd=test";
       
    try {}
    HttpConnection conn = null;
    InputStream is = null;
    Doc document;
    Try
    {
    Conn = (HttpConnection) Connector.open (Url);
    conn.setRequestProperty ("Content-Type", "text/xml");
    conn.setRequestMethod (HttpConnection.GET);
                      
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance ();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder ();
    docBuilder.isValidating ();
    doc = docBuilder.parse (conn.openInputStream ());
    doc.getDocumentElement () .normalize ();
    Dialog.Alert ("Connected");
    }
    catch (Exception e) {}
    Dialog.Alert ("not connected");
    Dialog.Alert (try ());
    }
    {Finally
    If (is! = null)
    try {is.close (;})
    catch (IOException ignored) {}
    If (conn! = null)
    Try {conn.close () ;}
    catch (IOException ignored) {}
    }
    Conn.Close ();
                   
    } catch (Exception e) {}
    Dialog.Alert (e.getMessage ());
    e.printStackTrace ();
    }

    Ok thank you.. I will check...

  • HTTP connection problem. What is going on?

    I am trying to write a simple program to test the validity of the URL via a http connection.

    For the good URL, the program works very well.

    Bad URL however found two ways:

    1: no answer at all (program runs as if nothing happened, waiting for user input.) The text in the EditField is the same incorrect url intentionally being tested)

    2: IllegalArgumentException in RIMConnector.open (int, int, String, boolean, FirewallContext) line: 76.

    What is going on?

    Here is the code:

    import java.io.IOException;
    import javax.microedition.io.Connector;
    import javax.microedition.io.HttpConnection;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.*;
    import net.rim.device.api.ui.UiApplication;
    
    final class UrlCheck extends UiApplication {
        private EditField urlField;
        public static void main(String[] args) {
            UrlCheck theApp = new UrlCheck();
            theApp.enterEventDispatcher();
        }
    
        public UrlCheck() {
            MainScreen theScreen = new MainScreen();
            LabelField title = new LabelField("URL Check");
            theScreen.setTitle(title);
    
            urlField = new EditField("URL: ", "", Integer.MAX_VALUE, BasicEditField.FILTER_DEFAULT);
            theScreen.add(urlField);
    
            FieldChangeListener listenerCancel = new FieldChangeListener() {
                public void fieldChanged(Field field, int context) {
                    String URL = urlField.getText();
                    HttpConnection conn = null;
                    int response = 0;
                    try {
                        conn = (HttpConnection)Connector.open(URL);
                        conn.setRequestMethod(HttpConnection.GET);
                        response = conn.getResponseCode();
                        if (response == 200){
                            Dialog.inform("URL OK");
                            return;
                        }
                        if(response == 401){
                            Dialog.inform("URL Requires Authorization");
                        }
                    } catch (IOException e) {
                        e.printStackTrace();
                        Dialog.inform("Bad URL");
                    }
                }
            };
            ButtonField checkUrl = new ButtonField("Check");
            checkUrl.setChangeListener(listenerCancel);
            theScreen.add(checkUrl);
            pushScreen(theScreen);
        }
    }
    

    Okay, that was stupid.

    I caught the IllegalArgumentException as well and it fixed the problem.

  • Animated gif file won't load my local server

    I am creating a web page with html and load it my browser a lot to see what effect I have because I try to write lines of code. I have an American flag on the page and works very well every time I load the page. But when I turned on my local server to my computer laptop 64 bit of windows 7 it will not load animated gif. Why is this? What should I do to correct this?

    Hi Ken,

    The Microsoft Answers community focuses on the context of use. Please reach out to the professional community of COMPUTING in the below link MSDN forum.

    http://social.msdn.Microsoft.com/forums/en-us/categories

  • [Flash Pro] Motion tween is added an animated GIF picture

    * FIRST - I couldn't find one

    Hi, I'm working on a school project and we have recently I do an animation before Monday.

    So my problem is that I have a GIF of a man walking (which already has images by default to make the man walk) and I can not add a motion tween.

    So we learned essentially to take a car for example. We import a photo of a car (non - gif; no pre animated movement) and select it. make a symbol (video clip), then click on frame 30 and "Create motion tween" as we moved the image to the end; What makes a path automatically.

    But here, I can't do that because when I import the GIF man walking, he already has lots of raster data built in front to make the moving man and I cannot understand how to really add a motion tween to make man to move (of course with its PRE-BUILT animation [gif makes the arms and legs move]) and make him cross a road I built. So basically I want the man to move from one end to the other using a motion tween (or if there are other ways to do?) and alongside with its GIF data that moves its arms and legs.

    Small SS of my calendar:

    http://prntscr.com/b2qqwa

    as you can see here; the second element/first layer called "anyone walk - 1" is a GIF image and when I load it, it loads its pre movements animated and I can't create a Tween to make humans image cross one end to the other with her has pre-built ones again.

    Long, but I tried to make the Guide and all other acts and I tried Googling my head, spent 4 hours and found NOTHING. ABSOLUTELY NOTHING. And our teacher didn't us really learn this type of concept and neither do I class before it is due, so you are my only hope.

    Thank you.

    See if you can follow these steps:

    Right-click on the name of the layer to the market-1 person.

    Select the copy layer.

    Go to the library and click right in and empty the part of the library window and select new symbol. Will it be a movieclip.

    Now, you will be inside this new movieclip. Right click in the layer 1 name and select the layer of dough.

    You now have a moveiclip of your person walking. Go back to the top level of the scene and make a new layer.

    Drag the new movieclip on the stage.

    You should now be able to add a motion tween to this new layer. So who has worked, you can delete your original person market-1 layer.

  • Animated GIF how to animate already?

    I want to add a gif animated (like http://i.imgur.com/0ySdU.gif) loop to a scene and animate it (the size of the object should change).

    How can I do this?

    Any help is appreciated! See you soon!

    This particular animated gif appears to be corrupt. But normally you would simply import animated gif, and it should become a movieclip. If it is not, as was the case with this gif, you should always get the frames of the animation. You can then arrange them in the timeline to a new movieclip. To make it grow and shrink you would copy some of the executives at the end of the sequence, and then select the frames, right-click and choose Revrse images.

    If there are 5 images, you would end up with this in your timeline:

    12345432

    Which loop to well, and you can place the movieclip on the stage, to resize the entire animation.

Maybe you are looking for

  • I want to go back to version 20. How. I hate the stuff of yahoo. Mac

    I am Mac 10.6.8 and want just my old browser back which was not related to yahoo. Yahoo has encouraged me to get 21 but I don't want to. How can I get 20 unrelated to yahoo in return.

  • Audio Fadin incoming and outgoing, but the video quality remains high.

    Hello. I am regularly skyping someone, but the incoming audio signal began fade in and out and sometimes mute altogether. The video quality is very good and she can still hear and see me OK. The volume for Skype and everything else is wound up to the

  • iPhone 6 storage issue

    Hi all My iphone 6 16M has IOS 9.2.1 has storage problems and cannot open whatsapp, I deleted many apps and many pictures of the storage used and the amounts available are still fussing. How to solve this problem.

  • several wire labels

    I think the label of thread function is very useful. Can I have duplicates on the length of a long wire or is the a limit.

  • Backlight?

    When I got this a few days ago (fuze 2 GB), it was the correct brightness, then reduce to a darker setting after 15-20 sec or so.  Now he's the dark, black every time I do anything... If I use any button, it becomes black.  It's like the backlight is