<?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"
	>
<channel>
	<title>Comments on: [Video] New multimedia piece on macromedia.com - Interactive Video Guide</title>
	<atom:link href="http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/</link>
	<description>Mike Downey is the Principal Evangelist for Platform Business Development at Adobe Systems and focuses on Adobe's platform technologies including AIR, Flash, and Flex. This is his personal blog. The views expressed on this site are his and his alone and do not necessarily reflect the views of Adobe Systems, it's employees or partners in any way.</description>
	<pubDate>Fri, 21 Nov 2008 17:42:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: googleå·¦ä¾§æŽ’å??</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-345</link>
		<dc:creator>googleå·¦ä¾§æŽ’å??</dc:creator>
		<pubDate>Sun, 13 Nov 2005 21:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-345</guid>
		<description>Quote from a Levis Ad. "Is this coincidence
</description>
		<content:encoded><![CDATA[<p>Quote from a Levis Ad. &#8220;Is this coincidence</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Cunningham</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-344</link>
		<dc:creator>Aaron Cunningham</dc:creator>
		<pubDate>Fri, 28 Oct 2005 15:47:33 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-344</guid>
		<description>Coding : 
function initPAGES()
{
    Drag.gotoAndPlay(2);
    Drag._x = Book._x + Book._width - 40;
    Drag._y = Book._y + Book._height - 40;
    Drag.xn = Book._x + Book._width - 5;
    Drag.yn = Book._y + Book._height - 5;
    SHEET.gotoAndStop(PageNum - 2);
    SHEETB.gotoAndStop(PageNum - 1);
    SHEET.duplicateMovieClip("DRAGPAGE", 9999);
    SHEETB.duplicateMovieClip("DRAGPAGE2", 68);
    CP = createEmptyMovieClip("PAGE", 10);
    DRAGPAGE.setMask(Page);
    DRAGPAGE2.setMask(TMask);
    OuterShade.setMask(RMask);
    DRAGPAGE.gotoAndStop(PageNum);
    DRAGPAGE2.gotoAndStop(PageNum + 1);
    DRAGPAGE.attachMovie("Fold", "FoldB", 2);
    pageSpeed = 0.300000;
    Advanced = false;
} // End of the function
function pageREVERSE()
{
    PageNum = PageNum - 2;
    if (PageNum  totalPages)
            {
                PageNum = 3;
            } // end if
            initPAGES();
        } // end if
        if (Drag.xn &gt; 350)
        {
        } // end if
    } // end if
    CornerDIST = Math.sqrt((_xmouse - Corner._x) * (_xmouse - Corner._x) + (_ymouse - Corner._y) * (_ymouse - Corner._y));
    if (!_root.videoControl &#038;&#038; CornerDIST  350)
    {
        Drag.gotoAndPlay(2);
    } // end if
    _quality = "HIGH";
    DRAGME = false;
    Advanced = false;
    this.stopDrag();
    if (this._x &gt; 350)
    {
        pageSpeed = 0.100000;
        Advanced = false;
        this.xn = Book._x + Book._width;
    }
    else
    {
        pageSpeed = 0.300000;
        Advanced = true;
        this.xn = Book._x;
    } // end if
    this.yn = Book._y + Book._height - 2;
    Drag.onEnterFrame = function ()
    {
        pullCorner();
    };
};
CornerX = Book._x + Book._width - 1;
CornerY = Book._y + Book._height - 1;
Curve.onEnterFrame = function ()
{
    this.X = _xmouse - (Book._x + Book._width / 2);
    this.Y = _ymouse - (Book._y + Book._height);
    this.DISTANCE = Math.sqrt(this.X * this.X + this.Y * this.Y);
    this.ANGLE = Math.atan2(this.Y, this.X) * 180 / 3.141593;
    this._x = Book._x + Book._width / 2 + 323 * Math.cos(this.ANGLE * 0.017453);
    this._y = Book._y + Book._height + 323 * Math.sin(this.ANGLE * 0.017453);
    if (this.DISTANCE &gt; PageSize &#038;&#038; followMouse &#038;&#038; _ymouse  8)
        {
            PAGE.lineTo(TopX, TopY);
        }
        else
        {
            PAGE.lineTo(Upper._x, Upper._y);
            PAGE.lineTo(Flip._x, Flip._y);
        } // end if
        PAGE.endFill();
        DRAGPAGE._x = Drag._x;
        DRAGPAGE._y = Drag._y;
        DRAGPAGE._rotation = ANGLE2;
        DRAGPAGE.FoldB._rotation = Angle - Angle2 - 180;
        shadeDISTANCE = Math.sqrt((Drag._x - BottomX) * (Drag._x - BottomX) + (Drag._y - BottomY) * (Drag._y - BottomY));
        DRAGPAGE.FoldB._x = shadeDISTANCE;
        DRAGPAGE.FoldB._xscale = 100;
        TMask._x = BisecX;
        OuterShade._x = TMask._x - 1;
        TMask._y = BisecY;
        OuterShade._y = TMask._y - 1;
        OuterShade._rotation = TMask._rotation = Angle2 - Angle;
    } // end if
};
stop ();</description>
		<content:encoded><![CDATA[<p>Coding :<br />
function initPAGES()<br />
{<br />
    Drag.gotoAndPlay(2);<br />
    Drag._x = Book._x + Book._width - 40;<br />
    Drag._y = Book._y + Book._height - 40;<br />
    Drag.xn = Book._x + Book._width - 5;<br />
    Drag.yn = Book._y + Book._height - 5;<br />
    SHEET.gotoAndStop(PageNum - 2);<br />
    SHEETB.gotoAndStop(PageNum - 1);<br />
    SHEET.duplicateMovieClip(&#8221;DRAGPAGE&#8221;, 9999);<br />
    SHEETB.duplicateMovieClip(&#8221;DRAGPAGE2&#8243;, 68);<br />
    CP = createEmptyMovieClip(&#8221;PAGE&#8221;, 10);<br />
    DRAGPAGE.setMask(Page);<br />
    DRAGPAGE2.setMask(TMask);<br />
    OuterShade.setMask(RMask);<br />
    DRAGPAGE.gotoAndStop(PageNum);<br />
    DRAGPAGE2.gotoAndStop(PageNum + 1);<br />
    DRAGPAGE.attachMovie(&#8221;Fold&#8221;, &#8220;FoldB&#8221;, 2);<br />
    pageSpeed = 0.300000;<br />
    Advanced = false;<br />
} // End of the function<br />
function pageREVERSE()<br />
{<br />
    PageNum = PageNum - 2;<br />
    if (PageNum  totalPages)<br />
            {<br />
                PageNum = 3;<br />
            } // end if<br />
            initPAGES();<br />
        } // end if<br />
        if (Drag.xn > 350)<br />
        {<br />
        } // end if<br />
    } // end if<br />
    CornerDIST = Math.sqrt((_xmouse - Corner._x) * (_xmouse - Corner._x) + (_ymouse - Corner._y) * (_ymouse - Corner._y));<br />
    if (!_root.videoControl &#038;&#038; CornerDIST  350)<br />
    {<br />
        Drag.gotoAndPlay(2);<br />
    } // end if<br />
    _quality = &#8220;HIGH&#8221;;<br />
    DRAGME = false;<br />
    Advanced = false;<br />
    this.stopDrag();<br />
    if (this._x > 350)<br />
    {<br />
        pageSpeed = 0.100000;<br />
        Advanced = false;<br />
        this.xn = Book._x + Book._width;<br />
    }<br />
    else<br />
    {<br />
        pageSpeed = 0.300000;<br />
        Advanced = true;<br />
        this.xn = Book._x;<br />
    } // end if<br />
    this.yn = Book._y + Book._height - 2;<br />
    Drag.onEnterFrame = function ()<br />
    {<br />
        pullCorner();<br />
    };<br />
};<br />
CornerX = Book._x + Book._width - 1;<br />
CornerY = Book._y + Book._height - 1;<br />
Curve.onEnterFrame = function ()<br />
{<br />
    this.X = _xmouse - (Book._x + Book._width / 2);<br />
    this.Y = _ymouse - (Book._y + Book._height);<br />
    this.DISTANCE = Math.sqrt(this.X * this.X + this.Y * this.Y);<br />
    this.ANGLE = Math.atan2(this.Y, this.X) * 180 / 3.141593;<br />
    this._x = Book._x + Book._width / 2 + 323 * Math.cos(this.ANGLE * 0.017453);<br />
    this._y = Book._y + Book._height + 323 * Math.sin(this.ANGLE * 0.017453);<br />
    if (this.DISTANCE > PageSize &#038;&#038; followMouse &#038;&#038; _ymouse  <img src='http://madowney.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' />         {<br />
            PAGE.lineTo(TopX, TopY);<br />
        }<br />
        else<br />
        {<br />
            PAGE.lineTo(Upper._x, Upper._y);<br />
            PAGE.lineTo(Flip._x, Flip._y);<br />
        } // end if<br />
        PAGE.endFill();<br />
        DRAGPAGE._x = Drag._x;<br />
        DRAGPAGE._y = Drag._y;<br />
        DRAGPAGE._rotation = ANGLE2;<br />
        DRAGPAGE.FoldB._rotation = Angle - Angle2 - 180;<br />
        shadeDISTANCE = Math.sqrt((Drag._x - BottomX) * (Drag._x - BottomX) + (Drag._y - BottomY) * (Drag._y - BottomY));<br />
        DRAGPAGE.FoldB._x = shadeDISTANCE;<br />
        DRAGPAGE.FoldB._xscale = 100;<br />
        TMask._x = BisecX;<br />
        OuterShade._x = TMask._x - 1;<br />
        TMask._y = BisecY;<br />
        OuterShade._y = TMask._y - 1;<br />
        OuterShade._rotation = TMask._rotation = Angle2 - Angle;<br />
    } // end if<br />
};<br />
stop ();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Cunningham</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-343</link>
		<dc:creator>Aaron Cunningham</dc:creator>
		<pubDate>Fri, 28 Oct 2005 15:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-343</guid>
		<description>Here's some help possibly....
The HP+Dreamworks page is located at:
http://welcome.hp.com/country/us/en/msg/corp/flashdreamworks.html

It incorporates several XML files for navigation, and test loaders for the actual story.

Files used are dynamically loaded, but here's some info to help user with their reverse engineering needs.

FILES:

http://welcome.hp.com/country/us/en/msg/corp/hpframe.swf
http://welcome.hp.com/country/us/en/msg/corp/base.swf
http://welcome.hp.com/country/us/en/msg/corp/casestudies.xml
http://welcome.hp.com/country/us/en/msg/corp/copy.xml
http://welcome.hp.com/country/us/en/msg/corp/casestudies.xml

(Ps: Click on the story. Has active button)
Enjoy!</description>
		<content:encoded><![CDATA[<p>Here&#8217;s some help possibly&#8230;.<br />
The HP+Dreamworks page is located at:<br />
<a href="http://welcome.hp.com/country/us/en/msg/corp/flashdreamworks.html" rel="nofollow">http://welcome.hp.com/country/us/en/msg/corp/flashdreamworks.html</a></p>
<p>It incorporates several XML files for navigation, and test loaders for the actual story.</p>
<p>Files used are dynamically loaded, but here&#8217;s some info to help user with their reverse engineering needs.</p>
<p>FILES:</p>
<p><a href="http://welcome.hp.com/country/us/en/msg/corp/hpframe.swf" rel="nofollow">http://welcome.hp.com/country/us/en/msg/corp/hpframe.swf</a><br />
<a href="http://welcome.hp.com/country/us/en/msg/corp/base.swf" rel="nofollow">http://welcome.hp.com/country/us/en/msg/corp/base.swf</a><br />
<a href="http://welcome.hp.com/country/us/en/msg/corp/casestudies.xml" rel="nofollow">http://welcome.hp.com/country/us/en/msg/corp/casestudies.xml</a><br />
<a href="http://welcome.hp.com/country/us/en/msg/corp/copy.xml" rel="nofollow">http://welcome.hp.com/country/us/en/msg/corp/copy.xml</a><br />
<a href="http://welcome.hp.com/country/us/en/msg/corp/casestudies.xml" rel="nofollow">http://welcome.hp.com/country/us/en/msg/corp/casestudies.xml</a></p>
<p>(Ps: Click on the story. Has active button)<br />
Enjoy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Heiko</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-342</link>
		<dc:creator>Heiko</dc:creator>
		<pubDate>Tue, 16 Aug 2005 10:47:33 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-342</guid>
		<description>Hey Macc,

Dont know what to say :-) Saw the flash template on Templatemonster and wanted to buy it just right before I saw your post here. Better to give the money to you instead of templatemonster. 
Thanks for your post !

Cheers,
Heiko</description>
		<content:encoded><![CDATA[<p>Hey Macc,</p>
<p>Dont know what to say <img src='http://madowney.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Saw the flash template on Templatemonster and wanted to buy it just right before I saw your post here. Better to give the money to you instead of templatemonster.<br />
Thanks for your post !</p>
<p>Cheers,<br />
Heiko</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Macc</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-341</link>
		<dc:creator>Macc</dc:creator>
		<pubDate>Thu, 21 Apr 2005 12:39:55 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-341</guid>
		<description>Hi! A new free version: v2.12 is available for download. (it is now AS2/Flash 7 compatible)
http://www.iparigrafika.hu/pageflip

But i'am posting here, because i found my opensource code at templatemonster (for $63)... I think this is not fair, some people buy this template instead of downloading it for free...
http://www.templatemonster.com/website-templates/8096</description>
		<content:encoded><![CDATA[<p>Hi! A new free version: v2.12 is available for download. (it is now AS2/Flash 7 compatible)<br />
<a href="http://www.iparigrafika.hu/pageflip" rel="nofollow">http://www.iparigrafika.hu/pageflip</a></p>
<p>But i&#8217;am posting here, because i found my opensource code at templatemonster (for $63)&#8230; I think this is not fair, some people buy this template instead of downloading it for free&#8230;<br />
<a href="http://www.templatemonster.com/website-templates/8096" rel="nofollow">http://www.templatemonster.com/website-templates/8096</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maura g</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-340</link>
		<dc:creator>maura g</dc:creator>
		<pubDate>Sat, 01 May 2004 07:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-340</guid>
		<description>Thanks very much for this Guide -- I've ended up forwarding a number of the links to people that I think should view them for ideas/brainstorming.

Splendid examples!  

I found this Guide extremely helpful, and will probably revisit it at some point.  It expanded my own sense of what is possible.</description>
		<content:encoded><![CDATA[<p>Thanks very much for this Guide &#8212; I&#8217;ve ended up forwarding a number of the links to people that I think should view them for ideas/brainstorming.</p>
<p>Splendid examples!  </p>
<p>I found this Guide extremely helpful, and will probably revisit it at some point.  It expanded my own sense of what is possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MaX</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-339</link>
		<dc:creator>MaX</dc:creator>
		<pubDate>Thu, 29 Apr 2004 01:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-339</guid>
		<description>Great guide to video!

And the last page points to this source for the Page Flip Effect.

http://www.iparigrafika.hu/</description>
		<content:encoded><![CDATA[<p>Great guide to video!</p>
<p>And the last page points to this source for the Page Flip Effect.</p>
<p><a href="http://www.iparigrafika.hu/" rel="nofollow">http://www.iparigrafika.hu/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arul Prasad</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-338</link>
		<dc:creator>Arul Prasad</dc:creator>
		<pubDate>Tue, 27 Apr 2004 15:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-338</guid>
		<description>Hey! 
Me back again, with some cool information.. A couple of hours after I put that post there, I was going browsing the net.. Somewhere my instincts said, try method.com. I really didnt know that there existed a site like that, and now, I got to know the stunning thing ... The cool programmers being both the HP thing and the Macromedia page video effect are the same!! Its both done by people at method Inc. 
And then I remembered a Quote from a Levis Ad. "Is this coincidence??" 

Cheers!! 
Long live actionscript.. Long live Flash !! 
and Long live Method Inc!!!</description>
		<content:encoded><![CDATA[<p>Hey!<br />
Me back again, with some cool information.. A couple of hours after I put that post there, I was going browsing the net.. Somewhere my instincts said, try method.com. I really didnt know that there existed a site like that, and now, I got to know the stunning thing &#8230; The cool programmers being both the HP thing and the Macromedia page video effect are the same!! Its both done by people at method Inc.<br />
And then I remembered a Quote from a Levis Ad. &#8220;Is this coincidence??&#8221; </p>
<p>Cheers!!<br />
Long live actionscript.. Long live Flash !!<br />
and Long live Method Inc!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arul Prasad</title>
		<link>http://madowney.com/blog/2004/04/26/video-new-multimedia-piece-on-macromediacom-interactive-video-guide/#comment-337</link>
		<dc:creator>Arul Prasad</dc:creator>
		<pubDate>Tue, 27 Apr 2004 12:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://madowney.com/blog/?p=45#comment-337</guid>
		<description>Hey!

I remember seeing that 'HP Shrek' thing too. But Macromedia people have gone a step forward, by making the page foldable from anywhere on the page. Remember the HP thing had a holder which you had to pull... I remember spending some 15 hours, cracking down the logic behind that and in the end I did create the same effect myself :-)

These programmers at MM are incredible!! 

Long live actionscript.. Long live Flash !! 
:-D</description>
		<content:encoded><![CDATA[<p>Hey!</p>
<p>I remember seeing that &#8216;HP Shrek&#8217; thing too. But Macromedia people have gone a step forward, by making the page foldable from anywhere on the page. Remember the HP thing had a holder which you had to pull&#8230; I remember spending some 15 hours, cracking down the logic behind that and in the end I did create the same effect myself <img src='http://madowney.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
These programmers at MM are incredible!! </p>
<p>Long live actionscript.. Long live Flash !!  <img src='http://madowney.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
