<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for The Blog</title>
	<atom:link href="http://www.ovidiudiac.ro/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ovidiudiac.ro/blog</link>
	<description>Ovidiu Diac's Blog</description>
	<lastBuildDate>Tue, 03 Aug 2010 22:16:22 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on scale9Grid &#8211; When it works and when it does not by admin</title>
		<link>http://www.ovidiudiac.ro/blog/2009/05/scale9grid-work-and-fail/comment-page-1/#comment-694</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 03 Aug 2010 22:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=301#comment-694</guid>
		<description>You are right about one thing: the vector drawings drawn in the editor are not stored in the graphics object that you can manipulate with as. That&#039;s just to keep the graphics &quot;safe&quot;. But you can still apply successfully scale9Grid in code to a movieclip created and draw in IDE, as long as you follow the guidelines: make sure all drawing is directly inside the movieclip and not inside any other child, the movieclip shouldn&#039;t contain children (or if contains be even more careful and still apply scale9Grid to only the graphics object, the children won&#039;t be affected by the scale9Grid setting on their parent)..
The movieclip will even resize correctly if you put drawings on more keyframes. - in the zip file, check scale9GridEx1 for example

You can also apply successfully scale9Grid to loaded content (actually this is how Flex is setting scale9Grid to skins created in flash), but you must make sure to not apply scale9Grid to the Loader object but rather to the actual content, and make sure the graphics are actually drawn on the stage of the loaded swf, and not in any other symbol that is placed on the stage (or you can draw in other symbols but you then have to apply scale9Grid to those) - in the zip file, check scale9GridEx2 for how the swf is loaded and applied scale9Grid, and check scale9GridLoading to see how the loading swf is drawn - very simple actually

&lt;a href=&quot;http://ovidiudiac.ro/scale9GridEx.zip&quot; rel=&quot;nofollow&quot;&gt;scale9GridEx.zip&lt;/a&gt; - You will need Flash CS4 or newer to be able to open the fla files</description>
		<content:encoded><![CDATA[<p>You are right about one thing: the vector drawings drawn in the editor are not stored in the graphics object that you can manipulate with as. That&#8217;s just to keep the graphics &#8220;safe&#8221;. But you can still apply successfully scale9Grid in code to a movieclip created and draw in IDE, as long as you follow the guidelines: make sure all drawing is directly inside the movieclip and not inside any other child, the movieclip shouldn&#8217;t contain children (or if contains be even more careful and still apply scale9Grid to only the graphics object, the children won&#8217;t be affected by the scale9Grid setting on their parent)..<br />
The movieclip will even resize correctly if you put drawings on more keyframes. &#8211; in the zip file, check scale9GridEx1 for example</p>
<p>You can also apply successfully scale9Grid to loaded content (actually this is how Flex is setting scale9Grid to skins created in flash), but you must make sure to not apply scale9Grid to the Loader object but rather to the actual content, and make sure the graphics are actually drawn on the stage of the loaded swf, and not in any other symbol that is placed on the stage (or you can draw in other symbols but you then have to apply scale9Grid to those) &#8211; in the zip file, check scale9GridEx2 for how the swf is loaded and applied scale9Grid, and check scale9GridLoading to see how the loading swf is drawn &#8211; very simple actually</p>
<p><a href="http://ovidiudiac.ro/scale9GridEx.zip" rel="nofollow">scale9GridEx.zip</a> &#8211; You will need Flash CS4 or newer to be able to open the fla files</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on scale9Grid &#8211; When it works and when it does not by shmimpie</title>
		<link>http://www.ovidiudiac.ro/blog/2009/05/scale9grid-work-and-fail/comment-page-1/#comment-693</link>
		<dc:creator>shmimpie</dc:creator>
		<pubDate>Tue, 03 Aug 2010 18:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=301#comment-693</guid>
		<description>I&#039;ll another failure point that might not be obvious and isn&#039;t really documented (at least I couldn&#039;t find it...)

Let&#039;s say you want to use actionscript to apply scale9Grid to a loaded swf that has vector art on the timeline. Seems like a sensible use case.... It won&#039;t work! Vector drawings are not drawn into graphics instances. For AS scale9Grid to work, it needs to be operating on a movieclip with a non-empty graphics instance that is larger than the applied rectangle.

So, you think, maybe I&#039;ll get cute and draw into a graphics instance in the loaded swf. That won&#039;t work either. As soon as you include both your vector art and code drawing, scale9Grid will barf. Basically, AS scale9Grid, as opposed to the library variety, can&#039;t be applied to a movieclip that contains vector drawings on the timeline.

For me, this makes the feature almost useless. If I can&#039;t easily apply it to a loaded swf, well...

Anyway, giving up. Thanks again for supplying some useful information. The Adobe docs mention none of these limitations. They should go into detail on them, but alas...</description>
		<content:encoded><![CDATA[<p>I&#8217;ll another failure point that might not be obvious and isn&#8217;t really documented (at least I couldn&#8217;t find it&#8230;)</p>
<p>Let&#8217;s say you want to use actionscript to apply scale9Grid to a loaded swf that has vector art on the timeline. Seems like a sensible use case&#8230;. It won&#8217;t work! Vector drawings are not drawn into graphics instances. For AS scale9Grid to work, it needs to be operating on a movieclip with a non-empty graphics instance that is larger than the applied rectangle.</p>
<p>So, you think, maybe I&#8217;ll get cute and draw into a graphics instance in the loaded swf. That won&#8217;t work either. As soon as you include both your vector art and code drawing, scale9Grid will barf. Basically, AS scale9Grid, as opposed to the library variety, can&#8217;t be applied to a movieclip that contains vector drawings on the timeline.</p>
<p>For me, this makes the feature almost useless. If I can&#8217;t easily apply it to a loaded swf, well&#8230;</p>
<p>Anyway, giving up. Thanks again for supplying some useful information. The Adobe docs mention none of these limitations. They should go into detail on them, but alas&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on scale9Grid &#8211; When it works and when it does not by shmimpie</title>
		<link>http://www.ovidiudiac.ro/blog/2009/05/scale9grid-work-and-fail/comment-page-1/#comment-692</link>
		<dc:creator>shmimpie</dc:creator>
		<pubDate>Mon, 02 Aug 2010 23:58:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=301#comment-692</guid>
		<description>Well, congratulations!  This is the only useful information on this (non) feature anywhere! The Adobe examples and documentation are horrendous.

Thank you!</description>
		<content:encoded><![CDATA[<p>Well, congratulations!  This is the only useful information on this (non) feature anywhere! The Adobe examples and documentation are horrendous.</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MovieMaterial with UIComponent by Dan</title>
		<link>http://www.ovidiudiac.ro/blog/2009/03/moviematerial-with-uicomponent/comment-page-1/#comment-691</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 28 Jul 2010 10:36:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=41#comment-691</guid>
		<description>The thing I searched for quite a time...
The slider control is buggy but this is a minor problem.

Thanks a lot!</description>
		<content:encoded><![CDATA[<p>The thing I searched for quite a time&#8230;<br />
The slider control is buggy but this is a minor problem.</p>
<p>Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on scale9Grid &#8211; When it works and when it does not by UncleNinja</title>
		<link>http://www.ovidiudiac.ro/blog/2009/05/scale9grid-work-and-fail/comment-page-1/#comment-684</link>
		<dc:creator>UncleNinja</dc:creator>
		<pubDate>Wed, 12 May 2010 17:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=301#comment-684</guid>
		<description>Holy crap!
This is awesome, Ovidiu! Thanks, man!</description>
		<content:encoded><![CDATA[<p>Holy crap!<br />
This is awesome, Ovidiu! Thanks, man!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 &#8211; Object Oriented Programming &#8211; Part2 by jimmidahand</title>
		<link>http://www.ovidiudiac.ro/blog/2009/05/as3-oop-part2/comment-page-1/#comment-681</link>
		<dc:creator>jimmidahand</dc:creator>
		<pubDate>Tue, 13 Apr 2010 00:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=271#comment-681</guid>
		<description>GREAT STUFF! cant wait for the next bit!</description>
		<content:encoded><![CDATA[<p>GREAT STUFF! cant wait for the next bit!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Contact Form Changes from v1.1 to v1.2 by bruno</title>
		<link>http://www.ovidiudiac.ro/blog/2009/03/contact-form-changes-from-v11-to-v12/comment-page-1/#comment-680</link>
		<dc:creator>bruno</dc:creator>
		<pubDate>Fri, 02 Apr 2010 13:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=36#comment-680</guid>
		<description>i have the same problem as nikush, i do not get the text of the message if i attach a file...

but it seem that correction for it is not posted here...

please help:)
bruno</description>
		<content:encoded><![CDATA[<p>i have the same problem as nikush, i do not get the text of the message if i attach a file&#8230;</p>
<p>but it seem that correction for it is not posted here&#8230;</p>
<p>please help:)<br />
bruno</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Step-by-step installing by admin</title>
		<link>http://www.ovidiudiac.ro/blog/2009/03/step-by-step-installing/comment-page-1/#comment-679</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 01 Apr 2010 14:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=26#comment-679</guid>
		<description>Hey,

I just tried to send an email from your website and the message was not sent.

I looked at the http requests and noticed that the php mailer script is not found: 404 Not Found.
http://www.brunoisakovic.com/contactme/scripts/sendmail.php - try it

Ovidiu</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>I just tried to send an email from your website and the message was not sent.</p>
<p>I looked at the http requests and noticed that the php mailer script is not found: 404 Not Found.<br />
<a href="http://www.brunoisakovic.com/contactme/scripts/sendmail.php" rel="nofollow">http://www.brunoisakovic.com/contactme/scripts/sendmail.php</a> &#8211; try it</p>
<p>Ovidiu</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Step-by-step installing by Bruno</title>
		<link>http://www.ovidiudiac.ro/blog/2009/03/step-by-step-installing/comment-page-1/#comment-678</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Thu, 01 Apr 2010 12:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=26#comment-678</guid>
		<description>hello Pinosh

i am trying to get it work but i am not receiving any attachment in my mail. 
Contact form is showing the progress like everything is OK but then i do not find the file attached. 
I did everything as explained and I checked 5 times :)

this is the link to my test page
http://www.brunoisakovic.com/contactme/contact.html

i would appreciate any help.
Bruno</description>
		<content:encoded><![CDATA[<p>hello Pinosh</p>
<p>i am trying to get it work but i am not receiving any attachment in my mail.<br />
Contact form is showing the progress like everything is OK but then i do not find the file attached.<br />
I did everything as explained and I checked 5 times <img src='http://www.ovidiudiac.ro/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>this is the link to my test page<br />
<a href="http://www.brunoisakovic.com/contactme/contact.html" rel="nofollow">http://www.brunoisakovic.com/contactme/contact.html</a></p>
<p>i would appreciate any help.<br />
Bruno</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash CS4 TextField: embedded fonts by DrWatson</title>
		<link>http://www.ovidiudiac.ro/blog/2009/03/flash-cs4-textfield-embedded-fonts/comment-page-1/#comment-676</link>
		<dc:creator>DrWatson</dc:creator>
		<pubDate>Fri, 12 Mar 2010 06:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.ovidiudiac.ro/blog/?p=22#comment-676</guid>
		<description>I have tried to apply the example above to a label but I can&#039;t seem to get it to work. Everything compiles but the font sytle is not applied. Am I doing something wrong here:

var MyFontClass : Class = getDefinitionByName(&quot;LibFontArialBold&quot;) as Class;
var LibFontArialBold : Font = new MyFontClass() as Font;
		
myTf=new TextFormat();
myTf.font = LibFontArialBold.fontName;
myTf.size=20;
myTf.color=0xFF0000;
			
label1=new Label();
label1.setStyle(&quot;myTf&quot;,myTf);</description>
		<content:encoded><![CDATA[<p>I have tried to apply the example above to a label but I can&#8217;t seem to get it to work. Everything compiles but the font sytle is not applied. Am I doing something wrong here:</p>
<p>var MyFontClass : Class = getDefinitionByName(&#8221;LibFontArialBold&#8221;) as Class;<br />
var LibFontArialBold : Font = new MyFontClass() as Font;</p>
<p>myTf=new TextFormat();<br />
myTf.font = LibFontArialBold.fontName;<br />
myTf.size=20;<br />
myTf.color=0xFF0000;</p>
<p>label1=new Label();<br />
label1.setStyle(&#8221;myTf&#8221;,myTf);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->