<?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 on: MAX 2005 Breezo and source files &#8216;Integrating Rich Flash Content into Flex Applications&#8217;</title>
	<atom:link href="http://www.waldosmeets.com/2005/10/20/596/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.waldosmeets.com/2005/10/20/596/</link>
	<description>Solutions Consultant Digital Marketing @adobe;web content management, rich internet applications, customer experience, conversion, social, mobile, cloud</description>
	<lastBuildDate>Thu, 13 Nov 2008 16:23:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sid</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-376</link>
		<dc:creator>Sid</dc:creator>
		<pubDate>Tue, 06 Dec 2005 07:18:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-376</guid>
		<description>For those encountering securityError #2047 so far as I can telll, this is the new flashPlayer 8 sandbox. However, whereas fp8 allows you to configure access to the local file system, fp8.5 currently just blocks it. If you run the html file on localhost this is not a problem. To automate this in flexbuilder, select Run from the Run menu, uncheck Use Defaults, and set Run to a URL beginning http://localhost. Obviously, you have to develop in a folder your local web server has access to.</description>
		<content:encoded><![CDATA[<p>For those encountering securityError #2047 so far as I can telll, this is the new flashPlayer 8 sandbox. However, whereas fp8 allows you to configure access to the local file system, fp8.5 currently just blocks it. If you run the html file on localhost this is not a problem. To automate this in flexbuilder, select Run from the Run menu, uncheck Use Defaults, and set Run to a URL beginning <a href="http://localhost" rel="nofollow">http://localhost</a>. Obviously, you have to develop in a folder your local web server has access to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-400</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 01 Dec 2005 17:20:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-400</guid>
		<description>Waldo,
I&#039;ve tried to run the sample code and, being unfamiliar with how Flex uses SWF files, I&#039;m not sure why I am getting the following error:

SecurityError: Error #2047: Security sandbox violation: &#039;content&#039;: &#039;file:///C:/Flex/WaldoSWF/bin/swf_animation.swf&#039; may not access &#039;file:///C:/Flex/WaldoSWF/bin/drop_shadow_monkey.swf&#039;.

I presume this is an obvious configuration issue - I am just not sure what it is. Any suggestions?</description>
		<content:encoded><![CDATA[<p>Waldo,<br />
I&#8217;ve tried to run the sample code and, being unfamiliar with how Flex uses SWF files, I&#8217;m not sure why I am getting the following error:</p>
<p>SecurityError: Error #2047: Security sandbox violation: &#8216;content&#8217;: &#8216;file:///C:/Flex/WaldoSWF/bin/swf_animation.swf&#8217; may not access &#8216;file:///C:/Flex/WaldoSWF/bin/drop_shadow_monkey.swf&#8217;.</p>
<p>I presume this is an obvious configuration issue &#8211; I am just not sure what it is. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thomasglyn</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-318</link>
		<dc:creator>thomasglyn</dc:creator>
		<pubDate>Sun, 30 Oct 2005 17:25:03 +0000</pubDate>
		<guid isPermaLink="false">#comment-318</guid>
		<description>Hi Waldo,
Thanks for your presentation. It&#039;s helped a lot!
My intrests are focused on coding AS3 with Flexbuilder to make Flash games. And I would like to be able to control the animations of Movieclips that I embed via AS3, perhaps similar to what you did using MXML.
Its great that we can embed assets during compile time via code and associate them with a class.
However, when i embed an SWF it  automatically becomes assiociated with the Sprite Class that doesnt have a timeline and cant have any properites assigned to any movieclips inside it(ie. instance names on the movieclips) . And also, I&#039;ve unsuccessifully tried to find a way to embed an SWF animation(that has a timeline more than 1 frame) using AS3 and not using MXML. I noticed that you did that with MXML in your source files (1_swf_animation). 
Could you give me any hints on how to embed a SWF Animation(with a timeline) with AS3 and also how to use AS3 to control an embedded SWF?  Is there anyway we can convert the embedded SWF to a MovieClip instead of just a Sprite?


Here&#039;s a section from Mike Chambers devnet article that mentions what i&#039;m trying to do:
http://www.macromedia.com/devnet/flash/articles/flex2_flash.html


For example, let&#039;s say you are working on a game that would benefit from the performance increases and productivity improvements of ActionScript 3.0 and Flash Player 8.5.

You could create all of the assets for the game in Flash 8 Professional. This would include graphics, videos, animations, etc. You could then do all of your programming in ActionScript and Flex Builder 2, and include the Flash assets in the SWF at compile time (ActionScript 3.0 has support for embedding assets and associating them with an ActionScript class).

The end result is a SWF file that contains all of the code and assets for your game, but which takes advantage of ActionScript 3.0 as well as the new Player APIs and virtual machine.

</description>
		<content:encoded><![CDATA[<p>Hi Waldo,<br />
Thanks for your presentation. It&#8217;s helped a lot!<br />
My intrests are focused on coding AS3 with Flexbuilder to make Flash games. And I would like to be able to control the animations of Movieclips that I embed via AS3, perhaps similar to what you did using MXML.<br />
Its great that we can embed assets during compile time via code and associate them with a class.<br />
However, when i embed an SWF it  automatically becomes assiociated with the Sprite Class that doesnt have a timeline and cant have any properites assigned to any movieclips inside it(ie. instance names on the movieclips) . And also, I&#8217;ve unsuccessifully tried to find a way to embed an SWF animation(that has a timeline more than 1 frame) using AS3 and not using MXML. I noticed that you did that with MXML in your source files (1_swf_animation).<br />
Could you give me any hints on how to embed a SWF Animation(with a timeline) with AS3 and also how to use AS3 to control an embedded SWF?  Is there anyway we can convert the embedded SWF to a MovieClip instead of just a Sprite?</p>
<p>Here&#8217;s a section from Mike Chambers devnet article that mentions what i&#8217;m trying to do:<br />
<a href="http://www.macromedia.com/devnet/flash/articles/flex2_flash.html" rel="nofollow">http://www.macromedia.com/devnet/flash/articles/flex2_flash.html</a></p>
<p>For example, let&#8217;s say you are working on a game that would benefit from the performance increases and productivity improvements of ActionScript 3.0 and Flash Player 8.5.</p>
<p>You could create all of the assets for the game in Flash 8 Professional. This would include graphics, videos, animations, etc. You could then do all of your programming in ActionScript and Flex Builder 2, and include the Flash assets in the SWF at compile time (ActionScript 3.0 has support for embedding assets and associating them with an ActionScript class).</p>
<p>The end result is a SWF file that contains all of the code and assets for your game, but which takes advantage of ActionScript 3.0 as well as the new Player APIs and virtual machine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JabbyPanda</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-317</link>
		<dc:creator>JabbyPanda</dc:creator>
		<pubDate>Fri, 28 Oct 2005 12:12:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-317</guid>
		<description>The Flex app from your presentation Pharos Reizen... Did the Flex app go online?

I entered http://www.pharosreizen.nl/ web-site, but it seems to be all ASP + HTML based....</description>
		<content:encoded><![CDATA[<p>The Flex app from your presentation Pharos Reizen&#8230; Did the Flex app go online?</p>
<p>I entered <a href="http://www.pharosreizen.nl/" rel="nofollow">http://www.pharosreizen.nl/</a> web-site, but it seems to be all ASP + HTML based&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Muzak</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-316</link>
		<dc:creator>Muzak</dc:creator>
		<pubDate>Thu, 27 Oct 2005 11:39:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-316</guid>
		<description>In Zorn you can actually do the following:

.windows {
upSkin: Embed(source=&quot;skins.swf#UpSkin&quot;);
overSkin: Embed(source=&quot;skins.swf#OverSkin&quot;);
downSkin: Embed(source=&quot;skins.swf#DownSkin&quot;);
}

where UpSkin, OverSkin, DownSkin are movieclips in the library (linkage ID&#039;s).
Doesn&#039;t get any easier than that ;-)
</description>
		<content:encoded><![CDATA[<p>In Zorn you can actually do the following:</p>
<p>.windows {<br />
upSkin: Embed(source=&#8221;skins.swf#UpSkin&#8221;);<br />
overSkin: Embed(source=&#8221;skins.swf#OverSkin&#8221;);<br />
downSkin: Embed(source=&#8221;skins.swf#DownSkin&#8221;);<br />
}</p>
<p>where UpSkin, OverSkin, DownSkin are movieclips in the library (linkage ID&#8217;s).<br />
Doesn&#8217;t get any easier than that <img src='http://www.waldosmeets.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JabbyPanda</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-314</link>
		<dc:creator>JabbyPanda</dc:creator>
		<pubDate>Wed, 26 Oct 2005 10:11:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-314</guid>
		<description>By the way,

If speaking in a language of Macromedia codenames:

Zorn    = Flex builder 2
Mistral =  Flex enterprice services 2 
Zaphod = ???


</description>
		<content:encoded><![CDATA[<p>By the way,</p>
<p>If speaking in a language of Macromedia codenames:</p>
<p>Zorn    = Flex builder 2<br />
Mistral =  Flex enterprice services 2<br />
Zaphod = ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JabbyPanda</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-313</link>
		<dc:creator>JabbyPanda</dc:creator>
		<pubDate>Wed, 26 Oct 2005 10:11:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-313</guid>
		<description>By the way,

If speaking in a language of Macromedia codenames:

Zorn    = Flex builder 2
Mistral =  Flex enterprice services 2 
Zaphod = ???


</description>
		<content:encoded><![CDATA[<p>By the way,</p>
<p>If speaking in a language of Macromedia codenames:</p>
<p>Zorn    = Flex builder 2<br />
Mistral =  Flex enterprice services 2<br />
Zaphod = ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-309</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Thu, 20 Oct 2005 20:10:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-309</guid>
		<description>Good point about visual SWFs, Zorn probably won&#039;t be very practical for that.

Mike did post an example on Flashcoders a while back that shows not only changing colors but actual skins through the CSS (though that&#039;s Flex 2.0 specific, so not applicable to your session ;)).

.windows
{
  upSkin: Embed(source=&quot;button_up.png&quot;);
  overSkin: Embed(source=&quot;button_over.png&quot;);
  downSkin: Embed(source=&quot;button_down.png&quot;);
}

Really exciting feature for quick and easy skinning.</description>
		<content:encoded><![CDATA[<p>Good point about visual SWFs, Zorn probably won&#8217;t be very practical for that.</p>
<p>Mike did post an example on Flashcoders a while back that shows not only changing colors but actual skins through the CSS (though that&#8217;s Flex 2.0 specific, so not applicable to your session <img src='http://www.waldosmeets.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).</p>
<p>.windows<br />
{<br />
  upSkin: Embed(source=&#8221;button_up.png&#8221;);<br />
  overSkin: Embed(source=&#8221;button_over.png&#8221;);<br />
  downSkin: Embed(source=&#8221;button_down.png&#8221;);<br />
}</p>
<p>Really exciting feature for quick and easy skinning.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldo Smeets</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-364</link>
		<dc:creator>Waldo Smeets</dc:creator>
		<pubDate>Thu, 20 Oct 2005 16:51:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-364</guid>
		<description>Hi Peter. Indeed I covered 1.5, for two reasons:

- What I discussed is a real problem with customers NOW, so I need to provide them with a solution that works now.
- The preso containeds two parts; overview of possibilities and technical implementation. In general this concept is expected to stay the same.

One last reason not to go too deep into Flash IDE + Zorn integration is the fact that the Flash IDE can not compile for AS3 yet, which makes the  process more complicated untill that&#039;s fixed.

Correct that Zorn supports AS only compilation, but that&#039;s not going to help out with creating visual SWFs.

SWC vs CSS: if you don&#039;t want to change shapes, only colors, CSS might be the easiest solution. However, with SWC/programmatic skinning you can go beyond that.</description>
		<content:encoded><![CDATA[<p>Hi Peter. Indeed I covered 1.5, for two reasons:</p>
<p>- What I discussed is a real problem with customers NOW, so I need to provide them with a solution that works now.<br />
- The preso containeds two parts; overview of possibilities and technical implementation. In general this concept is expected to stay the same.</p>
<p>One last reason not to go too deep into Flash IDE + Zorn integration is the fact that the Flash IDE can not compile for AS3 yet, which makes the  process more complicated untill that&#8217;s fixed.</p>
<p>Correct that Zorn supports AS only compilation, but that&#8217;s not going to help out with creating visual SWFs.</p>
<p>SWC vs CSS: if you don&#8217;t want to change shapes, only colors, CSS might be the easiest solution. However, with SWC/programmatic skinning you can go beyond that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.waldosmeets.com/2005/10/20/596/comment-page-1/#comment-362</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Thu, 20 Oct 2005 10:56:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-362</guid>
		<description>wow looks like you covered a LOT of information! ;) 

Looks like you talked about Flex as its available right now, not the Zorn alpha -- was just about to post to ask if you prefer SWC skinning over CSS. What I particularly like is that you can now apparently use Flex Builder 2 for compiling AS only projects so you don&#039;t have the overhead of the Flex framework if you don&#039;t need it and can still stay in the Eclipse framework without relying on open source alternatives.</description>
		<content:encoded><![CDATA[<p>wow looks like you covered a LOT of information! <img src='http://www.waldosmeets.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
<p>Looks like you talked about Flex as its available right now, not the Zorn alpha &#8212; was just about to post to ask if you prefer SWC skinning over CSS. What I particularly like is that you can now apparently use Flex Builder 2 for compiling AS only projects so you don&#8217;t have the overhead of the Flex framework if you don&#8217;t need it and can still stay in the Eclipse framework without relying on open source alternatives.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

