
{"id":1040,"date":"2009-08-12T09:00:53","date_gmt":"2009-08-12T08:00:53","guid":{"rendered":"http:\/\/www.matthijskamstra.nl\/blog\/?p=1040"},"modified":"2009-08-04T15:29:13","modified_gmt":"2009-08-04T14:29:13","slug":"my-first-air-app-swf2gif-banner-part-1","status":"publish","type":"post","link":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/","title":{"rendered":"My first AIR app: SWF2GIF-banner &#8211; part 1"},"content":{"rendered":"<p>Sometimes, and I&#8217;m not very fond of them, I need to make banners&#8230;..<br \/>\nThe animation part is not so bad, but making the different sizes&#8230;. that can be a drag.<br \/>\nAnd after you made the SWF banners, you also need to make the animation in GIF.<\/p>\n<p>This is how I use to do it: <\/p>\n<ol>\n<li>make the SWF banner<\/li>\n<li>embed it in a html page with a background color that is not in the banner itself (a border around the SWF banner helps)<\/li>\n<li>make snapshots of the animation<\/li>\n<li>open photoshop >> (I used a action for this part&#8230;.)<\/li>\n<li>place all the images in one document<\/li>\n<li>cut the browser from the screenshot<\/li>\n<li>select the background-color reverse the selection and cut<\/li>\n<li>make a animation from all the layers (end photoshop action)<\/li>\n<li>save<\/li>\n<\/ol>\n<p>I have never made an AIR application but I think that it should be possible to make a SWF2GIF converter in AIR.<\/p>\n<p>Stuff what I need to find out:<\/p>\n<ul>\n<li>browse for a file<\/li>\n<li>load that file into air<\/li>\n<li>take snapshots of the animation<\/li>\n<li>controle the frame rate of the animation<\/li>\n<li>make a animated gif <\/li>\n<li>save everything<\/li>\n<li>etc.<\/li>\n<\/ul>\n<p><strong>Lets start with some basic:<\/strong><br \/>\nI&#8217;m still working on CS3, and it seems that AIR default is installed with CS4<br \/>\nInstalling the Adobe AIR update for Flash CS3<\/p>\n<p>English: <a href=\"http:\/\/help.adobe.com\/en_US\/AIR\/1.5\/devappsflash\/WS5b3ccc516d4fbf351e63e3d118666ade46-7fc3.html\">http:\/\/help.adobe.com\/en_US\/AIR\/1.5\/devappsflash\/WS5b3ccc516d4fbf351e63e3d118666ade46-7fc3.html<\/a><br \/>\nDutch: <a href=\"http:\/\/help.adobe.com\/nl_NL\/AIR\/1.5\/devappsflash\/WS5b3ccc516d4fbf351e63e3d118666ade46-7fc3.html\">http:\/\/help.adobe.com\/nl_NL\/AIR\/1.5\/devappsflash\/WS5b3ccc516d4fbf351e63e3d118666ade46-7fc3.html<\/a><\/p>\n<p>You can also use FlashDevelop 3.0.1, AIR is also installed with that program and in combination with Flex sdk you don&#8217;t even need Flash.<\/p>\n<p>Because I&#8217;m not finished with it (I will only work on it when I have to build banners) I will post now and then some parts of the code.<\/p>\n<p>For some reason I couldn&#8217;t find the code to load SWF into AIR using &#8220;browse&#8221;.<\/p>\n<p>[as light=&#8221;false&#8221; wraplines=&#8221;true&#8221;]<br \/>\nprivate function openSwfFile(e:MouseEvent = null):void<br \/>\n{<br \/>\n\tvar imagesFilter:FileFilter = new FileFilter(&quot;Flash SWF&quot;, &quot;*.swf&quot;);<br \/>\n\tmyFile = new File();<br \/>\n\tmyFile.addEventListener(Event.SELECT, selectHandler);<br \/>\n\tmyFile.browseForOpen(&quot;Open&quot;, [imagesFilter]);<br \/>\n}<\/p>\n<p>private function selectHandler(event:Event):void<br \/>\n{<br \/>\n\tmyFile.removeEventListener(Event.SELECT, selectHandler);<br \/>\n\tloadSWF(myFile.url);<br \/>\n}<\/p>\n<p>private function loadSWF(inName:String):void<br \/>\n{<br \/>\n\ttrace( &quot;Main.loadSWF &gt; inName : &quot; + inName );<br \/>\n\tmLoader = new Loader();<br \/>\n\tmLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaderComplete);<br \/>\n\tmLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onErrorComplete);<br \/>\n\tmLoader.load(new URLRequest(inName));<br \/>\n}<br \/>\nprivate function onLoaderComplete(e:Event):void { startOnEnterFrameHandler(); }<br \/>\nprivate function onErrorComplete(e:IOErrorEvent):void { trace( &quot;Main.onErrorComplete &gt; e : &quot; + e ); }<\/p>\n<p>private function startOnEnterFrameHandler():void<br \/>\n{<br \/>\n\t_movie.addChild(mLoader);<br \/>\n\t\/\/ _movie.addEventListener(Event.ENTER_FRAME , onEnterFrameHandler);<br \/>\n}<br \/>\n[\/as]<br \/>\njust use a button to activate.<\/p>\n<p>I know the code is not complete&#8230; and that some classes have strange names&#8230; it&#8217;s work in progress.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes, and I&#8217;m not very fond of them, I need to make banners&#8230;.. The animation part is not so bad, but making the different sizes&#8230;. that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22,3],"tags":[296,398,159,297,193],"class_list":["post-1040","post","type-post","status-publish","format-standard","hentry","category-as3","category-flash","tag-animated-gif","tag-flash","tag-flashdevelop","tag-sdk","tag-swf"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Sometimes, and I&#039;m not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Matthijs Kamstra\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"[mck] | a polymath zapper\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"My first AIR app: SWF2GIF-banner \u2013 part 1 | [mck]\" \/>\n\t\t<meta property=\"og:description\" content=\"Sometimes, and I&#039;m not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2009-08-12T08:00:53+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2009-08-04T14:29:13+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"My first AIR app: SWF2GIF-banner \u2013 part 1 | [mck]\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Sometimes, and I&#039;m not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#article\",\"name\":\"My first AIR app: SWF2GIF-banner \\u2013 part 1 | [mck]\",\"headline\":\"My first AIR app: SWF2GIF-banner &#8211; part 1\",\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\"},\"datePublished\":\"2009-08-12T09:00:53+01:00\",\"dateModified\":\"2009-08-04T15:29:13+01:00\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#webpage\"},\"articleSection\":\"AS3, Flash, animated gif, Flash, flashdevelop, sdk, SWF\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"name\":\"Flash\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"position\":2,\"name\":\"Flash\",\"item\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/as3\\\/#listItem\",\"name\":\"AS3\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/as3\\\/#listItem\",\"position\":3,\"name\":\"AS3\",\"item\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/as3\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#listItem\",\"name\":\"My first AIR app: SWF2GIF-banner &#8211; part 1\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"name\":\"Flash\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#listItem\",\"position\":4,\"name\":\"My first AIR app: SWF2GIF-banner &#8211; part 1\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/as3\\\/#listItem\",\"name\":\"AS3\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\",\"name\":\"[mck]\",\"description\":\"a polymath zapper\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"Matthijs Kamstra\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/06ff22a1197b6624946e5a3377184f11ddc00ac06a6f1d2311b9d2072bdf61b1?s=96&d=wavatar&r=g\",\"width\":96,\"height\":96,\"caption\":\"Matthijs Kamstra\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#webpage\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/\",\"name\":\"My first AIR app: SWF2GIF-banner \\u2013 part 1 | [mck]\",\"description\":\"Sometimes, and I'm not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2009\\\/08\\\/12\\\/my-first-air-app-swf2gif-banner-part-1\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2009-08-12T09:00:53+01:00\",\"dateModified\":\"2009-08-04T15:29:13+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/\",\"name\":\"[mck]\",\"description\":\"a polymath zapper\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"My first AIR app: SWF2GIF-banner \u2013 part 1 | [mck]","description":"Sometimes, and I'm not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make","canonical_url":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#article","name":"My first AIR app: SWF2GIF-banner \u2013 part 1 | [mck]","headline":"My first AIR app: SWF2GIF-banner &#8211; part 1","author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization"},"datePublished":"2009-08-12T09:00:53+01:00","dateModified":"2009-08-04T15:29:13+01:00","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#webpage"},"isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#webpage"},"articleSection":"AS3, Flash, animated gif, Flash, flashdevelop, sdk, SWF"},{"@type":"BreadcrumbList","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.matthijskamstra.nl\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","name":"Flash"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","position":2,"name":"Flash","item":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/as3\/#listItem","name":"AS3"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/as3\/#listItem","position":3,"name":"AS3","item":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/as3\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#listItem","name":"My first AIR app: SWF2GIF-banner &#8211; part 1"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","name":"Flash"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#listItem","position":4,"name":"My first AIR app: SWF2GIF-banner &#8211; part 1","previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/as3\/#listItem","name":"AS3"}}]},{"@type":"Organization","@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization","name":"[mck]","description":"a polymath zapper","url":"https:\/\/www.matthijskamstra.nl\/blog\/"},{"@type":"Person","@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author","url":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/","name":"Matthijs Kamstra","image":{"@type":"ImageObject","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/06ff22a1197b6624946e5a3377184f11ddc00ac06a6f1d2311b9d2072bdf61b1?s=96&d=wavatar&r=g","width":96,"height":96,"caption":"Matthijs Kamstra"}},{"@type":"WebPage","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#webpage","url":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/","name":"My first AIR app: SWF2GIF-banner \u2013 part 1 | [mck]","description":"Sometimes, and I'm not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/#breadcrumblist"},"author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"datePublished":"2009-08-12T09:00:53+01:00","dateModified":"2009-08-04T15:29:13+01:00"},{"@type":"WebSite","@id":"https:\/\/www.matthijskamstra.nl\/blog\/#website","url":"https:\/\/www.matthijskamstra.nl\/blog\/","name":"[mck]","description":"a polymath zapper","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"[mck] | a polymath zapper","og:type":"article","og:title":"My first AIR app: SWF2GIF-banner \u2013 part 1 | [mck]","og:description":"Sometimes, and I'm not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make","og:url":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/","article:published_time":"2009-08-12T08:00:53+00:00","article:modified_time":"2009-08-04T14:29:13+00:00","twitter:card":"summary_large_image","twitter:title":"My first AIR app: SWF2GIF-banner \u2013 part 1 | [mck]","twitter:description":"Sometimes, and I'm not very fond of them, I need to make banners..... The animation part is not so bad, but making the different sizes.... that can be a drag. And after you made the SWF banners, you also need to make the animation in GIF. This is how I use to do it: make"},"aioseo_meta_data":{"post_id":"1040","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-12-11 08:57:32","updated":"2025-06-04 09:52:58","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.matthijskamstra.nl\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/\" title=\"Flash\">Flash<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/as3\/\" title=\"AS3\">AS3<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMy first AIR app: SWF2GIF-banner \u2013 part 1\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.matthijskamstra.nl\/blog"},{"label":"Flash","link":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/"},{"label":"AS3","link":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/as3\/"},{"label":"My first AIR app: SWF2GIF-banner &#8211; part 1","link":"https:\/\/www.matthijskamstra.nl\/blog\/2009\/08\/12\/my-first-air-app-swf2gif-banner-part-1\/"}],"_links":{"self":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/1040","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/comments?post=1040"}],"version-history":[{"count":7,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/1040\/revisions"}],"predecessor-version":[{"id":1100,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/1040\/revisions\/1100"}],"wp:attachment":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/media?parent=1040"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/categories?post=1040"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/tags?post=1040"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}