<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PRAVINRANJAN&#039;s Blog &#187; example</title>
	<atom:link href="http://pranjan.com/?feed=rss2&#038;tag=example" rel="self" type="application/rss+xml" />
	<link>http://pranjan.com</link>
	<description>About flash</description>
	<lastBuildDate>Tue, 15 Jun 2010 10:17:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to stop internet explorer yellow security bar while loading swf content.</title>
		<link>http://pranjan.com/?p=36</link>
		<comments>http://pranjan.com/?p=36#comments</comments>
		<pubDate>Thu, 15 Jan 2009 12:08:53 +0000</pubDate>
		<dc:creator>flas3</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ac_runactivecontent.js]]></category>
		<category><![CDATA[allowFullscreen]]></category>
		<category><![CDATA[allowScriptAccess]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[internet explorer security]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[newbie]]></category>
		<category><![CDATA[noscript]]></category>
		<category><![CDATA[pluginspage]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[swf content]]></category>

		<guid isPermaLink="false">http://pravinranjan.com/blog/?p=36</guid>
		<description><![CDATA[Many times (I even don&#8217;t remember) people ask these questions. 1. My swf works fine in mozilla / firefox but not in internet explorer. Why? 2. When I double click a HTML web page to view my flash content (movie), it shows yellow bar at top. Why? 3. How can we remove yellow information bar [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Many times (I even don&#8217;t remember) people ask these questions.</p>
<p>1. My swf works fine in mozilla / firefox but not in internet explorer. Why?<br />
2. When I double click a HTML web page to view my flash content (movie), it shows yellow bar at top. Why?<br />
3. How can we remove yellow information bar in IE (internet explorer) while loading my swf content?</p>
<p>&#8230;.. and so on.</p>
<p>Well the solution is simple and kiddie to those who knows. But what about who is newbie or less knowledge of flash?</p>
<p>Here is an example, how to write HTML code to embed SWF.</p>
<p style="padding-left: 30px;">&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; xml:lang=&#8221;en&#8221; lang=&#8221;en&#8221;&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;example&lt;/title&gt;<br />
&lt;script language=&#8221;javascript&#8221;&gt;AC_FL_RunContent = 0;&lt;/script&gt;<br />
&lt;script src=&#8221;<span style="color: #ff0000;">AC_RunActiveContent.js</span>&#8221; language=&#8221;javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body bgcolor=&#8221;#000000&#8243;&gt;<br />
&lt;script language=&#8221;javascript&#8221;&gt;<br />
if (AC_FL_RunContent == 0) {<br />
alert(&#8220;This page requires AC_RunActiveContent.js.&#8221;);<br />
} else {<br />
AC_FL_RunContent(<br />
&#8216;codebase&#8217;, &#8216;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&#8242;,<br />
&#8216;width&#8217;, &#8217;290&#8242;,<br />
&#8216;height&#8217;, &#8217;340&#8242;,<br />
&#8216;src&#8217;, &#8216;<span style="color: #3366ff;">images/SWFs/myswf</span>&#8216;,<br />
&#8216;quality&#8217;, &#8216;high&#8217;,<br />
&#8216;pluginspage&#8217;, &#8216;http://www.macromedia.com/go/getflashplayer&#8217;,<br />
&#8216;align&#8217;, &#8216;middle&#8217;,<br />
&#8216;play&#8217;, &#8216;true&#8217;,<br />
&#8216;loop&#8217;, &#8216;true&#8217;,<br />
&#8216;scale&#8217;, &#8216;showall&#8217;,<br />
&#8216;wmode&#8217;, &#8216;window&#8217;,<br />
&#8216;devicefont&#8217;, &#8216;false&#8217;,<br />
&#8216;id&#8217;, &#8216;<span style="color: #3366ff;">myswf</span>&#8216;,<br />
&#8216;bgcolor&#8217;, &#8216;#000000&#8242;,<br />
&#8216;name&#8217;, &#8216;<span style="color: #3366ff;">myswf</span>&#8216;,<br />
&#8216;menu&#8217;, &#8216;false&#8217;,<br />
&#8216;allowFullScreen&#8217;, &#8216;false&#8217;,<br />
&#8216;allowScriptAccess&#8217;,'sameDomain&#8217;,<br />
&#8216;movie&#8217;, &#8216;<span style="color: #3366ff;">images/SWFs/myswf</span>&#8216;,<br />
&#8216;salign&#8217;, &#8221;<br />
);<br />
}<br />
&lt;/script&gt;<br />
<strong><span style="color: #339966;"><em>&lt;noscript&gt;<br />
&lt;object classid=&#8221;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&#8243; codebase=&#8221;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&#8243; width=&#8221;290&#8243; height=&#8221;340&#8243; id=&#8221;t3fla&#8221; align=&#8221;middle&#8221;&gt;<br />
&lt;param name=&#8221;allowScriptAccess&#8221; value=&#8221;sameDomain&#8221; /&gt;<br />
&lt;param name=&#8221;allowFullScreen&#8221; value=&#8221;false&#8221; /&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;images/SWFs/myswf.swf&#8221; /&gt;&lt;param name=&#8221;quality&#8221; value=&#8221;high&#8221; /&gt;&lt;param name=&#8221;bgcolor&#8221; value=&#8221;#000000&#8243; /&gt;    &lt;embed src=&#8221;images/SWFs/myswf.swf&#8221; quality=&#8221;high&#8221; bgcolor=&#8221;#000000&#8243; width=&#8221;290&#8243; height=&#8221;340&#8243; name=&#8221;myswf&#8221; align=&#8221;middle&#8221; allowScriptAccess=&#8221;sameDomain&#8221; allowFullScreen=&#8221;false&#8221; type=&#8221;application/x-shockwave-flash&#8221; pluginspage=&#8221;http://www.macromedia.com/go/getflashplayer&#8221; /&gt;<br />
&lt;/object&gt;<br />
&lt;/noscript&gt;</em></span></strong><br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">Probably this could be your HTML code. {You can use this code for exercise.}</p>
<p style="padding-left: 30px;">Now, you need <a rel="attachment wp-att-37" href="http://pravinranjan.com/blog/?attachment_id=37">ac_runactivecontent</a> to run your javascript. The filename is hilighted in red in above code.  This file will reside along with your HTML file.</p>
<p style="padding-left: 30px;"><span style="color: #808080;"><span style="color: #333333;">See in &lt;HEAD&gt;&#8230;</span></span></p>
<p>&lt;script language=&#8221;javascript&#8221;&gt;AC_FL_RunContent = 0;&lt;/script&gt;<br />
&lt;script src=&#8221;AC_RunActiveContent.js&#8221; language=&#8221;javascript&#8221;&gt;&lt;/script&gt;</p>
<p>These 2 lines add and enable javascript. You need to have the same js file along with the HTML file.</p>
<p style="padding-left: 30px;">See &lt;BODY&gt;&#8230;.</p>
<p style="padding-left: 30px;">&lt;script language=&#8221;javascript&#8221;&gt;<br />
if (AC_FL_RunContent == 0) {<br />
alert(&#8220;This page requires AC_RunActiveContent.js.&#8221;);<br />
} else {<br />
AC_FL_RunContent(<br />
&#8216;codebase&#8217;, &#8216;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&#8242;,<br />
&#8216;width&#8217;, &#8217;290&#8242;,<br />
&#8216;height&#8217;, &#8217;340&#8242;,<br />
&#8216;src&#8217;, &#8216;<span style="color: #3366ff;">images/SWFs/myswf</span>&#8216;,<br />
&#8216;quality&#8217;, &#8216;high&#8217;,<br />
&#8216;pluginspage&#8217;, &#8216;http://www.macromedia.com/go/getflashplayer&#8217;,<br />
&#8216;align&#8217;, &#8216;middle&#8217;,<br />
&#8216;play&#8217;, &#8216;true&#8217;,<br />
&#8216;loop&#8217;, &#8216;true&#8217;,<br />
&#8216;scale&#8217;, &#8216;showall&#8217;,<br />
&#8216;wmode&#8217;, &#8216;window&#8217;,<br />
&#8216;devicefont&#8217;, &#8216;false&#8217;,<br />
&#8216;id&#8217;, &#8216;<span style="color: #3366ff;">myswf</span>&#8216;,<br />
&#8216;bgcolor&#8217;, &#8216;#000000&#8242;,<br />
&#8216;name&#8217;, &#8216;<span style="color: #3366ff;">myswf</span>&#8216;,<br />
&#8216;menu&#8217;, &#8216;false&#8217;,<br />
&#8216;allowFullScreen&#8217;, &#8216;false&#8217;,<br />
&#8216;allowScriptAccess&#8217;,'sameDomain&#8217;,<br />
&#8216;movie&#8217;, &#8216;<span style="color: #3366ff;">images/SWFs/myswf</span>&#8216;,<br />
&#8216;salign&#8217;, &#8221;<br />
);<br />
}<br />
&lt;/script&gt;</p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">Now what?</p>
<p style="padding-left: 30px;">We need your swf that you need to load. Say&#8230; your swf name is <strong>myswf.swf </strong>and it resides in SWFs folder in images folder.</p>
<p style="padding-left: 30px;">Put images folder along with HTML as shown below.</p>
<p style="padding-left: 30px;"><a rel="attachment wp-att-38" href="http://pravinranjan.com/blog/?attachment_id=38"><img class="alignnone size-full wp-image-38" title="image" src="http://pravinranjan.com/blog/wp-content/uploads/2009/01/image.jpg" alt="image" width="581" height="167" /></a></p>
<p style="padding-left: 30px;">Copy your swf name with relative path and paste in place of blue colored text as per above example. Keep in mind that you don&#8217;t need to write swf extension with its file name. Check carefully.</p>
<p style="padding-left: 30px;">And you know green colored text script very well so I think I don&#8217;t need to elaborate this part.</p>
<p style="padding-left: 30px;">Double click to open the html to load swf content. If everything fine, your SWF will load perfactly without any security (yellow bar) related problem.</p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;"><span style="text-decoration: underline;">Have a nice day!</span></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pranjan.com/?feed=rss2&amp;p=36</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Cute flipbook / pageflip! Software will be launched very soon.</title>
		<link>http://pranjan.com/?p=31</link>
		<comments>http://pranjan.com/?p=31#comments</comments>
		<pubDate>Thu, 15 Jan 2009 11:25:44 +0000</pubDate>
		<dc:creator>flas3</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cute]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flipbook]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[making sfotware]]></category>
		<category><![CDATA[pageflip]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://pravinranjan.com/blog/?p=31</guid>
		<description><![CDATA[Hi all, See this cute flipbook / pageflip example from here. The making software will be launch very soon. See y. No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>See this cute <a class="wpGallery" title="The ShowCase Creator Demo" href="http://pravinranjan.com/m_webs/scc1.html" target="_blank">flipbook / pageflip example from here</a>. The making software will be launch very soon.</p>
<p>See y.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pranjan.com/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
