<?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: Tweeter v1.0 &#8211; simplifying Twitter and Actionscript</title>
	<atom:link href="http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/</link>
	<description>~ Hugging Flash into submission ~</description>
	<lastBuildDate>Mon, 06 Sep 2010 08:44:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: The Hippy</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-304</link>
		<dc:creator>The Hippy</dc:creator>
		<pubDate>Mon, 06 Sep 2010 08:44:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-304</guid>
		<description>Hi Andi

Many thanks for your comment. I am indeed working on a Twitter event class. Typically though, work always seems to get in the way of me completing it :) Fingers crossed I&#039;ll get back to it soon...please do feel free to send through any suggestions that you might have, I&#039;m all for open collaboration.

TBOH</description>
		<content:encoded><![CDATA[<p>Hi Andi</p>
<p>Many thanks for your comment. I am indeed working on a Twitter event class. Typically though, work always seems to get in the way of me completing it <img src='http://www.burnedouthippy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Fingers crossed I&#8217;ll get back to it soon&#8230;please do feel free to send through any suggestions that you might have, I&#8217;m all for open collaboration.</p>
<p>TBOH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andi</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-292</link>
		<dc:creator>Andi</dc:creator>
		<pubDate>Thu, 02 Sep 2010 13:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-292</guid>
		<description>Hi,
first of all your class is very useful but there is one problem with your class. For example if you want to add add a scrollbar to your generated textfield, you have to know when data from your class is loaded and ready. therefore  I dispatched an event at the end of your &quot;SuccessFunc&quot;

&lt;code&gt;
var readyEvent:Event=new Event(&quot;tweetsReady&quot;,true);
dispatchEvent(readyEvent);
&lt;/code&gt;

Then in your main application, you know when the data from twitter is ready:
&lt;code&gt;
t.getTweet();

t.addEventListener(&#039;tweetReady&#039;,onTweetReady);

public function onTweetReady(e:Event):void
{
trace(&quot;twitter data is ready&quot;);
}
&lt;/code&gt;

I think a good approach would be to make a custom event class and pass the data from the tweeter.as class to main application via this custom event. This would be more flexible.

greetz Andi</description>
		<content:encoded><![CDATA[<p>Hi,<br />
first of all your class is very useful but there is one problem with your class. For example if you want to add add a scrollbar to your generated textfield, you have to know when data from your class is loaded and ready. therefore  I dispatched an event at the end of your &#8220;SuccessFunc&#8221;</p>
<p><code><br />
var readyEvent:Event=new Event("tweetsReady",true);<br />
dispatchEvent(readyEvent);<br />
</code></p>
<p>Then in your main application, you know when the data from twitter is ready:<br />
<code><br />
t.getTweet();</p>
<p>t.addEventListener('tweetReady',onTweetReady);</p>
<p>public function onTweetReady(e:Event):void<br />
{<br />
trace("twitter data is ready");<br />
}<br />
</code></p>
<p>I think a good approach would be to make a custom event class and pass the data from the tweeter.as class to main application via this custom event. This would be more flexible.</p>
<p>greetz Andi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Hippy</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-136</link>
		<dc:creator>The Hippy</dc:creator>
		<pubDate>Fri, 18 Jun 2010 08:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-136</guid>
		<description>The class isn&#039;t very complicated, so I&#039;d imagine that if you&#039;re ok with AS2 OOP you should be able to do a straightforward conversion. Although you&#039;d probably need to change the other classes as well. Personally however, I&#039;m hard at work on developing a load of new AS3 twitter classes so I don&#039;t currently have any plans to release an AS2 version. Possibly in the future though, if there&#039;s enough demand.

In the meantime, if you&#039;re forced to use AS2, the only help I can offer is this thread: http://tinyurl.com/26xhvdf

Thanks for your comments!</description>
		<content:encoded><![CDATA[<p>The class isn&#8217;t very complicated, so I&#8217;d imagine that if you&#8217;re ok with AS2 OOP you should be able to do a straightforward conversion. Although you&#8217;d probably need to change the other classes as well. Personally however, I&#8217;m hard at work on developing a load of new AS3 twitter classes so I don&#8217;t currently have any plans to release an AS2 version. Possibly in the future though, if there&#8217;s enough demand.</p>
<p>In the meantime, if you&#8217;re forced to use AS2, the only help I can offer is this thread: <a href="http://tinyurl.com/26xhvdf" rel="nofollow">http://tinyurl.com/26xhvdf</a></p>
<p>Thanks for your comments!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TechFlashGuy</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-135</link>
		<dc:creator>TechFlashGuy</dc:creator>
		<pubDate>Fri, 18 Jun 2010 07:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-135</guid>
		<description>I love this thing. Some great info here. 

I need however, to load this into a as2 swf (I know that this is not possible), but is there any way to convert this code to as2? 

Thanks.</description>
		<content:encoded><![CDATA[<p>I love this thing. Some great info here. </p>
<p>I need however, to load this into a as2 swf (I know that this is not possible), but is there any way to convert this code to as2? </p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Hippy</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-131</link>
		<dc:creator>The Hippy</dc:creator>
		<pubDate>Sun, 13 Jun 2010 13:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-131</guid>
		<description>Hi again Prashant. I&#039;m glad that you finally got it working - please do post a link here, I&#039;d love to see it in action.

Many thanks!</description>
		<content:encoded><![CDATA[<p>Hi again Prashant. I&#8217;m glad that you finally got it working &#8211; please do post a link here, I&#8217;d love to see it in action.</p>
<p>Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant Yashpal</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-115</link>
		<dc:creator>Prashant Yashpal</dc:creator>
		<pubDate>Wed, 26 May 2010 19:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-115</guid>
		<description>Hi, 
Okay for the last time, I got my app to work its showing my the twitter feed online too! yay! thanks. 

The problem was coming from the fact, that i wanted the twitter profile picture to be loaded, but there is a sandbox problem with that!.
I will see if i find a solution to that. 

Basically I am trying to use this to augmented a twitter feed. using flartoolkit. 
if you like I can post a link here for the existing working app, but with no profile picture.

Thanks again for your super class. and help!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Okay for the last time, I got my app to work its showing my the twitter feed online too! yay! thanks. </p>
<p>The problem was coming from the fact, that i wanted the twitter profile picture to be loaded, but there is a sandbox problem with that!.<br />
I will see if i find a solution to that. </p>
<p>Basically I am trying to use this to augmented a twitter feed. using flartoolkit.<br />
if you like I can post a link here for the existing working app, but with no profile picture.</p>
<p>Thanks again for your super class. and help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant Yashpal</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-114</link>
		<dc:creator>Prashant Yashpal</dc:creator>
		<pubDate>Wed, 26 May 2010 19:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-114</guid>
		<description>Hi 
sorry to post so many times, just one question 
do i need a crossdomain.xml file?

Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Hi<br />
sorry to post so many times, just one question<br />
do i need a crossdomain.xml file?</p>
<p>Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant Yashpal</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-113</link>
		<dc:creator>Prashant Yashpal</dc:creator>
		<pubDate>Wed, 26 May 2010 18:47:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-113</guid>
		<description>Hi 
Thanks for the reply!

I fail to understand the problem, I have build the app using Flash builder, when I play from my desktop all loads super. 
But as soon as I put it online the same files , it does not load. 

Does the proxy file and the app directory online have to be the same?
Or is it enough that the proxy is on the same server?

for eg. in my app the proxy is at . www.xyz.com/twitterar 
(the proxy file is sitting here)

when i deploy my app it is at . www.xyz.com/mobar

this works perfect on my desktop but nothing happens online

Thanks for your help and a great app. 
Hope i can figure this out and fix it. 

Thanks</description>
		<content:encoded><![CDATA[<p>Hi<br />
Thanks for the reply!</p>
<p>I fail to understand the problem, I have build the app using Flash builder, when I play from my desktop all loads super.<br />
But as soon as I put it online the same files , it does not load. </p>
<p>Does the proxy file and the app directory online have to be the same?<br />
Or is it enough that the proxy is on the same server?</p>
<p>for eg. in my app the proxy is at . <a href="http://www.xyz.com/twitterar" rel="nofollow">http://www.xyz.com/twitterar</a><br />
(the proxy file is sitting here)</p>
<p>when i deploy my app it is at . <a href="http://www.xyz.com/mobar" rel="nofollow">http://www.xyz.com/mobar</a></p>
<p>this works perfect on my desktop but nothing happens online</p>
<p>Thanks for your help and a great app.<br />
Hope i can figure this out and fix it. </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Hippy</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-112</link>
		<dc:creator>The Hippy</dc:creator>
		<pubDate>Wed, 26 May 2010 15:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-112</guid>
		<description>Unfortunately I can&#039;t help with individual cases, but the two things that I would suggest first are:

1. Try again. Sometimes the Twitter feed goes down for long periods of time. This is unfortunately out of my control and something that I experienced during the testing process myself. If it occurs, wait a few hours and try again.

2. Check your proxy. Make sure that you can contact the proxy directly and that its output is as expected.

I hope that helps in some way.</description>
		<content:encoded><![CDATA[<p>Unfortunately I can&#8217;t help with individual cases, but the two things that I would suggest first are:</p>
<p>1. Try again. Sometimes the Twitter feed goes down for long periods of time. This is unfortunately out of my control and something that I experienced during the testing process myself. If it occurs, wait a few hours and try again.</p>
<p>2. Check your proxy. Make sure that you can contact the proxy directly and that its output is as expected.</p>
<p>I hope that helps in some way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant Yashpal</title>
		<link>http://www.burnedouthippy.com/2009/08/tweeter-v1-0-simplifying-twitter-and-actionscript/comment-page-1/#comment-110</link>
		<dc:creator>Prashant Yashpal</dc:creator>
		<pubDate>Wed, 26 May 2010 06:55:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=63#comment-110</guid>
		<description>Hi,
I managed to get this working in my Flash Builder application, it worked fine offline testing, but as soon as i put it online it stopped working!
And now it does not work, either it shows &quot;Loading please wait&quot;
or it says &quot;Sorry there seems to be an error with twitter&quot;
I have uploaded proxy file and double checked all links 
I still have no clue why this is happening ?

Any clues can anyone help?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I managed to get this working in my Flash Builder application, it worked fine offline testing, but as soon as i put it online it stopped working!<br />
And now it does not work, either it shows &#8220;Loading please wait&#8221;<br />
or it says &#8220;Sorry there seems to be an error with twitter&#8221;<br />
I have uploaded proxy file and double checked all links<br />
I still have no clue why this is happening ?</p>
<p>Any clues can anyone help?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
