<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://blogs.forum.nokia.com/styles/rss.css" type="text/css"?>
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
>
 <channel>
  <title>Faisal Iqbal&#039;s Forum Nokia Blog</title>
  <link>http://blogs.forum.nokia.com/blog/faisal-iqbals-forum-nokia-blog</link>
  <description>&lt;p&gt;Mostly Flash Lite and PyS60 :)&lt;/p&gt;
</description>
  <pubDate>Tue, 24 Nov 2009 02:44:26 +0200</pubDate>
  <generator>http://www.lifetype.net</generator>
  <itunes:author>Forum Nokia</itunes:author>
  <itunes:category text="Technology">
    <itunes:category text="Tech News"/>
  </itunes:category>
  <itunes:image href="http://www.forum.nokia.com/piazza/blogs/imgs/forum_nokia_rss_logo.jpg"/>
    <item>
   <title>Enabling OTA (Over The Air) SIS installs from your mobile website</title>
   <description>
    &lt;p&gt;
I have posted another article on &lt;a href=&quot;http://wiki.forum.nokia.com&quot;&gt;FN.Wiki&lt;/a&gt;, where I show you how you can easily enable OTA SIS installation from your own mobile websites. You can &lt;a href=&quot;http://wiki.forum.nokia.com/index.php/How_to_enable_OTA_%28Over_The_Air%29_SIS_install_from_your_website&quot;&gt;read the article here&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
I have also uploaded the scripts along with article, which you can use without modification, or also can add more functionality to them.
&lt;/p&gt;
&lt;p&gt;
// chall3ng3r //
&lt;/p&gt;
   </description>
   <link>http://blogs.forum.nokia.com/blog/faisal-iqbals-forum-nokia-blog/2008/08/30/enabling-ota-over-the-air-sis-installs-from-your-mobile-website</link>
   <comments>http://blogs.forum.nokia.com/blog/faisal-iqbals-forum-nokia-blog/2008/08/30/enabling-ota-over-the-air-sis-installs-from-your-mobile-website</comments>
   <guid>http://blogs.forum.nokia.com/blog/faisal-iqbals-forum-nokia-blog/2008/08/30/enabling-ota-over-the-air-sis-installs-from-your-mobile-website</guid>
      <dc:creator>chall3ng3r</dc:creator>
      
    <category>General</category>
      
    <category>Browsing</category>
      
    <category>S60</category>
      
    <category>Tips&#039;n Tricks</category>
         <pubDate>Sat, 30 Aug 2008 22:37:30 +0200</pubDate>
   <itunes:author>Forum Nokia</itunes:author>
   <itunes:subtitle>Enabling OTA (Over The Air) SIS installs from your mobile website</itunes:subtitle>
   <source url="http://blogs.forum.nokia.com/rss.php?blogId=300010&amp;profile=rss20">Faisal Iqbal&#039;s Forum Nokia Blog</source>
     </item>
    <item>
   <title>Flash Lite: Effectively using gotoAndPlay &amp;amp; gotoAndStop</title>
   <description>
    &lt;p&gt;Hey all,&lt;/p&gt;&lt;p&gt;This is my first post regarding the Flash Lite tips&amp;#39;n tricks I am planning to share on this blog. So, lets get started.&lt;/p&gt;&lt;p&gt;As Flash Lite 1.1 supports pre-AS1 Flash 4 scripting syntax, the developer have to use tellTarget statement to access objects from deferent object.&lt;/p&gt;&lt;p&gt;For example if there are two objects on the stage, menu_mc and controller_mc. To perform a quick gotoAndPlay action from controller_mc to menu_mc, you might be using the following code:&lt;/p&gt;&lt;p&gt;&lt;code&gt;tellTarget(&amp;quot;../menu_mc&amp;quot;)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // play SlideUp&amp;nbsp;frame&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gotoAndPlay(&amp;quot;slideUp&amp;quot;);&lt;br /&gt;}&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;code&gt;&lt;/code&gt;While this works pretty well, but you can also do this via just a single gotoAndPlay call. gotoAndPlay and gotoAndStop also accepts paths, so you can simply pass the object path along with frame label or number to goto command. Like the same operation we did with tellTarget above can also be done as follows:&lt;/p&gt;&lt;p&gt;&lt;code&gt;// play SlideUp&amp;nbsp;frame&lt;br /&gt;gotoAndPlay(&amp;quot;../menu_mc:slideUp&amp;quot;);&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;code&gt;&lt;/code&gt;You can use relative paths as well as absolute paths with this approach.&lt;/p&gt;&lt;p&gt;This trick is quite useful when you have to do a quick goto action, but if you need to perform multiple actions, then you&amp;#39;re good to go with tellTarget.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Update: BTW, you can use the same trick with latest versions of Flash / Flash Lite.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Update: &lt;a href=&quot;http://www.scottjanousek.com/blog/&quot;&gt;Scott &lt;/a&gt;has posted&amp;nbsp;a nice&amp;nbsp;example use of this tip on his blog, &lt;/em&gt;&lt;a href=&quot;http://www.scottjanousek.com/blog/2008/02/20/evil-panda-example-of-gotoandplay-frame-label-tip-with-flash-lite-11/&quot;&gt;&lt;em&gt;check it out&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;Stay tuned for more!&lt;/p&gt;&lt;p&gt;// chall3ng3r //&lt;/p&gt;
   </description>
   <link>http://blogs.forum.nokia.com/blog/faisal-iqbals-forum-nokia-blog/2008/02/18/flash-lite-effectively-using-gotoandplay-gotoandstop</link>
   <comments>http://blogs.forum.nokia.com/blog/faisal-iqbals-forum-nokia-blog/2008/02/18/flash-lite-effectively-using-gotoandplay-gotoandstop</comments>
   <guid>http://blogs.forum.nokia.com/blog/faisal-iqbals-forum-nokia-blog/2008/02/18/flash-lite-effectively-using-gotoandplay-gotoandstop</guid>
      <dc:creator>chall3ng3r</dc:creator>
      
    <category>Flash</category>
      
    <category>Tips&#039;n Tricks</category>
         <pubDate>Mon, 18 Feb 2008 21:57:22 +0100</pubDate>
   <itunes:author>Forum Nokia</itunes:author>
   <itunes:subtitle>Flash Lite: Effectively using gotoAndPlay &amp;amp; gotoAndStop</itunes:subtitle>
   <source url="http://blogs.forum.nokia.com/rss.php?blogId=300010&amp;profile=rss20">Faisal Iqbal&#039;s Forum Nokia Blog</source>
     </item>
   </channel>
</rss>