<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8871614746896815078</id><updated>2011-08-01T13:43:28.409-07:00</updated><category term='flash tracer'/><category term='flash'/><category term='sharpness'/><category term='AS2vsAS3'/><category term='AS3 errors'/><category term='tools'/><category term='bugs'/><category term='mac'/><category term='AS3'/><category term='forms'/><category term='fonts'/><category term='flash help file system locations'/><category term='AS3 stage'/><category term='AS3 TweenLite'/><title type='text'>actionscript code dump</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>13</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-1192303589614394501</id><published>2008-02-20T06:40:00.000-08:00</published><updated>2008-02-20T06:41:58.267-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AS3'/><title type='text'>AS3 cheat sheet</title><content type='html'>Found a nice cheat sheet for migration from AS2 to AS3:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.actionscriptcheatsheet.com/downloads/as3cs_migration.pdf"&gt;http://www.actionscriptcheatsheet.com/downloads/as3cs_migration.pdf&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-1192303589614394501?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/1192303589614394501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=1192303589614394501' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/1192303589614394501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/1192303589614394501'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2008/02/as3-cheat-sheet.html' title='AS3 cheat sheet'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-1658977562581843626</id><published>2008-02-19T14:32:00.000-08:00</published><updated>2008-02-25T11:19:57.246-08:00</updated><title type='text'>AS3 -AttachMovieClip is no more!!</title><content type='html'>yea, it always sounded old, AS3 works without it. A common way of including an graphical object to the stage follows. I include a way of embedding an image straight away:&lt;br /&gt;&lt;div class="code"&gt;&lt;pre&gt;&lt;br /&gt;package {&lt;br /&gt;   import flash.display.MovieClip;&lt;br /&gt;   import flash.display.StageAlign;&lt;br /&gt;   import flash.display.StageScaleMode;&lt;br /&gt;   public class Test extends MovieClip {&lt;br /&gt;      // be sure this is pointing to an image in your hardrive&lt;br /&gt;      [Embed(source='\images\whatsup.jpg')] public var MyImage:Class;&lt;br /&gt;      public function Test() {&lt;br /&gt;         stage.align     = StageAlign.TOP_LEFT;&lt;br /&gt;         stage.scaleMode = StageScaleMode.NO_SCALE;&lt;br /&gt;         var img:MyImage = new MyImage();&lt;br /&gt;         addChild(img);&lt;br /&gt;      }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt; &lt;br /&gt;Just attaching a symbol from the Library to the stage here:&lt;br /&gt;&lt;div class="code"&gt;&lt;pre&gt;&lt;br /&gt;package {&lt;br /&gt;   import flash.display.MovieClip;&lt;br /&gt;   public class Test extends MovieClip {&lt;br /&gt;      public var MyLibrarySymbol:MovieClip;&lt;br /&gt;      public function Test() {&lt;br /&gt;         var mc:MyLibrarySymbol= new MyLibrarySymbol();&lt;br /&gt;         addChild(mc);&lt;br /&gt;      }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-1658977562581843626?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/1658977562581843626/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=1658977562581843626' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/1658977562581843626'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/1658977562581843626'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2008/02/as-attachmovieclip-is-no-more.html' title='AS3 -AttachMovieClip is no more!!'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-5836872178728353169</id><published>2008-02-17T07:36:00.000-08:00</published><updated>2008-02-17T08:04:57.323-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AS3 stage'/><title type='text'>The Stage Object in a Flash CS3 Movie</title><content type='html'>the stage is treated as an Object in AS3. Here a small collection of articles on the oddities and possibilities of working with the stage object in AS3.&lt;br /&gt;The first article shows the different ways of referencing the stage and it's children.&lt;br /&gt;&lt;br /&gt;Basically here the short list of queries to have some information of the stage and it's children:&lt;br /&gt;&lt;div class="code"&gt;&lt;pre&gt;&lt;br /&gt;trace("Number of children of the Stage: ");&lt;br /&gt;trace(stage.numChildren);&lt;br /&gt;&lt;br /&gt;trace("What are children of Stage: ");&lt;br /&gt;trace(stage.getChildAt(0));&lt;br /&gt;&lt;br /&gt;trace("What does the keyword this refer to? ");&lt;br /&gt;trace(this);&lt;br /&gt;&lt;br /&gt;trace("Number of children of MainTimeline: ");&lt;br /&gt;trace(this.numChildren);&lt;br /&gt;&lt;br /&gt;trace("Are this.stage and stage the same? ");&lt;br /&gt;trace(this.stage == stage);&lt;br /&gt;&lt;br /&gt;trace("How many children does this.stage have? ");&lt;br /&gt;trace(this.stage.numChildren);&lt;br /&gt;&lt;br /&gt;trace("What are the children of this.stage? ");&lt;br /&gt;trace(this.stage.getChild(0));&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;a href="http://www.flashandmath.com/intermediate/children/stage.html"&gt;http://www.flashandmath.com/intermediate/children/stage.html&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;the good collection of senocular classes includes a custom stageDetection class:&lt;br /&gt;&lt;a href="http://www.senocular.com/flash/actionscript.php?file=ActionScript_3.0/com/senocular/events/StageDetection.as"&gt;&lt;br /&gt;http://www.senocular.com/flash/actionscript.php?file=ActionScript_3.0/com/senocular/events/StageDetection.as&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-5836872178728353169?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/5836872178728353169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=5836872178728353169' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/5836872178728353169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/5836872178728353169'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2008/02/stage-object-in-flash-cs3-movie.html' title='The Stage Object in a Flash CS3 Movie'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-6512470570863209165</id><published>2008-02-06T09:46:00.000-08:00</published><updated>2008-02-06T10:00:24.269-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AS3 TweenLite'/><title type='text'>A Lightweight (2K) and FAST Tweening Engine in AS3: TweenLite</title><content type='html'>While we a re still waiting for Zigo/Fuse to update their engine, I started using TweenLite, and really start liking it.&lt;br /&gt;&lt;a href="http://blog.greensock.com/tweenliteas3/"&gt;http://blog.greensock.com/tweenliteas3/&lt;/a&gt;&lt;br /&gt;It is light (2kB), and fast, does rely on flashes built in easing classes though. It is rather basic, but useful for almost all purposes.&lt;br /&gt;here a simple example, of a sequenced animation with :&lt;br /&gt;&lt;div class="code"&gt;&lt;pre&gt;&lt;br /&gt;  import gs.TweenLite;&lt;br /&gt;  import fl.motion.easing.Elastic;&lt;br /&gt;  TweenLite.to(mc_my, 0.8, {x:120, y:143,ease:Elastic.easeOut,delay:2,onComplete:onFinishTween, onCompleteParams:[5, mc_my],overwrite:false});&lt;br /&gt;  private function onFinishTween(Num,target_mc){&lt;br /&gt;    trace("tween finished "+target_mc&lt;br /&gt;  }&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-6512470570863209165?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/6512470570863209165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=6512470570863209165' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/6512470570863209165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/6512470570863209165'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2008/02/lightweight-2k-and-fast-tweening-engine.html' title='A Lightweight (2K) and FAST Tweening Engine in AS3: TweenLite'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-5443740971453265928</id><published>2008-02-06T09:26:00.000-08:00</published><updated>2008-02-06T09:44:26.646-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AS2vsAS3'/><category scheme='http://www.blogger.com/atom/ns#' term='AS3'/><title type='text'>onEnterFrame in AS3</title><content type='html'>&lt;p&gt;the old 'onEnterFrame' syntax has been removed in AS3 It seems everything has to be handled by the eventListener. Here's a simple&lt;br /&gt;&lt;/p&gt;&lt;div class="code"&gt;&lt;pre&gt;&lt;br /&gt;import flash.events.Event;&lt;br /&gt;addEventListener(Event.ENTER_FRAME, dosmthng);&lt;br /&gt;//&lt;br /&gt;private function dosmthng(Event){&lt;br /&gt;    trace("smthng"+Event)//output:smthng[Event type="enterFrame" bubbles=false ...&lt;br /&gt;}&lt;/pre&gt;&lt;/div&gt;&lt;div class="entry"&gt;&lt;p&gt;and to remove it? Well, it’s a listener so you have to remove the Event Listener with :&lt;/p&gt; &lt;div class="code"&gt;&lt;pre&gt;removeEventListener(Event.ENTER_FRAME,funcToCall)&lt;/pre&gt;&lt;/div&gt; &lt;br /&gt;&lt;p&gt;Besides ENTER_FRAME we have other Public Constants to use:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;ACTIVATE&lt;/li&gt;&lt;li&gt;ADDED&lt;/li&gt;&lt;li&gt;ADDED_TO_STAGE&lt;/li&gt;&lt;li&gt;CANCEL&lt;/li&gt;&lt;li&gt;CHANGE&lt;/li&gt;&lt;li&gt;CLOSE&lt;/li&gt;&lt;li&gt;COMPLETE&lt;/li&gt;&lt;li&gt;CONNECT&lt;/li&gt;&lt;li&gt;DEACTIVATE&lt;/li&gt;&lt;li&gt;ENTER_FRAME&lt;/li&gt;&lt;li&gt;FULLSCREEN&lt;/li&gt;&lt;li&gt;ID3&lt;/li&gt;&lt;li&gt;INIT&lt;/li&gt;&lt;li&gt;MOUSE_LEAVE&lt;/li&gt;&lt;li&gt;OPEN&lt;/li&gt;&lt;li&gt;REMOVED&lt;/li&gt;&lt;li&gt;REMOVED_FROM_STAGE&lt;/li&gt;&lt;li&gt;RENDER&lt;/li&gt;&lt;li&gt;RESIZE&lt;/li&gt;&lt;li&gt;SCROLL&lt;/li&gt;&lt;li&gt;SELECT&lt;/li&gt;&lt;li&gt;SOUND_COMPLETE&lt;/li&gt;&lt;li&gt;TAB_CHILDREN_CHANGE&lt;/li&gt;&lt;li&gt;TAB_ENABLED_CHANGE&lt;/li&gt;&lt;li&gt;TAB_INDEX_CHANGE&lt;/li&gt;&lt;li&gt;UNLOAD&lt;/li&gt;&lt;/ul&gt;     &lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-5443740971453265928?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/5443740971453265928/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=5443740971453265928' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/5443740971453265928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/5443740971453265928'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2008/02/onenterframe-in-as3.html' title='onEnterFrame in AS3'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-4223969088060538402</id><published>2008-02-06T07:40:00.000-08:00</published><updated>2008-02-06T07:43:29.811-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AS3 errors'/><title type='text'>Flash ReferenceError: Error #1065: Variable Application is not defined.</title><content type='html'>If you are receiving this error when publishing your flash as3 swf it is because you need to declare your class as public. Private classes can not be used as &lt;span style="font-weight: bold;"&gt;document classes&lt;/span&gt; because they are out of the class package and therefore are not a part of the private scope. &lt;p&gt;I’ve seen a bunch of people with this problem so I hope this helps. (courtesy of http://optimastudios.com)&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-4223969088060538402?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/4223969088060538402/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=4223969088060538402' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/4223969088060538402'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/4223969088060538402'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2008/02/flash-referenceerror-error-1065.html' title='Flash ReferenceError: Error #1065: Variable Application is not defined.'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-6872126978654766867</id><published>2008-02-06T06:44:00.000-08:00</published><updated>2008-02-17T08:20:52.158-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AS3 stage'/><title type='text'>AS3 stage properties</title><content type='html'>getting the Stage Properties in AS3 has changed.&lt;br /&gt;Just use &lt;span class="code"&gt;stage.stageWidth&lt;/span&gt; and &lt;span class="code"&gt;stage.stageHeight&lt;/span&gt; ..NOT &lt;span class="code"&gt;Stage.width &lt;/span&gt;and &lt;span class="code"&gt;Stage.height &lt;/span&gt;!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-6872126978654766867?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/6872126978654766867/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=6872126978654766867' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/6872126978654766867'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/6872126978654766867'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2008/02/as2-vs-as3.html' title='AS3 stage properties'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-339548473162422394</id><published>2007-11-02T12:10:00.000-07:00</published><updated>2007-11-02T12:14:22.068-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='flash help file system locations'/><title type='text'>flash cs3 help file location in windows XP</title><content type='html'>&lt;span style="font-family:verdana;"&gt;For linking the Sepy's help to flash cs3 help files, the location for &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;windows XP:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;C:\Document and Settings\All Users\Application Data\Adobe\Flash CS3\&lt;lang&gt;\Configuration\HelpPanel\Help\&lt;/lang&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;windowsVista:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;C:\ProgramData\Adobe\Flash CS3\&lt;lang&gt;\Configuration\HelpPanel\Help\&lt;/lang&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Mac: HD:/Library/Application Support/Adobe/Flash CS3/&lt;lang&gt;/Configuration/HelpPanel/Help/&lt;/lang&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-339548473162422394?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/339548473162422394/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=339548473162422394' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/339548473162422394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/339548473162422394'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2007/11/flash-cs3-help-file-location-in-windows.html' title='flash cs3 help file location in windows XP'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-4963203474915471118</id><published>2007-08-07T07:54:00.000-07:00</published><updated>2007-11-08T07:48:03.812-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sharpness'/><category scheme='http://www.blogger.com/atom/ns#' term='fonts'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><title type='text'>make text legible and sharp</title><content type='html'>Flash tends to lose it's sharpness when it comes to fonts. Althought they look perfectly sharp within the IDE, the published movies often are not that sharp anymore.&lt;br /&gt;&lt;br /&gt;There are a few simple rules or workarounds to maintain the sharpness.&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;odd values for font sizes (9,11,13,15) cannot be scaled as well. use font sizes of even values.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;defining the font as dynamic gives better quality, but don't forget to embed the appropriate fonts in the properties Bar&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-4963203474915471118?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/4963203474915471118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=4963203474915471118' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/4963203474915471118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/4963203474915471118'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2007/08/make-text-legible-and-sharp.html' title='make text legible and sharp'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-7099165891831260476</id><published>2007-08-06T09:02:00.000-07:00</published><updated>2007-11-08T07:49:06.530-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bugs'/><category scheme='http://www.blogger.com/atom/ns#' term='forms'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><title type='text'>wmode @ key flash bug</title><content type='html'>I often encountered the problem that some of my flash files did not accept the @ symbol in forms. I had to use the US keyboard @-sign location to add it. this issue only seemed to be on PC, as macs did not have that issue.&lt;br /&gt;The reason for this seems to come up as soon as you publish your movie in wmode( transparent window mode), then the movie only can accept US keyboard-key locations.&lt;br /&gt;&lt;br /&gt;more here:&lt;a href="http://blog.headlondon.com/archives/no-wmode-please-were-british/"&gt;&lt;br /&gt;http://blog.headlondon.com/archives/no-wmode-please-were-british/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;One Workasround could be:&lt;br /&gt;&lt;div class="code"&gt;&lt;pre&gt;&lt;br /&gt;keyPresser = new Object();&lt;br /&gt;keyPresser.onChanged = function(in&lt;em&gt;txt:TextField) {&lt;br /&gt;  if (34 == ((Key.getAscii())) || 64 == ((Key.getAscii()))) {&lt;br /&gt;      in&lt;/em&gt;txt.text = in&lt;em&gt;txt.text.slice(0,in&lt;/em&gt;txt.text.length-1) +”@”;&lt;br /&gt;   }&lt;br /&gt;};&lt;br /&gt;Key.addListener(keyListener);&lt;br /&gt;input_txt.addListener(keyPresser);&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-7099165891831260476?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/7099165891831260476/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=7099165891831260476' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/7099165891831260476'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/7099165891831260476'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2007/08/wmode-key-flash-bug.html' title='wmode @ key flash bug'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-155768320442606278</id><published>2007-08-06T08:46:00.000-07:00</published><updated>2007-11-08T07:49:51.105-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bugs'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><title type='text'>FileReference onComplete is not fired on Mac OS</title><content type='html'>onComplete not fired on Mac OS.&lt;br /&gt;from what I could research on the internet, this issue seems still not have been resolved in flash player 9. partial solutions &lt;a href="http://www.abdulqabiz.com/blog/archives/flash_and_actionscript/workaround_file_1.php"&gt;given here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;but further research in progress.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-155768320442606278?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/155768320442606278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=155768320442606278' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/155768320442606278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/155768320442606278'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2007/08/filereference-oncomplete-is-not-fired.html' title='FileReference onComplete is not fired on Mac OS'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-6114673485743340132</id><published>2007-07-05T11:56:00.000-07:00</published><updated>2007-11-08T07:46:37.319-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tools'/><category scheme='http://www.blogger.com/atom/ns#' term='flash tracer'/><title type='text'>firefox flash tracer plugin</title><content type='html'>For Windows Vista these logfiles will normally be located in C:\Users\{Your User Name}\AppData\Roaming\Macromedia\Flash Player\Logs\flashlog.txt&lt;br /&gt;&lt;br /&gt;The directory shows up once you installed the debug player.&lt;br /&gt;further:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; you do need the debug version of the flash player for the tracer to work.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;I have observed quite a difference in performance with the tracer enabled, please share your experiences.&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-6114673485743340132?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/6114673485743340132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=6114673485743340132' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/6114673485743340132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/6114673485743340132'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2007/07/firefox-flash-tracer-plugin.html' title='firefox flash tracer plugin'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8871614746896815078.post-7663282140733374044</id><published>2007-06-26T10:55:00.000-07:00</published><updated>2007-06-26T11:10:39.782-07:00</updated><title type='text'>default dynamic text with scrollBar</title><content type='html'>I am trying to give an easy example of one of the many possibilities to have a dynamic text field with content fed from an external text file, being controlled by a self made scrollbar.&lt;br /&gt;&lt;br /&gt;1. create your text file. I decided to go for a very simple html format.&lt;br /&gt;&lt;br /&gt;2.open your flash movie, create a textfield on the stage.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8871614746896815078-7663282140733374044?l=flashmonk.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://flashmonk.blogspot.com/feeds/7663282140733374044/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8871614746896815078&amp;postID=7663282140733374044' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/7663282140733374044'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8871614746896815078/posts/default/7663282140733374044'/><link rel='alternate' type='text/html' href='http://flashmonk.blogspot.com/2007/06/default-dynamic-text-with-scrollbar.html' title='default dynamic text with scrollBar'/><author><name>flashmonk</name><uri>http://www.blogger.com/profile/06035894119727303473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
