<?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: Installation guide for Flash Indexhibit frontend</title>
	<atom:link href="http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/feed/" rel="self" type="application/rss+xml" />
	<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/</link>
	<description>flash and actioscript development</description>
	<lastBuildDate>Wed, 28 Jul 2010 05:54:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Eugene</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1145</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Wed, 26 May 2010 20:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1145</guid>
		<description>OMG ! you did it !
it works so well now, thank you, thank you, thank you *1000

Phil : [ you don’t have a page with an empty deeplink “/”. i thought that every indexhibit installation has such a “home” page ]

well, i thought I saw smthing like that in the debug trace, but couldnt figure it out.
what exactlly is different in my installation ?

If you still have 5 mins, i would like to change the font by embedding directlly in Flash (instead of using an external otf font ) some characters are missing, and well, for the sake of change !


mate, you are a genius !
cheers

E</description>
		<content:encoded><![CDATA[<p>OMG ! you did it !<br />
it works so well now, thank you, thank you, thank you *1000</p>
<p>Phil : [ you don’t have a page with an empty deeplink “/”. i thought that every indexhibit installation has such a “home” page ]</p>
<p>well, i thought I saw smthing like that in the debug trace, but couldnt figure it out.<br />
what exactlly is different in my installation ?</p>
<p>If you still have 5 mins, i would like to change the font by embedding directlly in Flash (instead of using an external otf font ) some characters are missing, and well, for the sake of change !</p>
<p>mate, you are a genius !<br />
cheers</p>
<p>E</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1144</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Wed, 26 May 2010 07:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1144</guid>
		<description>@christian
did you recompile the whole thing after changing the SERVER_URL?
the crossdomain is loaded automatically when you access a different server - there&#039;s no explicit line in the code for that.

hope this helped ...!?
phil</description>
		<content:encoded><![CDATA[<p>@christian<br />
did you recompile the whole thing after changing the SERVER_URL?<br />
the crossdomain is loaded automatically when you access a different server &#8211; there&#8217;s no explicit line in the code for that.</p>
<p>hope this helped &#8230;!?<br />
phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1143</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Wed, 26 May 2010 07:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1143</guid>
		<description>hey.
checked your sources and found what caused the error - you don&#039;t have a page with an empty deeplink &quot;/&quot;. i thought that every indexhibit installation has such a &quot;home&quot; page but it seems that i was wrong ...

change the &quot;set currentUrl&quot; function in the IndexhibitProxy.as to this:

&lt;pre&gt;
public function set currentUrl(url:String):void
{
	log.debug(&quot;set currentUrl() &gt;&gt;&gt; &quot; + url + &quot; alt: &quot; + data[&quot;currentUrl&quot;]);
	
	if(url == data[&quot;currentUrl&quot;])
	{
		// same url exit
		return;
	}
	
	// look for exhibit
	var exh:ExhibitVo;
	for(var i:int=0;i&lt;exhibits.length;i++)
	{
		exh = exhibits[i] as ExhibitVo;
		if(exh != null)
		{
			log.debug(&quot;page.url: &quot; + exh.url);
			if(exh.url == url)
			{
				data[&quot;currentUrl&quot;] = exh.url;
				sendNotification(IndexhibitProxy.PAGE_CHANGED, exh);
				sendNotification(IndexhibitProxy.UPDATE_TITLE, exh);
				
				return;
			}
		}
	}
	
	// special case: if there is no &quot;/&quot;, just fire the notification anyway ...
	if(url == &quot;/&quot;)
	{
		exh = new ExhibitVo();
		exh.url = url;
		
		data[&quot;currentUrl&quot;] = url;
		sendNotification(IndexhibitProxy.PAGE_CHANGED, exh);
		sendNotification(IndexhibitProxy.UPDATE_TITLE, exh);
	}
	
	sendNotification(IndexhibitProxy.SELECT_PAGE, &quot;/&quot;);
}
&lt;/pre&gt;

... should work then.

cheers
phil</description>
		<content:encoded><![CDATA[<p>hey.<br />
checked your sources and found what caused the error &#8211; you don&#8217;t have a page with an empty deeplink &#8220;/&#8221;. i thought that every indexhibit installation has such a &#8220;home&#8221; page but it seems that i was wrong &#8230;</p>
<p>change the &#8220;set currentUrl&#8221; function in the IndexhibitProxy.as to this:</p>
<pre>
public function set currentUrl(url:String):void
{
	log.debug("set currentUrl() &gt;&gt;&gt; " + url + " alt: " + data["currentUrl"]);

	if(url == data["currentUrl"])
	{
		// same url exit
		return;
	}

	// look for exhibit
	var exh:ExhibitVo;
	for(var i:int=0;i&lt;exhibits.length;i++)
	{
		exh = exhibits[i] as ExhibitVo;
		if(exh != null)
		{
			log.debug(&quot;page.url: &quot; + exh.url);
			if(exh.url == url)
			{
				data[&quot;currentUrl&quot;] = exh.url;
				sendNotification(IndexhibitProxy.PAGE_CHANGED, exh);
				sendNotification(IndexhibitProxy.UPDATE_TITLE, exh);

				return;
			}
		}
	}

	// special case: if there is no &quot;/&quot;, just fire the notification anyway ...
	if(url == &quot;/&quot;)
	{
		exh = new ExhibitVo();
		exh.url = url;

		data[&quot;currentUrl&quot;] = url;
		sendNotification(IndexhibitProxy.PAGE_CHANGED, exh);
		sendNotification(IndexhibitProxy.UPDATE_TITLE, exh);
	}

	sendNotification(IndexhibitProxy.SELECT_PAGE, &quot;/&quot;);
}
</pre>
<p>&#8230; should work then.</p>
<p>cheers<br />
phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1142</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Tue, 25 May 2010 13:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1142</guid>
		<description>hello again Phil, did you manage to give it a look ?
I &#039;m so disappointed not being able to make it work...

E</description>
		<content:encoded><![CDATA[<p>hello again Phil, did you manage to give it a look ?<br />
I &#8216;m so disappointed not being able to make it work&#8230;</p>
<p>E</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1125</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Mon, 17 May 2010 22:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1125</guid>
		<description>well,

here is the source i used, what I did was just change the constants :
http://www.waldemaar.com/apdev_WF_source.zip

hope I&#039;m not asking too much from you, 
but could you please tell me how to use a font from inside Flash, instead of using an external otf font ? couldn&#039;t make this work either ! 

again, thx a lot for your help philipp !

E</description>
		<content:encoded><![CDATA[<p>well,</p>
<p>here is the source i used, what I did was just change the constants :<br />
<a href="http://www.waldemaar.com/apdev_WF_source.zip" rel="nofollow"></a><a href='http://www.waldemaar.com/apdev_WF_source.zip'>http://www.waldemaar.com/apdev_WF_source.zip</a></p>
<p>hope I&#8217;m not asking too much from you,<br />
but could you please tell me how to use a font from inside Flash, instead of using an external otf font ? couldn&#8217;t make this work either ! </p>
<p>again, thx a lot for your help philipp !</p>
<p>E</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1124</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Mon, 17 May 2010 16:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1124</guid>
		<description>i really appreciate your great work! and, yes, i know you&#039;ve already warned about dealing with flex without any knowledge, but after i got he simple flash version working, i now try the advanced version due to better menu handling.

i&#039;ve just installed everything, amf is in root and working, but i always get a blank flash page and safari activity sais that http://apdevblog.com/crossdomain.xml couldn&#039;t be found and i dont know why. is it somewhere in one of those as.file to be found? –  i grazed thru all of them. or is it a typical flex-noob-error? i mean why it should want to connect to your site although i changed the server url?

thanks in advance und weiter so, jungs!

christian</description>
		<content:encoded><![CDATA[<p>i really appreciate your great work! and, yes, i know you&#8217;ve already warned about dealing with flex without any knowledge, but after i got he simple flash version working, i now try the advanced version due to better menu handling.</p>
<p>i&#8217;ve just installed everything, amf is in root and working, but i always get a blank flash page and safari activity sais that <a href="http://apdevblog.com/crossdomain.xml" rel="nofollow"></a><a href='http://apdevblog.com/crossdomain.xml'>http://apdevblog.com/crossdomain.xml</a> couldn&#8217;t be found and i dont know why. is it somewhere in one of those as.file to be found? –  i grazed thru all of them. or is it a typical flex-noob-error? i mean why it should want to connect to your site although i changed the server url?</p>
<p>thanks in advance und weiter so, jungs!</p>
<p>christian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1119</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 13 May 2010 22:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1119</guid>
		<description>hi eugene,
there&#039;s even more that&#039;s not running as it is supposed to ...!?
when a project is open and you press the shuffle button at the upper right corner it orders the cards anew but the big project card stays open - don&#039;t know where this comes from but i think both errors are connected in some way.
can you send me your FLA and AS files so i could compile the project myself?

phil</description>
		<content:encoded><![CDATA[<p>hi eugene,<br />
there&#8217;s even more that&#8217;s not running as it is supposed to &#8230;!?<br />
when a project is open and you press the shuffle button at the upper right corner it orders the cards anew but the big project card stays open &#8211; don&#8217;t know where this comes from but i think both errors are connected in some way.<br />
can you send me your FLA and AS files so i could compile the project myself?</p>
<p>phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1117</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Wed, 12 May 2010 21:18:26 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1117</guid>
		<description>hello Phil !

anything you can advise ? I&#039;m still stuck on this issue :-(

E</description>
		<content:encoded><![CDATA[<p>hello Phil !</p>
<p>anything you can advise ? I&#8217;m still stuck on this issue :-(</p>
<p>E</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1092</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Sun, 02 May 2010 09:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1092</guid>
		<description>Hello, and thanks for your concern Phil.

here is the link to my website, i gave it a try on the first level instead of a sub-directory... still the same result; getting back to home page does not occur. Guess I&#039;m new to swfadress.

got mad looking for a fix, hope you will see  something obvious !

thx
E</description>
		<content:encoded><![CDATA[<p>Hello, and thanks for your concern Phil.</p>
<p>here is the link to my website, i gave it a try on the first level instead of a sub-directory&#8230; still the same result; getting back to home page does not occur. Guess I&#8217;m new to swfadress.</p>
<p>got mad looking for a fix, hope you will see  something obvious !</p>
<p>thx<br />
E</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://apdevblog.com/installation-guide-for-flash-indexhibit-frontend/comment-page-1/#comment-1090</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Fri, 30 Apr 2010 08:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://apdevblog.com/?p=620#comment-1090</guid>
		<description>hi eugene,
is there any way i can take a look at your example?
online or can you email me the files!?

otherwise it is hard for me to guess what&#039;s going wrong.

cheers
phil</description>
		<content:encoded><![CDATA[<p>hi eugene,<br />
is there any way i can take a look at your example?<br />
online or can you email me the files!?</p>
<p>otherwise it is hard for me to guess what&#8217;s going wrong.</p>
<p>cheers<br />
phil</p>
]]></content:encoded>
	</item>
</channel>
</rss>
