<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : All Content - All Communities</title>
    <link>https://forums.adobe.com/</link>
    <description>All Content in Adobe Community</description>
    <language>en</language>
    <pubDate>Mon, 17 Feb 2014 19:19:02 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-02-17T19:19:02Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>loading external SWF with code and asset, possible?</title>
      <link>https://forums.adobe.com/thread/1408798</link>
      <description>&lt;!-- [DocumentBodyStart:8bc6930c-569c-4407-9178-841450bd28a7] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;it may sound easy but I've been literally struggling to get it done. I've main SWF, which loads child SWF. Child SWF file has some graphics as well as a Vector.&amp;lt;Object&amp;gt; variable. Now, if I load it normally using Loader.load(), it can access child SWF.Vector.&amp;lt;Object&amp;gt;, but there is an issue with it, child SWF's mouseEvents and parent SWF's mouseEvents do not match, parent SWF's MouseEvent.MOUSE_MOVE won't fire if mouse cursor is over child SWF. If I use Loader.loadByte method, mouse issue is solved but I can not access child SWF's.Vector&amp;lt;Object&amp;gt;... I use LoaderContext(false, ApplicationDomain.currentDomain, null) and LoaderContext.allowCodeImport = true... &lt;/p&gt;&lt;p&gt;any idea?? any suggestion???&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8bc6930c-569c-4407-9178-841450bd28a7] --&gt;&lt;img src='/beacon?t=1415949129787' /&gt;</description>
      <pubDate>Mon, 17 Feb 2014 19:19:02 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1408798</guid>
      <dc:date>2014-02-17T19:19:02Z</dc:date>
      <clearspace:dateToText>8 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AIR - File.cancel() - BUG???</title>
      <link>https://forums.adobe.com/thread/1393643</link>
      <description>&lt;!-- [DocumentBodyStart:d793970a-1cc1-4bef-a6ad-0a09ba80b00d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've been trying for the last 3 hours now, but it just does not work. I'm using Flash CS 6, AIR 4.0.0.1390, OS 32-bit XP SP 3.&lt;/p&gt;&lt;p&gt;Scenario:&lt;/p&gt;&lt;p&gt;Using AIR's File, copy a large file to somewhere else &lt;strong&gt;"A&lt;span&gt;synchronously"&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Pretty simple!! Here is the BUGGY part: try to show Progress - PROGRESSEVENT DOESN'T WORK. try to listen for canel() method - DOESN'T WORK. here is very simple, straigh-forward code:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;import flash.filesystem.File;&lt;/p&gt;&lt;p&gt;import flash.events.Event;&lt;/p&gt;&lt;p&gt;import flash.events.ProgressEvent;&lt;/p&gt;&lt;p&gt;import flash.utils.setTimeout;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var a:File = File.desktopDirectory.resolvePath("file1.abc"); //file size: 300+ MB&lt;/p&gt;&lt;p&gt;var b:File = File.desktopDirectory.resolvePath("file2.abc");&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;a.addEventListener(Event.CANCEL, cn); //&lt;strong&gt;DOES NOT FIRE&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;a.addEventListener(ProgressEvent.PROGRESS, pr); // &lt;strong&gt;DOES NOT FIRE&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;a.addEventListener(Event.COMPLETE, cl);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;a.copyToAsync(b, true);&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;function cn(e:Event):void&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace('operation is cancelled');&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;function cl(e:Event):void&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace('operation completed');&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;function pr(e:ProgressEvent):void&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace(e.bytesLoaded + " " + e.bytesTotal);&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;to make everything pretty simple, I added these two lines:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var c:uint = setTimeout(function ():void {a.cancel(); b.cancel(); trace('cancelled');}, 50); //it traces 'cancelled', I DON'T KNOW wether it really cancels that operation or no&lt;/p&gt;&lt;p&gt;var d:uint = setTimeout(function ():void {b.deleteFile();}, 10000); //even after waiting for 10 seconds, it still shows Error, file is in use...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the Adobe's documentation regarding .cancel() function:&lt;/p&gt;&lt;p&gt;&lt;span&gt;"Cancels any pending asynchronous operation."&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Is there any way to STOP/CANCEL current File's operation (such as openAsync, copyToAsync, moveToAsync)???? What if user wants to cancel large file copy??? NO WAY??&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d793970a-1cc1-4bef-a6ad-0a09ba80b00d] --&gt;</description>
      <pubDate>Thu, 30 Jan 2014 13:41:36 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1393643</guid>
      <dc:date>2014-01-30T13:41:36Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>cacheAsBitmap on nested movieclips/sprites?</title>
      <link>https://forums.adobe.com/thread/1374428</link>
      <description>&lt;!-- [DocumentBodyStart:788382f4-19f0-4941-94a2-837ae7cbad1d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi. Regarding cacheAsBitmap, I was wondering whether to appy 'cacheAsBitmap' property on every nested sprites/movieclips or only on the main sprite/movieclip? In my case, I've one main container sprite, which has 3-4 sprites. These 3-4 sprites may also have children (shape/sprites). Now, I'm using scrollRect property of main container to scroll. I've set 'cacheAsBitmap' property to true for every single child/sub-child of the main container and of course to the main container as well. So, my question is, do I need to set for main container only or for every single child -it may have? &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:788382f4-19f0-4941-94a2-837ae7cbad1d] --&gt;</description>
      <pubDate>Wed, 08 Jan 2014 14:33:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1374428</guid>
      <dc:date>2014-01-08T14:33:34Z</dc:date>
      <clearspace:dateToText>10 months 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AIR AS3: File.upload() - crazy, mind-boggling issue</title>
      <link>https://forums.adobe.com/thread/1340447</link>
      <description>&lt;!-- [DocumentBodyStart:c9060bfe-d74e-46e8-ab8b-bbe296cb069d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've been searching for last 2-3 days for this issue and have not found any solutions so far. Here is the scenario:&lt;/p&gt;&lt;p&gt;I've developed an AIR application for desktop. User can play with the provided-image (make changes in that) and email it to himself. When he chooses to email, it first creates a JPG file and stores in the hard-disk, than creates PDF file and stores it as well. Once both the files are created and stored, it than starts uploading these files to the server. This workflow is pretty simple and I've tested this code 1000 times on my PC. I created 43 JPG and PDF and sent them all to my email address in one session, and all went perfect. BTW I've Win XP 32 bit and Win 7 64 bit. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now here is the mind-boggling part:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I installed the same application on another brand new PC having Win 7 64 bit. When I create 'specific' changes in the image and email it to myself, it creates JPG and PDF files, but fails to upload. I tried sending only one file (JPG/PDF), but it almost always stucks at 100% and fires either 2038 or http status 500. Sometimes it also fires either of these errors before 100%. You might not believe in me, but when I change 'that particular changes', it can upload both the files but for that particular design, it just does not upload. The very same app works perfectly on my PC (on Win XP 32 bit and Win 7 64 bit). I tried installing the same app on another PC running XP and well, there too, it uploads. No matter what it just can't upload that particular design on some PCs. I installed the same app on another PC running Win 7 64 bit, brand new, but there too, the very same design would not upload and stuck at 100%! When I use Remote Desktop utility and run that app remotely, sometimes it uploads but most of the time it fails. I even developed a very small uploading app, that would only upload those two files - which were not uploaded by the main app; that small app can easily upload these 2 files but the main app can't. I've gone crazy seriously. I've no clue whatsoever, what to do? I tried making changes in PHP script, such as:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;ini_set('post_max_size','20M');&lt;/p&gt;&lt;p&gt;ini_set('upload_max_filesize','8M');&lt;/p&gt;&lt;p&gt;ini_set('max_execution_time','300');&lt;/p&gt;&lt;p&gt;set_time_limit(0);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;but no luck, I tried adding these lines in .htaccess:&lt;/p&gt;&lt;p&gt;SECFILTERENGINE OFF&lt;/p&gt;&lt;p&gt;SECFILTERSCANPOST OFF&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;but no luck. I used Wireless internet and LAN internet, but no luck. The very same application, somewhere it works and somewhere it just does not (more specifically, that perticular design only will not be uploaded!). I checked that out with IT professionals, web developers but nobody has any clue what the problem could be? The very same problem even can not be stimulated!! Is there anybody who can help me? Any wild guess? No need to say I've updated the AIR framework as well. Is there any better way to upload files on the server (without any authentication, just PHP retrieving them)? Is the File.upload() function buggy? &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c9060bfe-d74e-46e8-ab8b-bbe296cb069d] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">file</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">upload</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">http</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">500</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">status</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">2038</category>
      <pubDate>Thu, 21 Nov 2013 13:45:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1340447</guid>
      <dc:date>2013-11-21T13:45:09Z</dc:date>
      <clearspace:dateToText>11 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Flash/Flex Application for Kiosk? How does it sound?</title>
      <link>https://forums.adobe.com/thread/852683</link>
      <description>&lt;!-- [DocumentBodyStart:dd03f195-4fc4-40cc-aad0-0dde7c9dc2e6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;hello experts...&lt;br/&gt; i've developed an application for a corporate showroom. i'm planning to&amp;nbsp; install a kiosk, and run this application on it... guys what do you&amp;nbsp; think? is it good idea to run flash/flex application on interactive&amp;nbsp; kiosk?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dd03f195-4fc4-40cc-aad0-0dde7c9dc2e6] --&gt;</description>
      <pubDate>Mon, 16 May 2011 06:04:28 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/852683</guid>
      <dc:date>2011-05-16T06:04:28Z</dc:date>
      <clearspace:dateToText>11 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AIR for iOS: Icons &amp; Launch Image question</title>
      <link>https://forums.adobe.com/thread/1237277</link>
      <description>&lt;!-- [DocumentBodyStart:95191c96-2d39-4098-af64-462914b0ef23] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;strong&gt;Launch Image:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;AIR has been so changed since I used it last time, I can't really figure out anything, documentation is somewhat confusing to me. Could you anyone of you please answer my question? To some, it could be pretty simple. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;My app is exclusively for iPads, works only in Lanscape mode, so I've included 2 launch images, which name: Default.png &amp;amp; Default@2x.png. (I named them after reading this: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://help.adobe.com/en_US/air/build/WS901d38e593cd1bac1e63e3d129907d2886-8000.html" rel="nofollow" target="_blank"&gt;http://help.adobe.com/en_US/air/build/WS901d38e593cd1bac1e63e3d129907d2886-8000.html&lt;/a&gt;&lt;span&gt;)&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When I copied final .ipa file to my iPad 2, well, its launch image appeared in Portrait mode! So, I'm totally confused as how many launch images I need to provide and what should be their name? I use Flash Professional CC to publish, I've included all the launch images in Publishing settings, so is there any order I need to follow or order in Included Files just does not metter? Please keep it in consideration that this app is only for iPads (specified in Publishing dialouge box) and works only in Landscape mode (both, left and right).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Icons:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I followed the above mentioned webpage and provided Flash Professional CC these icons: 29x29, 48x48, 50x50, 58x58, 72x72, 100x100, 144x144 &amp;amp; 1024x1024. I know 50x50 icon is created by AIR from 48x48, yet I provided it and 512x512 icon is only for development purpose, we need to manually provide it while uploading it to App Store, so I did not provide it. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When I copied final .IPA to iTunes, iTunes does not show App Icon as it used to show for development-ipa. So, I just want to confirm is it normal or I missed something?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Lastly, I copied final .IPA to my iPad 2, when I started it, I noticed that first it show the 'launch image' in Portrait mode (as mentioned above) and after may be 1-2 seconds, the launch image gone and it showed blank (black) screen untill my app started. The blank black screen showed up for 3-4 seconds. Is it normal?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:95191c96-2d39-4098-af64-462914b0ef23] --&gt;</description>
      <pubDate>Thu, 20 Jun 2013 07:23:51 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1237277</guid>
      <dc:date>2013-06-20T07:23:51Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AIR 3.6 to 3.7.0.2090, iOS compilation error, HELP</title>
      <link>https://forums.adobe.com/thread/1236775</link>
      <description>&lt;!-- [DocumentBodyStart:f788da6d-3488-4986-9c3e-ffb5b09ef6b1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've 47 purely graphical SWFs in my project. If I include them in my project for creating final .ipa to be put on Apple Store, Flash never creates .ipa, but if I remove them, it creates. Furthermore, I've made sure that all the swfs are code-free, they neither Export for ActionScript, nor any movieclip has any code. What could be the reason? I've read that it is known issue for AIR to not include localized swf. What is the solution? I'm in desperate need. Please help.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f788da6d-3488-4986-9c3e-ffb5b09ef6b1] --&gt;</description>
      <pubDate>Wed, 19 Jun 2013 18:20:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1236775</guid>
      <dc:date>2013-06-19T18:20:44Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Question regarding app for iPad retina and iPad</title>
      <link>https://forums.adobe.com/thread/1236199</link>
      <description>&lt;!-- [DocumentBodyStart:b172ca4c-d6d7-4c5c-b2d0-766f25856a9c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi.&lt;/p&gt;&lt;p&gt;I searched about this, but whatever I found was opposite to what I was looking for.&lt;/p&gt;&lt;p&gt;I've developed an application (AIR 3.7.0.1530, Flash CS6), full resolution: 2048 x 1536.&lt;/p&gt;&lt;p&gt;While I'm checking this application on iPad 2, it works fine and displays everything because I've set stage.scaleMode property to ScaleMode.SHOW_ALL. Although it is a bit jagged, but I'm happy with the quality.&lt;/p&gt;&lt;p&gt;What I can't find is, if I upload it to the App Store, will it be available for iPad 2 as well or it can only be installed on iPad retina display? &lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b172ca4c-d6d7-4c5c-b2d0-766f25856a9c] --&gt;</description>
      <pubDate>Wed, 19 Jun 2013 08:02:22 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1236199</guid>
      <dc:date>2013-06-19T08:02:22Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>7</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Quick GC question</title>
      <link>https://forums.adobe.com/thread/1150715</link>
      <description>&lt;!-- [DocumentBodyStart:bedca606-7962-4900-9685-1b08368328b6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello guys, I've a very simple question regarding GC.&lt;/p&gt;&lt;p&gt;I've created a Class A, which creates 8-10 sprites and adds them.&lt;/p&gt;&lt;p&gt;Now from my Main Class, I create an instance of Class A and listen for its completion. &lt;/p&gt;&lt;p&gt;When Class A dispatches Event.COMPLETE event, what I simple do from my Main Class is:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;removeChild(Class A instance);&lt;/p&gt;&lt;p&gt;removeEventListener(...);&lt;/p&gt;&lt;p&gt;Class A instance name = null;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What I really don't do is, I don't delete those 8-10 sprites from Class A, as Class A itself will be removed.&lt;/p&gt;&lt;p&gt;So my question is, in this scenario, is it required to remove those 8-10 sprites of Class A, when Class A itself is removed and all reference to Class A is deleted/nullfied?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bedca606-7962-4900-9685-1b08368328b6] --&gt;</description>
      <pubDate>Sun, 10 Feb 2013 06:42:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1150715</guid>
      <dc:date>2013-02-10T06:42:05Z</dc:date>
      <clearspace:dateToText>1 year 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is this possible in Photoshop?</title>
      <link>https://forums.adobe.com/thread/1094361</link>
      <description>&lt;!-- [DocumentBodyStart:9fa47346-4d9e-40bc-b9e0-cafee45ebcfe] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello guys, I've been searching for this for the last 2+ hours. Could anyone please help me out? I think it is easy but can't sort it out.&lt;/p&gt;&lt;p&gt;For my 3D scene, I have to use a texture file on the floor. If I use the only file, than it looks really boring and below par. What I want is, I want to generate some (around 6-8) texture files within the original texture file - so the colors of all the texture files remain same but only the texture varies.&lt;/p&gt;&lt;p&gt;I hope I've explained well. Likewise there are more than 500 texture files and I just can't do them manually. Is there any way out to do this in Photoshop? &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9fa47346-4d9e-40bc-b9e0-cafee45ebcfe] --&gt;</description>
      <pubDate>Tue, 06 Nov 2012 07:25:36 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1094361</guid>
      <dc:date>2012-11-06T07:25:36Z</dc:date>
      <clearspace:dateToText>2 years 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>VideoEvent in Flash Player 10.2 doesn't work</title>
      <link>https://forums.adobe.com/thread/848933</link>
      <description>&lt;!-- [DocumentBodyStart:0b234047-4b8e-45f6-84f2-3cccb017392d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Same code works in 10.1 and earlier but does not work in 10.2... Is it bug or done intentionally? Is there any way to run VideoEvent in flash player 10.2?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0b234047-4b8e-45f6-84f2-3cccb017392d] --&gt;</description>
      <pubDate>Sat, 07 May 2011 06:45:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/848933</guid>
      <dc:date>2011-05-07T06:45:34Z</dc:date>
      <clearspace:dateToText>2 years 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>11</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is it proper Ad-hoc distribution process?!</title>
      <link>https://forums.adobe.com/thread/910492</link>
      <description>&lt;!-- [DocumentBodyStart:7624fe60-0920-4609-abb0-f838214afcd2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I created .key file using openSSL.&lt;/p&gt;&lt;p&gt;I created CSR file using openSSL (windows platform of course)&amp;nbsp; (as described on adobe website).&lt;/p&gt;&lt;p&gt;I purcahsed developer certificate from apple (99$ yearly).&lt;/p&gt;&lt;p&gt;I installed WWDR intermediate certificate (as shown on apple's website).&lt;/p&gt;&lt;p&gt;Uploaded CSR file and finally received developer certificate.&lt;/p&gt;&lt;p&gt;Converted it into .p12 file (as described on adobe website).&lt;/p&gt;&lt;p&gt;Created new provision profile.&lt;/p&gt;&lt;p&gt;Finally, used .p12 file and .provision profile to build an ipa file for testing.... which worked on my ipad.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I wanted to install the same thing on another ipad, so I took UDID of that ipad.. on apple's website, i added that device.&lt;/p&gt;&lt;p&gt;created distribution certificate (using the exisiting .csr file, did not create it again).&lt;/p&gt;&lt;p&gt;created ad-hoc provision profile using for both ipads.&lt;/p&gt;&lt;p&gt;downloaded and used this new adhoc provision profile and .p12 (existing) to build .ipa file...&lt;/p&gt;&lt;p&gt;it is over 1 hour and still it shows it is building..(i use AIR SDK 3.0, command line, temporary files are showing in the publishing folder)...&lt;/p&gt;&lt;p&gt;usually it takes around 20 minutes to create ipa-test file.. &lt;/p&gt;&lt;p&gt;is it normal???? did i do anything wrong?! pls help.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7624fe60-0920-4609-abb0-f838214afcd2] --&gt;</description>
      <pubDate>Thu, 06 Oct 2011 08:21:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/910492</guid>
      <dc:date>2011-10-06T08:21:49Z</dc:date>
      <clearspace:dateToText>2 years 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>9</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>problem/bug with AIR 3.0</title>
      <link>https://forums.adobe.com/thread/915271</link>
      <description>&lt;!-- [DocumentBodyStart:06b5fbcd-0563-47ec-a8d5-688479713146] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi guys,&lt;/p&gt;&lt;p&gt;I'm here again. I got this error when I tried to publish my project with AIR 3.0.. Actually, I've created an application usign AIR 2.6 (default comes with CS 5.5). It was used to get published and I used to update it on regular basis. Few days back I had to copy AIRSDK3 folder to Adobe's program files' folder, where I renamed AIR2.6 to anything else and AIRSDK3 to AIR2.6... Today, when I tried to publish my same project,&amp;nbsp; I got this following error. Hope that would help adobe (as it is beta version).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-3979115-87263/air_bug.JPG"&gt;&lt;img alt="air_bug.JPG" class="jive-image jive-image-thumbnail" height="207" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-3979115-87263/450-207/air_bug.JPG" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;(By the way, when I renamed the folders to their original names, it worked and published).&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:06b5fbcd-0563-47ec-a8d5-688479713146] --&gt;</description>
      <pubDate>Wed, 19 Oct 2011 08:13:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/915271</guid>
      <dc:date>2011-10-19T08:13:13Z</dc:date>
      <clearspace:dateToText>3 years 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>If Apple doesn't allow than why does Adobe?</title>
      <link>https://forums.adobe.com/thread/914293</link>
      <description>&lt;!-- [DocumentBodyStart:35f0badf-fe61-4215-9188-017c5bc151e4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Well, after nightmare type of my journey to publish and upload .ipa to Apple Store (using Windows platform), at the end I got my application rejected and the reason is the following:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;---Quote&lt;/p&gt;&lt;p&gt;We found that your app does not comply with the Apple iOS Human Interface Guidelines, as required by the &lt;a class="jive-link-external-small" href="https://developer.apple.com/appstore/resources/approval/guidelines.html" rel="nofollow"&gt;App Store Review Guidelines&lt;/a&gt;.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Specifically, we noticed your app only supported the top-right variant of the landscape orientation, but not the top-left variant.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;While supporting both variants of both orientations, each with unique launch images, provides the best user experience and is recommended, we understand there are certain applications that must run in the landscape orientation only. In this case, it would be appropriate to support both variants of that orientation in your application, e.g., Home button right and left.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Addressing this issue typically requires only a simple and straightforward code modification. However, if you require assistance, the &lt;a class="jive-link-external-small" href="http://developer.apple.com/support/resources/technicalsupport/" rel="nofollow"&gt;Apple Developer Support Team&lt;/a&gt;&amp;nbsp; is available to provide code-level assistance.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For more information, please review the Aim to Support All Orientations section of the &lt;a class="jive-link-external-small" href="http://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/Introduction/Introduction.html" rel="nofollow"&gt;iOS Human Interface Guidelines&lt;/a&gt;.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;To appeal this review, please submit a request to the &lt;a class="jive-link-external-small" href="https://developer.apple.com/appstore/resources/approval/contact.html" rel="nofollow"&gt;App Review Board&lt;/a&gt;.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;--Unquote&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My application is designed to work in landscape mode only. Because of the content, I can not really re-design it to work in portrait mode. Whatever can be done in portrait mode is re-scale, which would really make my content very tiny...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I wonder, if Apple requires to have support for the both orientations, why Adobe has given "Auto orientation" check box (in AIR of iOS settings dialouge box)? Just because of this 'feature', I've lost almost a week and may lose very very important meeting on Wednesday.. and God knows when my application will finally be uploaded to AppStore.. aah!!!!!!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:35f0badf-fe61-4215-9188-017c5bc151e4] --&gt;</description>
      <pubDate>Mon, 17 Oct 2011 07:15:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/914293</guid>
      <dc:date>2011-10-17T07:15:48Z</dc:date>
      <clearspace:dateToText>3 years 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>ipa-test works, ipa-app-store doesn't? bug?</title>
      <link>https://forums.adobe.com/thread/911540</link>
      <description>&lt;!-- [DocumentBodyStart:74f3988f-2e5d-4dd5-a510-a0ec0c1eb578] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;before start, let me tell you i do have all necessary certificates and mobileprovisions files with me. i use AIR 3.0 command line (as Flash CS 5.5 can not publish it using 2.6 due to bugs). i've already created "ipa-test" files using appropriate files - which has been checked in ipad as well. &lt;/p&gt;&lt;p&gt;now i would like to upload this project to the apple app. i tried to create "ipa-app-store" using distribution certificate (converting it PEM and than .p12) and its mobileprovision file. It could not. I kept it for whole 1 day.. temporary files were there in publishing folder, and in the task manager also, it was showing Java.exe was running. Initially, i thought the problem is with distribution certificate and mobileprovision files, i deleted them and re-create them but the result was the same. Then I create new file with just one small rectangle in it and published it with the same code, same files (using AIR SDK 3.0)... surprisingly it was published. i've no idea what is going on? can someone please help me out? overall, it is something like this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Project1 : ipa-test : published&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (this is my main project, ipa-test using developer certificate and development mobileprovision works)&lt;/p&gt;&lt;p&gt;Project1 : ipa-app-store : takes eternal&amp;nbsp; (ipa-app-store using distribution certificate and distribution mobileprovision doesn't work)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Project2 : ipa-test : published&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (this is just a testing file, which has only a rectangle in it. tried to ipa-test it using same files - which i used to create Project1 ipa-test... works)&lt;/p&gt;&lt;p&gt;Project2 : ipa-app-store : published&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (tried to ipa-app-store using SAME FILES WHICH I USED TO CREATE PROJECT1 IPA-APP-STORE... WORKS!!!)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I thought it is because I've much assets in Project1... I deleted them all and than tried.. failed... In fact, I added those all assets in Project2 and than tried... Published! -- I believe this means there is no problem with my certificates.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In short, Project1 gets published with ipa-test but not with ipa-app-store...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is my workflow (how I created the distribution certificate and mobileprovision file):&lt;/p&gt;&lt;p&gt;Created mykey.key file.&lt;/p&gt;&lt;p&gt;converted it to .CSR file.&lt;/p&gt;&lt;p&gt;uploaded to apple.&lt;/p&gt;&lt;p&gt;downloaded and installed distribution_identity&lt;/p&gt;&lt;p&gt;distribution_identity to .PEM&lt;/p&gt;&lt;p&gt;.PEM to .p12&lt;/p&gt;&lt;p&gt;mobileprovision profile from apple website.. for distribution and not ad-hoc&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i would be very thankful if anyone help me out..&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:74f3988f-2e5d-4dd5-a510-a0ec0c1eb578] --&gt;</description>
      <pubDate>Sun, 09 Oct 2011 14:11:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/911540</guid>
      <dc:date>2011-10-09T14:11:54Z</dc:date>
      <clearspace:dateToText>3 years 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>7</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Publishing takes tooo much time</title>
      <link>https://forums.adobe.com/thread/907884</link>
      <description>&lt;!-- [DocumentBodyStart:10718f51-a9b3-4de5-9af4-fc80c10181d6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've developed an AIR application compatible with Flash Player. I want it to run it on my iPad, I already have developer certificate. Publish Settings are correct, but it's been 1 hour since i've Publish, still it shows "Publishing...". Any idea? [B]Does it really take such a long time to publish .ipa?[/B] My stage resolution is 1024 x 768, .FLA size is 1.63 MB and external JPGs, SWFs and an FLV files are 503 MB.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:10718f51-a9b3-4de5-9af4-fc80c10181d6] --&gt;</description>
      <pubDate>Thu, 29 Sep 2011 08:15:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/907884</guid>
      <dc:date>2011-09-29T08:15:44Z</dc:date>
      <clearspace:dateToText>3 years 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>16</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Publishing takes tooo much time</title>
      <link>https://forums.adobe.com/thread/907885</link>
      <description>&lt;!-- [DocumentBodyStart:c93f25c6-28f9-46d3-b75f-f3aed547f94f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've developed an AIR application compatible with Flash Player. I want it to run it on my iPad, I already have developer certificate. Publish Settings are correct, but it's been 1 hour since i've Publish, still it shows "Publishing...". Any idea? [B]Does it really take such a long time to publish .ipa?[/B] My stage resolution is 1024 x 768, .FLA size is 1.63 MB and external JPGs, SWFs and an FLV files are 503 MB.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c93f25c6-28f9-46d3-b75f-f3aed547f94f] --&gt;</description>
      <pubDate>Thu, 29 Sep 2011 08:18:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/907885</guid>
      <dc:date>2011-09-29T08:18:38Z</dc:date>
      <clearspace:dateToText>3 years 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>garbage collection - setStyle should be removed?</title>
      <link>https://forums.adobe.com/thread/801076</link>
      <description>&lt;!-- [DocumentBodyStart:b27d2ca2-e8ca-4190-9be5-0ba63ee151db] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;i've list-based components. when i no longer require them, i just use removeChild() method. i've applied setStyle() method to them. i'm a bit consufed, do i really need to use clearStyle() method or without doing it, flash will take them in garbage collection??&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b27d2ca2-e8ca-4190-9be5-0ba63ee151db] --&gt;</description>
      <pubDate>Tue, 08 Mar 2011 05:15:22 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/801076</guid>
      <dc:date>2011-03-08T05:15:22Z</dc:date>
      <clearspace:dateToText>3 years 8 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is it flash bug? Tween Class</title>
      <link>https://forums.adobe.com/thread/798598</link>
      <description>&lt;!-- [DocumentBodyStart:4d0344ce-1944-49c7-8521-5d166aeab641] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've been working on a bit big project. I've some components on the stage. There are basically 4 frames. Each frame has some components. What I've done is, I've used tween class. Workflow is something like this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Frame 1:&lt;br/&gt;--used Tween class to get fade effect for List component.&lt;br/&gt;--used Tween.MOTION_FINISH event to fire an event when it is finished.&lt;br/&gt;--when it is finished, applied eventListener&lt;br/&gt;--on Change event, remove eventListeners and use Tween class again to get reverse fade effect.&lt;br/&gt;--again used Tween.MOTION_FINISH event to fire an event when finished.&lt;br/&gt;--in that evenHandler, gotoAndStop(2);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Frame 2:&lt;br/&gt;//similar&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Frame 3:&lt;br/&gt;//similar&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and so on.. now, what happens, is, if i play with my scene, sometimes tween class failed to work. sometimes it does not display List component, sometimes it displays List component with alpha 0.2. sometimes it happens with movieClip also. Is it flash bug or problem with my code?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4d0344ce-1944-49c7-8521-5d166aeab641] --&gt;</description>
      <pubDate>Wed, 02 Mar 2011 09:02:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/798598</guid>
      <dc:date>2011-03-02T09:02:25Z</dc:date>
      <clearspace:dateToText>3 years 8 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>custom scroll in tilelist component</title>
      <link>https://forums.adobe.com/thread/790875</link>
      <description>&lt;!-- [DocumentBodyStart:23ad2a82-5d0c-4d20-82a8-507eb9646a05] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;hi guys, i've been working on a project. at this stage, I've got stuck and i really need help.&lt;/p&gt;&lt;p&gt;i've a tilelist component on my screen which has many entries (more than 10).&lt;/p&gt;&lt;p&gt;it displays only 3 items. i've created two buttons for scrolling. right button and left button.&lt;/p&gt;&lt;p&gt;------------- here i want something like this:&lt;/p&gt;&lt;p&gt;if right button is clicked, tilelist component will scroll to next 3 items.&lt;/p&gt;&lt;p&gt;likewise if left button is clicked, tilelist component will scroll to previous 3 items.&lt;/p&gt;&lt;p&gt;i know it can be done with tileList.scrollToIndex() command..&lt;/p&gt;&lt;p&gt;but the problem is, it directly switches to specified number while i want to scroll (tween)..&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i believe it is easy but can not figure it out... please help..&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;by the way i forgot to say, scrollBar policy is turned off.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:23ad2a82-5d0c-4d20-82a8-507eb9646a05] --&gt;</description>
      <pubDate>Sun, 13 Feb 2011 08:50:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/790875</guid>
      <dc:date>2011-02-13T08:50:14Z</dc:date>
      <clearspace:dateToText>3 years 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>simple but damn stuck - wait for the images to load</title>
      <link>https://forums.adobe.com/thread/735111</link>
      <description>&lt;!-- [DocumentBodyStart:97bb4bc3-9a01-4cc3-ac7f-1f9b370fa2dc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;i believe it is quite simple but i'm not able to do this. situation is something like this:&lt;br/&gt; &lt;br/&gt; function name123():void //i m already in a function.&lt;br/&gt; {&lt;br/&gt; ....&lt;br/&gt; var a:Loader = new Loader(); //define a loader&lt;br/&gt; var b:new URLRequest = new URLRequest(path to the image); //give the path&lt;br/&gt; a.load(b);&lt;br/&gt; a.contentLoaderInfo.addEventListener(Event.COMPLET&amp;nbsp; E, eventComplete);&lt;br/&gt; //now the codes after this line, i want them to run only after the above loading is finished. because if i'll type below codes, it will not work.&lt;br/&gt; a.width = 100;&lt;br/&gt; a.height = 100;&lt;br/&gt; }&lt;br/&gt; &lt;br/&gt; function eventComplete(e:Event):void&lt;br/&gt; {&lt;br/&gt; //codes&lt;br/&gt; }&lt;br/&gt; &lt;br/&gt; i know if i give set width and height in eventComplete function, i could do but the situation is different and i've to set the sizes in name123 function only. kindly help me out.. its been two days now...&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:97bb4bc3-9a01-4cc3-ac7f-1f9b370fa2dc] --&gt;</description>
      <pubDate>Thu, 07 Oct 2010 12:52:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/735111</guid>
      <dc:date>2010-10-07T12:52:26Z</dc:date>
      <clearspace:dateToText>4 years 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>13</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

