Slow Transition on the ipad

Greetings,
I've been writing an app in AIR  2.7 for the ipad.  I've run into a performance problem when transitioning from one view to another.  It takes about 4 seconds before the animation start.  The target view has about 15 elements (a mix if list/images and textareas).  I believe the problem is in the creation of the elements before the animation starts.
Has anyone else run into this situation?  If so...suggestings?
--Klee

Shongruden,
  So here is the bulk of the mxml.  I didnt paste the contents of the script tag because I dont think it is relevant at this point.  If you think it is, let me know and I'll post it as well.  This is really a prototype with static data.
<s:states>
  <s:State name="landscape"/>
  <s:State name="portrait"/>
</s:states>
<fx:Declarations>
  <!-- Place non-visual elements (e.g., services, value objects) here -->
  <fx:XML id="body" xmlns="">
  <body><b>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</b> Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.  <br/> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).  Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.  <br/><br/> The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</body>
</fx:XML>
<fx:Array id="articles">
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
  <fx:Object label="This is the title" icon="@Embed('/assets/article_icon.png')" shortDescription="Lorem Ipsum is simply dummy text of the printing and typesetting industry."/>
</fx:Array>
</fx:Declarations>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
.labelStyle {
color: #0000ff;
alpha:.4
.messageStyle {
color: #000000;
alpha:.4;
fontSize:10;
#articleHeader{
fontSize:30;
color:black;
borderVisible:false;
contentBackgroundColor:white;
editable:false;
#articleBody{
fontSize:16;
color:black;
borderVisible:false;
contentBackgroundColor:white;
editable:false;
#categoryName{
paddingTop:10;
fontSize:25;
paddingLeft:5;
backgroundColor:#cecece;
</fx:Style>
<s:List id="categoryList" left="0" top="95" width="320" height="647" click="list1_clickHandler(event)" includeIn="landscape">
  <s:itemRenderer>
    <fx:Component>
      <s:IconItemRenderer labelField="label" messageStyleName="messageStyle" messageField="shortDescription" iconField="icon" />
    </fx:Component>
  </s:itemRenderer>
</s:List>
<s:TextArea id="articleHeader" x="328" y="43" width="528" height="127" editable="false" selectable="false" text="Title" x.landscape="328" y.landscape="53" width.landscape="516" x.portrait="5" y.portrait="52"/>
<s:Line x="0" y="199" width="687" xFrom="330" xTo="400" yFrom="10" yTo="10" x.landscape="0" y.landscape="224" x.portrait="-323" y.portrait="208">
  <s:stroke>
    <s:SolidColorStroke color="0x000000" weight="1"/>
  </s:stroke>
</s:Line>
<s:Line includeIn="portrait" x="135" y="42" xFrom="400" xTo="400" yFrom="10" yTo="170">
  <s:stroke>
    <s:SolidColorStroke color="0x000000" weight="1"/>
   </s:stroke>
</s:Line>
<s:Line x="-80" y="38" height="694" xFrom="400" xTo="400" yFrom="10" yTo="724" includeIn="landscape">
  <s:stroke>
    <s:SolidColorStroke color="0x000000" weight="1"/>
  </s:stroke>
</s:Line>
<s:Image includeIn="portrait" x="541" y="52" width="50" cacheAsBitmap="true" source="@Embed('/assets/my headshot.png')"/>
<s:Image includeIn="portrait" x="589" y="162" width="40" cacheAsBitmap="true" source="@Embed('/assets/Google-icon.png')"/
<s:Image includeIn="portrait" x="541" y="114" width="40" cacheAsBitmap="true" source="@Embed('/assets/Facebook-icon.png')"/>
<s:Image includeIn="portrait" x="589" y="114" width="40" cacheAsBitmap="true" source="@Embed('/assets/Digg-icon.png')"/>
<s:Image includeIn="portrait" x="633" y="114" width="40" cacheAsBitmap="true" source="@Embed('/assets/Linked-In-icon.png')"/>
<s:Image includeIn="portrait" x="541" y="162" width="40" cacheAsBitmap="true" source="@Embed('/assets/Google-icon.png')"/>
<s:Image includeIn="portrait" x="634" y="162" width="40" cacheAsBitmap="true" source="@Embed('/assets/Share-icon.png')"/>
<s:Image x="810" y="180" width="39" height="22" cacheAsBitmap="true" source="@Embed('/assets/Actions-bookmark-new-icon.png')" x.landscape="323" y.landscape="203" x.portrait="487" y.portrait="189"/>
<!-- Gold Starts -->
<s:Image x="474" y="178" width="20" height="20" cacheAsBitmap="true" source="@Embed('/assets/star_gold.png')" x.portrait="151" y.portrait="187"/>
<s:Image x="527" y="178" width="20" height="20" cacheAsBitmap="true" source="@Embed('/assets/star_gold.png')" x.portrait="204" y.portrait="187"/>
<s:Image x="500" y="178" width="20" height="20" cacheAsBitmap="true" source="@Embed('/assets/star_gold.png')" x.portrait="177" y.portrait="187"/>
<s:TextArea id="articleBody" right="0" bottom="42" width="696" height="486" editable="false" selectable="false" text="" right.landscape="0" bottom.landscape="42" height.landscape="469" right.portrait="10" bottom.portrait="50" width.portrait="753" height.portrait="739"/>
<s:Label includeIn="portrait" x="597" y="60" width="94" text="Don Reisinger"/>
<s:Label x="332" y="183" width="183" fontSize="12" text="Publish Date: 7/27/2011"
x.portrait="9" y.portrait="192"/>
<components:actionBar id="header" x="0" y="0" cacheAsBitmap="true"/>
<components:CategorySelector id="cats" visible="false" x="452" y="39"/>
<s:Label id="categoryName" x="0" y="50" width="320" height="46" color="#08254C" fontWeight="bold" text="Security" includeIn="landscape"/>
<components:MyStuffSelector id="myStuff" visible="false" x="578" y="40"/>
<s:Button x="857" y="714" width="75" height="30" label="ad" click="showAd()" x.portrait="683" y.portrait="962"/>
<s:Rect id="layover" visible="true" left="0" right="0" top="0" bottom="0" left.portrait="0" right.portrait="0" top.portrait="0" bottom.portrait="0">
  <s:stroke>
    <s:SolidColorStroke color="0x000000" weight="1"/>
  </s:stroke>
  <s:fill>
    <s:SolidColor color="0x000000" alpha=".5"/>
  </s:fill>
</s:Rect>
<s:Image id="large_ad" visible="true" cacheAsBitmap="true" click="hideAd()" horizontalCenter.landscape="0" source="/assets/layover_ad.png"
verticalCenter.landscape="0" horizontalCenter.portrait="0" verticalCenter.portrait="0"/>
<components:publishShareBlock includeIn="landscape" x="852" y="51">
</components:publishShareBlock>

Similar Messages

  • When playing games on the ipad I have no sound and it it very slow.

    when playing games downloaded from the app store I have no sound and the games arte very slow?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
    To solve some sound problems, just follow these simple steps
    1. Go to Settings
    2. Tap on General
    3. Tap on Reset
    4. Tap on Reset All Settings
    How to Fix a Slow iPad
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-A-Slow-iPad.htm
    iPad running slow? How to speed up a slow iPad
    http://appletoolbox.com/2012/07/ipad-running-slow-how-to-speed-up-a-slow-ipad/
    If You Think iOS 7 Feels Slow Here’s How to Speed It Up
    http://osxdaily.com/2013/09/23/ios-7-slow-speed-it-up/
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
     Cheers, Tom

  • Is there a way to speed up or slow down video clips in iMovie using the iPad?

    Is there a way to speed up or slow down video clips using iMovie on the iPad? I do not have an Apple computer...just the iPad.

    No.
    There are other apps that can to time shifting, or speed effects.
    iMovie cannot.

  • Why is the iPad so slow on the net?

    Internet (and phone etc) all on cable with nominal download speed of 60Mb (reduces a bit when going to computer via router).
    Have added wireless access point (rated 300Mb) so I can connect the iPad (bought last Friday).
    Connections all fine, but the browsing speed on the iPad is painfully slow. I see lots of other comments going back a year or two, so obviously Apple know about this - so why isn't it fixed yet?
    I am not very clued up on the wireless system, so maybe I've missed something; I'd like to know what might be causing the iPad to be so slow compared with my PowerMac.

    Went to Apple shop in town.
    Assistant there said it was the provider's problem, not Apple's; she added that her own download speed was officially 12, but she only gets 4.

  • Why is the IPad 4 so slow to charge and fast to discharge ??

    Why does the IPad 4 discharge so fast and be so slow to recharge

    Hello, willismom. 
    Thank you for visiting Apple Support Communities. 
    Battery life can be difficult to troubleshoot as multiple factors contribute to how long a charge can last.  Graphic intensive applications, display brightness and data connectivity are just a few of the items that can cause the battery life to decrease rapidly.  I would need to know a little more information about your usage patterns to give you and idea on how to maximize battery life.  However, here are some tips on how to adjust settings and charge the device that may help. 
    iPad: Charging the battery
    http://support.apple.com/kb/ht4060
    About Batteries
    About iPad Batteries
    If you feel that you need assistance with the battery concern, you can always reach out to us via the link below. 
    Contact Apple
    Cheers,
    Jason H. 

  • I have purchased the app geowalk and garaband from the ipad itself and found it was very slow to get it installed. Then I used a pc (not mac) to download the app and found that I cant install to the ipad. It said error... anybody can help?

    Help! I have purchased the app geowalk and garaband from the ipad itself but found the files were too big and the process is too slow. I later use non mac pc to install the 2 apps but I couldnt tranfer to the ipad. It always said error. anyone can help?
    Thanks

    WHat does the error say?  Is there an error code?

  • Ever since I downloaded IOS 8 my IPad has been slower, stalling and now it completely crashed and I can't restart.  It's the Ipad 2.  Is there anyway I can do?

    Ever since I downloaded IOS 8 my IPad has been slower, stalling and now it completely crashed and I can't turn it on at all!  It's the Ipad 2.  Is there anyway I can do?

    Hey Basketsopugs,
    Thanks for the question. I understand you are experiencing issues with a third-party application after the iOS 7 update. The following article outlines the best procedure for troubleshooting this issue:
    iOS: Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Thanks,
    Matt M.

  • Does the iPad get slower with time?

    i have an iPad 4 for over a year. Does the iPad get slower with the passage of time or because of small amount of available?

    As with any piece of electronics, the more stuff you get on there, the more clutter and the more 'junk' (not meaning offensively, just junk as extra files, fragmented files, etc) that it has to run through.
    If you think it's getting too slow, you can fully back it up, then reset your iPad back to factory settings (erase all content and settings) and then restore from that backup.
    It's not impossible, just something to do carefully because if you haven't backed everything up correctly, you will lose it. (content and apps from iTunes can always be redownloaded but content made on your iPad can be deleted if not backed up)
    I've had my iPad 2 for almost three years now and really haven't noticed a major decline in function. So unless you see something drastic, I really wouldn't worry about it.

  • Does the ipad run faster/slower with verizon 4g or 4g wifi without the verizon 4g option

    I'm looking at purchasing my first iPad and I'm not sure if it's worth spending the extra money to get the wifi and wireless or would it be just as fast to get the wifi version and use my 4g mifi card from Verizon?

    What will you use the 4g for? Do you travel often for work, go to very remote places? Why do you have mifi? Do you use your mifi with your phone on a regular basis? Can you use it for your phone and ipad? And don't you pay for mifi on a monthly basis even if you rarely use it? With 4g, you pay on a monthly basis so you might only need to do that a few times a year during the months you use it. I would call Verizon and find out. And I'm sure you're aware that they're always trying to sell you on spending more money so be careful how you word your questions.
    I quickly googled the mifi question and saw this article. http://www.zdnet.com/blog/apple/why-i-ordered-a-wi-fi-only-ipad/12470. Please read the comments to the article, too. Some agreed with the writer, while others had very different opinions. If you google your question, you'll get many opinions from professional tech people, users, and former users of 3g and 4g. This might help you make a decision.
    We got our first ipad, (64gb ipad 2 wi-fi only) for my husband in June and one of my sons got the same today. Both are refurbs from the Apple online store. They come with brand new outer shell, brand new battery, and full one year warranty (other places that sell refurbs probably do not refresh their refurbs as Apple does, so if you go refurb, use the Apple online store. They're great! We saved a lot of money, even with the 64gb. (I know people love their new ipads, but this way we didn't have to deal with the possible overheating, yellow hue on screens, etc. We did not get 3g because if we are somewhere and need 3g, we all have phones that we can use. And though we won't get Siri on ipad 2 when it comes out, we don't care about it - just enjoying the freedom of 64gb, etc.
    So, I suggest you evaluate your needs, check with Verizon, and google your questions. I'm sure you'll make the decision that is best for you!
    At any rate, enjoy your first ipad! We think you'll love it!
    Message was edited by: appleuser1322
    Forgot to tell you -- to answer your question - I have no idea if the ipad runs faster or slower with or without 4g! (Verizon would probably tell you faster because they'll make more money, so I suggest you also google that.)
    Hope this helps!

  • Having just bought an iMac and set every thing up I have found that my IPad seems to run very slow. I have also just updated the IPad to OS 5.1 .Are these two things connected or is there a problem with the IPad

    Having just bought an iMac and set every thing up I have found that my IPad seems to run very slow. I have also just updated the IPad to OS 5.1 .Are these two things connected or is there a problem with the IPad

    Using the Mac with your iPad has nothing to do with the fact that the iPad is running slow. There could be any number of reasons why the iPad is now running slow.
    Have you tried a reset on the iPad?
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • I just bought my Iphone 5, why is it that it is very slow or hard to connect when nearby wifi stations unlike the Ipad/Ipod units?

    I just bought my Iphone 5, why is it that it is very slow or connot connect at all when nearby WIFI stations unlike the Ipad/Ipod units?

    Have already taken the necessary steps but to no avail.  I would like to take this oppurtunity to inquire from Iphone 5 users if they experienced the same..the gadget is very slow in picking up WIFI signal unlike the Ipad/Ipod units.. If this is the case then its a big draw back for Iphone 5..it's also draining its battery fast.

  • What's the go with this latest update. Half my apps don't work and the iPad runs slower? How do I go back to the old operating system?

    What's the go with this latest update. Half my apps don't work and the iPad runs slower? How do I go back to the old operating system?

    Make sure your apps are updated.  You might try Settings > iTunes & App Store > Automatic Downloads - Updates = "On".
    You cannot go back to an old operating system.

  • The iPad Air have slow motion camera

    My question is the iPad Air have a slow motion camera?

    IS the ipad air 2 with ios 8.2 too? I dont have is!!! Need help.

  • Typing on the iPad 2 very slow to respond with iOS 7

    Why is typing on the iPad 2 very slow to respond with iOS 7?

    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.

  • IPad air is slow to charge the battery

    My new iPad air is slow to charge the Battery? I am comparing it to an ipad2

    Try a different cable
    Use the power adapter/charger that came with the device
    Don't charge from a PC's USB ports as they likely do not supply enough current to adequately charge the iPad. Charging will be slow.
    Don't use an iPhone's charger to charge the iPad. It's not recommended as it does not supply enough current and will charge *very* slowly.
    Try to clean out the 30-pin/Lightning port on the device using a clean toothbrush (or similar) & blow it out. There may be dust/lint preventing proper electrical connection. The older 30-pin port is much more prone to dust & lint getting inside and it's internal conductors are very small. Clean the port out thoroughly and also the 30-pin connector on the cable.

Maybe you are looking for

  • Photoshop CS6 DynamicLink Error?

    I have just recently downloaded Photoshop CS6 on my Windows laptop. When I opened Photoshop, I was able to open images, but when I went to Import>Video Frames to Layers, an error popped up saying "Could not complete the Video Frames to Layers command

  • Problems with IQueryEntry, search filtering by classifications URGENT!!!!

    Hi everyone! I'm developing an application that search in KM, using KM indexmanagement API's for searching with TREX. Everything is work fine, even if I search with custom properties in the documents. My problem is when I try to search filtering with

  • Mail - Auto capitalize first word in each sentence

    When composing a message in mail is there a way to turn on auto capitalization for the word beginning each sentence?

  • ORA-942 in Export

    I'm trying to do an export of a database (8.1.7) from one server to another (9.0.1) I can connect through sqlplus fine but when I try to run the export on the command line, I get the ORA-942 error. We also have a script that we run at night to do the

  • Back up windows server 2008 / 2012

    how taking a full image from windows server (that holding any product (active directory & exchange & lync & System center family ...........etc)) i mean as i can back up for example windows xp & 7  by Norton ghost which i can restore by booting using