
{"id":359,"date":"2007-09-22T08:31:11","date_gmt":"2007-09-22T07:31:11","guid":{"rendered":"http:\/\/www.matthijskamstra.nl\/blog\/index.php\/2007\/09\/24\/as3-take-one-step-at-a-time-step-1\/"},"modified":"2007-10-22T20:22:15","modified_gmt":"2007-10-22T19:22:15","slug":"as3-take-one-step-at-a-time-step-1","status":"publish","type":"post","link":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/","title":{"rendered":"AS3 &#8211; take one step at a time: step 1"},"content":{"rendered":"<p>I finally started programming with ActionScript 3 (AS3); I know, I <strong>not<\/strong> a early adopter&#8230; \ud83d\ude09<\/p>\n<p>And the first steps in AS3 are as uncomfortable as the first time I started <a href=\"http:\/\/en.wikipedia.org\/wiki\/Object-oriented_programming\" title='Wikipedia knows best' >OOP<\/a> programming &#8230; or when I started moved from AS1 to AS2&#8230;<\/p>\n<p>Since I started working for <a href=\"http:\/\/www.makesomenoise.nl\/\" title=\"Make some NOISE\" >NOISE<\/a> 5 months ago and moved to Amsterdam, I haven&#8217;t had time to do learn AS3.<br \/>\nThat luckily has changed \ud83d\ude42 and I started learning the basics.<\/p>\n<p>And the first obstacle I ran into was something very simple: I always use a basic document (FLA) with default library items, some layers I always use and some ActionScript code to align the stage:<br \/>\n<code><br \/>\n_root._quality = \"BEST\";<br \/>\nStage.scaleMode = \"noScale\";<br \/>\nStage.showMenu = false;<br \/>\nStage.align = \"TL\";<br \/>\nstop ();<br \/>\n<\/code><br \/>\nI have this also in a class (AS2), so I thought it would be useful to rewrite this class in AS3.<br \/>\nand I wanted to use this in my new as3 files too&#8230; (remember that this is the first thing a tried)<\/p>\n<p>First you need to create a document class:<\/p>\n<p><img decoding=\"async\" src=\"http:\/\/curtismorley.com\/wp-content\/uploads\/2007\/07\/documentclasspath.JPG\" alt=\"Document Class\" \/><br \/>\nAnd in my case my document class was: &#8216;Main&#8217;<\/p>\n<pre><code>\r\npackage  {\r\n\r\n\tpublic class Main {\r\n\t\t\r\n\t\tpublic function Main() {\r\n\t\t\ttrace ('Main')\t\t\t\r\n\t\t}\r\n\t\t\r\n\t}\r\n\t\r\n}\r\n<\/code><\/pre>\n<p>(package generated by FlashDevelop)<\/p>\n<p>Code didn&#8217;t pass; I got a Compiler Error:<br \/>\n<code>5000: The class 'Main' must subclass 'flash.display.MovieClip' since it is linked to a library symbol of that type.<\/code><\/p>\n<pre><code>\r\npackage  {\r\n\r\n\tpublic class Main extends MovieClip {\r\n\t\t\r\n\t\tpublic function Main() {\r\n\t\t\ttrace ('Main')\t\t\t\r\n\t\t}\r\n\t\t\r\n\t}\r\n\t\r\n}\r\n\r\n<\/code><\/pre>\n<p>I got some new errors:<\/p>\n<ol>\n<li>1017: The definition of base class MovieClip was not found.<\/li>\n<li>5000: The class &#8216;Main&#8217; must subclass &#8216;flash.display.MovieClip&#8217; since it is linked to a library symbol of that type.<\/li>\n<\/ol>\n<p>So I added <code>import flash.display.MovieClip;<\/code><\/p>\n<pre><code>\r\npackage  {\r\n\r\n\timport flash.display.MovieClip;\r\n\t\r\n\tpublic class Main extends MovieClip {\r\n\t\t\r\n\t\tpublic function Main() {\r\n\t\t\ttrace ('Main')\r\n\t\t}\r\n\t\t\r\n\t}\r\n\t\r\n}\r\n<\/code><\/pre>\n<p>Ahhh and now we can get the stage to work with my &#8216;old code&#8217;, let&#8217;s paste it into the new document:<\/p>\n<pre><code>\r\npackage  {\r\n\r\n\timport flash.display.MovieClip;\r\n\t\r\n\tpublic class Main extends MovieClip {\r\n\t\t\r\n\t\tpublic function Main() {\r\n\t\t\ttrace ('Main')\r\n\t\t\t_root._quality = \"BEST\";\r\n\t\t\tStage.scaleMode = \"noScale\";\r\n\t\t\tStage.showMenu = false;\r\n\t\t\tStage.align = \"TL\";\r\n\t\t\t\r\n\t\t}\r\n\t\t\r\n\t}\r\n\t\r\n}\r\n<\/code><\/pre>\n<p>Auw: both _root and Stage doesn&#8217;t excited no more: I got an <em>migration error<\/em><\/p>\n<pre><code>\r\npackage  {\r\n\r\n\timport flash.display.MovieClip;\t\r\n\timport flash.display.Stage;\r\n\timport flash.display.StageQuality;\r\n\t\r\n\tpublic class Main extends MovieClip {\r\n\t\t\r\n\t\tpublic function Main() {\r\n\t\t\ttrace ('Main')\r\n\t\t\tstage.quality = StageQuality.BEST;\r\n\t\t\tstage.scaleMode = \"noScale\";\r\n\t\t\tstage.showDefaultContextMenu = false;\r\n\t\t\tstage.align = \"TL\";\r\n\t\t}\r\n\t\t\r\n\t}\r\n\t\r\n}\r\n<\/code><\/pre>\n<p>And at last it works&#8230;<br \/>\nThe only thing now to do, is to put it in the correct package.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter&#8230; \ud83d\ude09 And the first steps in AS3 are as uncomfortable as the first time I started OOP programming &#8230; or when I started moved from AS1 to AS2&#8230; Since I started working for NOISE 5 months ago and moved to [&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":[68,39,97,408,398,114,168],"class_list":["post-359","post","type-post","status-publish","format-standard","hentry","category-as3","category-flash","tag-actionscript","tag-as2","tag-as2-to-as3","tag-as3","tag-flash","tag-from-as2-to-as3","tag-migration"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to\" \/>\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\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\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=\"AS3 \u2013 take one step at a time: step 1 | [mck]\" \/>\n\t\t<meta property=\"og:description\" content=\"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2007-09-22T07:31:11+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2007-10-22T19:22:15+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"AS3 \u2013 take one step at a time: step 1 | [mck]\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to\" \/>\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\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#article\",\"name\":\"AS3 \\u2013 take one step at a time: step 1 | [mck]\",\"headline\":\"AS3 &#8211; take one step at a time: step 1\",\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/curtismorley.com\\\/wp-content\\\/uploads\\\/2007\\\/07\\\/documentclasspath.JPG\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#articleImage\"},\"datePublished\":\"2007-09-22T08:31:11+01:00\",\"dateModified\":\"2007-10-22T20:22:15+01:00\",\"inLanguage\":\"en-US\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#webpage\"},\"articleSection\":\"AS3, Flash, Actionscript, AS2, AS2 to AS3, AS3, Flash, from AS2 to AS3, migration\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-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\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#listItem\",\"name\":\"AS3 &#8211; take one step at a time: step 1\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"name\":\"Flash\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#listItem\",\"position\":4,\"name\":\"AS3 &#8211; take one step at a time: step 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\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-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\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#webpage\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/\",\"name\":\"AS3 \\u2013 take one step at a time: step 1 | [mck]\",\"description\":\"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/09\\\/22\\\/as3-take-one-step-at-a-time-step-1\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2007-09-22T08:31:11+01:00\",\"dateModified\":\"2007-10-22T20:22:15+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":"AS3 \u2013 take one step at a time: step 1 | [mck]","description":"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to","canonical_url":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#article","name":"AS3 \u2013 take one step at a time: step 1 | [mck]","headline":"AS3 &#8211; take one step at a time: step 1","author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/curtismorley.com\/wp-content\/uploads\/2007\/07\/documentclasspath.JPG","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#articleImage"},"datePublished":"2007-09-22T08:31:11+01:00","dateModified":"2007-10-22T20:22:15+01:00","inLanguage":"en-US","commentCount":4,"mainEntityOfPage":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#webpage"},"isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#webpage"},"articleSection":"AS3, Flash, Actionscript, AS2, AS2 to AS3, AS3, Flash, from AS2 to AS3, migration"},{"@type":"BreadcrumbList","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-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\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#listItem","name":"AS3 &#8211; take one step at a time: step 1"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","name":"Flash"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#listItem","position":4,"name":"AS3 &#8211; take one step at a time: step 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\/2007\/09\/22\/as3-take-one-step-at-a-time-step-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\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#webpage","url":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/","name":"AS3 \u2013 take one step at a time: step 1 | [mck]","description":"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/#breadcrumblist"},"author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"datePublished":"2007-09-22T08:31:11+01:00","dateModified":"2007-10-22T20:22:15+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":"AS3 \u2013 take one step at a time: step 1 | [mck]","og:description":"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to","og:url":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/","article:published_time":"2007-09-22T07:31:11+00:00","article:modified_time":"2007-10-22T19:22:15+00:00","twitter:card":"summary_large_image","twitter:title":"AS3 \u2013 take one step at a time: step 1 | [mck]","twitter:description":"I finally started programming with ActionScript 3 (AS3); I know, I not a early adopter... ;) And the first steps in AS3 are as uncomfortable as the first time I started OOP programming ... or when I started moved from AS1 to AS2... Since I started working for NOISE 5 months ago and moved to"},"aioseo_meta_data":{"post_id":"359","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 09:02:55","updated":"2025-06-04 08:36:28","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\tAS3 \u2013 take one step at a time: step 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":"AS3 &#8211; take one step at a time: step 1","link":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/09\/22\/as3-take-one-step-at-a-time-step-1\/"}],"_links":{"self":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/359","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=359"}],"version-history":[{"count":0,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/359\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/media?parent=359"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/categories?post=359"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/tags?post=359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}