
{"id":473,"date":"2008-09-03T10:00:14","date_gmt":"2008-09-03T09:00:14","guid":{"rendered":"http:\/\/www.matthijskamstra.nl\/blog\/?p=473"},"modified":"2008-09-02T10:55:51","modified_gmt":"2008-09-02T09:55:51","slug":"from-as2-to-as3-where-did-it-go-attachsound","status":"publish","type":"post","link":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/","title":{"rendered":"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound"},"content":{"rendered":"<p>Where did <code>attachSound<\/code> go in AS3?<\/p>\n<p>It&#8217;s almost the same as attachMovie (I already covered attachMovie: <a href=\"http:\/\/www.matthijskamstra.nl\/blog\/index.php\/2008\/07\/30\/from-as2-to-as3-where-did-it-go-attachmovie\/\">read attachMovie post<\/a>)<\/p>\n<p>I was never very good in sound, and I didn&#8217;t use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its done in AS3&#8230;<\/p>\n<p>This post is only handy when you link sound from the library, both AS2 and AS3. Dynamically loaded sound (MP3) is another story. <\/p>\n<p>What has the <a href=\"http:\/\/livedocs.adobe.com\/flex\/2\/langref\/migration.html\">ActionScript 2.0 Migration<\/a> to say about this subject:<\/p>\n<table width='95%' border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\n<tr style='background-color:silver'>\n<td><strong>ActionScript&nbsp;2.0&nbsp;<\/strong><\/td>\n<td><strong>ActionScript&nbsp;3.0&nbsp;<\/strong><\/td>\n<td><strong>Comments<\/strong><\/td>\n<\/tr>\n<tr style='background-color:#F5F5F5'>\n<td>attachSound() Method <\/td>\n<td>Removed<\/td>\n<td>Create an instance of a Sound subclass that is associated with sound data; for example, by using new Sound() instead.<\/td>\n<\/tr>\n<\/table>\n<p>And I say again: Removed&#8230; wtf?  \ud83d\ude09<\/p>\n<p>In AS2 it will work like this:<\/p>\n<p><!--more--><\/p>\n<h3>AS2<\/h3>\n<p>this is code directly from the Flash Help files:<\/p>\n<blockquote><p>The following example attaches the sound logoff_id to my_sound. A sound in the library has the linkage identifier logoff_id. <\/p><\/blockquote>\n<p><em>For this example you need a sound in the library (<em>right-click<\/em> >> Linkage&#8230; >> activate &#8216;Export for ActionScript&#8217;) with the Indentifier &#8216;<code>logoff_id<\/code>&#8216; and this AS2 code placed in the root<\/em><\/p>\n<p><b>example #1<\/b><br \/>\n[as]\/\/ #1<br \/>\nvar my_sound:Sound = new Sound();<br \/>\nmy_sound.attachSound(&#8220;logoff_id&#8221;);<br \/>\nmy_sound.start();<br \/>\n[\/as]<\/p>\n<p>Oke, now in AS3:<\/p>\n<h3>AS3<\/h3>\n<p>For consistency I&#8217;m using the same names\/linkage.<br \/>\n<em>For this example you need a sound in the library (<em>right-click<\/em> >> Linkage&#8230; >> activate &#8216;Export for ActionScript&#8217;) with the Indentifier &#8216;<code>logoff_id<\/code>&#8216; and this AS2 code placed in the root<\/em><\/p>\n<p><b>example #1<\/b><br \/>\n[as]\/\/ #1<br \/>\nvar my_sound:logoff_id = new logoff_id();<br \/>\nvar channel:SoundChannel = my_sound.play();<br \/>\n[\/as]<\/p>\n<p>I hope this will clear up some issues you have, happy coding \ud83d\ude09 <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Where did attachSound go in AS3? It&#8217;s almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn&#8217;t use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its [&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,172,3],"tags":[68,39,97,408,114,168],"class_list":["post-473","post","type-post","status-publish","format-standard","hentry","category-as3","category-as3-migration","category-flash","tag-actionscript","tag-as2","tag-as2-to-as3","tag-as3","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=\"Where did attachSound go in AS3? It&#039;s almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn&#039;t use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its\" \/>\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\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/\" \/>\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=\"From AS2 to AS3 \u2013 Where did it go \u2013 attachSound | [mck]\" \/>\n\t\t<meta property=\"og:description\" content=\"Where did attachSound go in AS3? It&#039;s almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn&#039;t use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2008-09-03T09:00:14+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2008-09-02T09:55:51+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"From AS2 to AS3 \u2013 Where did it go \u2013 attachSound | [mck]\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Where did attachSound go in AS3? It&#039;s almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn&#039;t use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its\" \/>\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\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#article\",\"name\":\"From AS2 to AS3 \\u2013 Where did it go \\u2013 attachSound | [mck]\",\"headline\":\"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound\",\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\"},\"datePublished\":\"2008-09-03T10:00:14+01:00\",\"dateModified\":\"2008-09-02T10:55:51+01:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#webpage\"},\"articleSection\":\"AS3, AS3 migration, Flash, Actionscript, AS2, AS2 to AS3, AS3, from AS2 to AS3, migration\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#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\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#listItem\",\"name\":\"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"name\":\"Flash\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#listItem\",\"position\":4,\"name\":\"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound\",\"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\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#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\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#webpage\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/\",\"name\":\"From AS2 to AS3 \\u2013 Where did it go \\u2013 attachSound | [mck]\",\"description\":\"Where did attachSound go in AS3? It's almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn't use it a lot in my applications\\\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2008\\\/09\\\/03\\\/from-as2-to-as3-where-did-it-go-attachsound\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2008-09-03T10:00:14+01:00\",\"dateModified\":\"2008-09-02T10:55:51+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":"From AS2 to AS3 \u2013 Where did it go \u2013 attachSound | [mck]","description":"Where did attachSound go in AS3? It's almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn't use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its","canonical_url":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#article","name":"From AS2 to AS3 \u2013 Where did it go \u2013 attachSound | [mck]","headline":"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound","author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization"},"datePublished":"2008-09-03T10:00:14+01:00","dateModified":"2008-09-02T10:55:51+01:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#webpage"},"isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#webpage"},"articleSection":"AS3, AS3 migration, Flash, Actionscript, AS2, AS2 to AS3, AS3, from AS2 to AS3, migration"},{"@type":"BreadcrumbList","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#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\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#listItem","name":"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","name":"Flash"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#listItem","position":4,"name":"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound","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\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#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\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#webpage","url":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/","name":"From AS2 to AS3 \u2013 Where did it go \u2013 attachSound | [mck]","description":"Where did attachSound go in AS3? It's almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn't use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/#breadcrumblist"},"author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"datePublished":"2008-09-03T10:00:14+01:00","dateModified":"2008-09-02T10:55:51+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":"From AS2 to AS3 \u2013 Where did it go \u2013 attachSound | [mck]","og:description":"Where did attachSound go in AS3? It's almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn't use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its","og:url":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/","article:published_time":"2008-09-03T09:00:14+00:00","article:modified_time":"2008-09-02T09:55:51+00:00","twitter:card":"summary_large_image","twitter:title":"From AS2 to AS3 \u2013 Where did it go \u2013 attachSound | [mck]","twitter:description":"Where did attachSound go in AS3? It's almost the same as attachMovie (I already covered attachMovie: read attachMovie post) I was never very good in sound, and I didn't use it a lot in my applications\/animations. That changed with my new job. But for the people that remember attachSound in AS2, this is how its"},"aioseo_meta_data":{"post_id":"473","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:01:31","updated":"2025-06-04 09:14:12","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\tFrom AS2 to AS3 \u2013 Where did it go \u2013 attachSound\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":"From AS2 to AS3 &#8211; Where did it go &#8211; attachSound","link":"https:\/\/www.matthijskamstra.nl\/blog\/2008\/09\/03\/from-as2-to-as3-where-did-it-go-attachsound\/"}],"_links":{"self":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/473","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=473"}],"version-history":[{"count":2,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/473\/revisions"}],"predecessor-version":[{"id":477,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/473\/revisions\/477"}],"wp:attachment":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/media?parent=473"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/categories?post=473"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/tags?post=473"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}