Helmut Granda
learning through interaction
Time to go pick up a SXSW interactive badge.
do quite a bit of "scratch" math Now I have the perfect tool for it SOULVER! http://bit.ly/4SFYz (via stevensacks)
@maninboxuk is that the emergency word? Is some one else monitoring his vitals in case he can't even saythose words?
RT @ryancarson: Made me chuckle: Comic Sans walks into a bar and the barman says, "We don't serve your type here." #tv
@juniesauce you found a bug with it? I just dont like the idea of having that option. Specially while working with teams.
@squaredeye what a boring game. haha maybe I dont have appreciation for fonts :)
@smithandrobot I say skip it all together, the more risk the more betterer
July 26, 2007 - 1:48 pm
Helmut, pardon my ignorance, I tried to solve it myself but with no success…
I want to use your “Loading RSS feed into Flash” script and it works fine, but I do not know how to capture the output and save it as an xml file. My ultimate objective is to have just the entries from the xml displayed in a list component.
Best regards,
Martin
January 16, 2008 - 4:24 pm
This is cool but I can’t see the info, I can see it in the output box
only.
April 6, 2008 - 9:30 pm
Yesssss. Finally. Just the base code of loading the RSS, not some super long and advanced script.
February 9, 2009 - 1:49 pm
Hey guys, to pull the feed into a text field, follow these steps:
Create a dynamic multiline text field and give it a variable name, i.e. txt_feed.
Then just insert this script into the onLoad function:
sports.onLoad = function(success) {
txt_feed = sports;
trace(sports);
};
February 10, 2009 - 1:48 pm
I still just get it in my output window
Is there any way to combine this with:
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
caption = [];
url = [];
total = xmlNode.childNodes.length;
for (i=0; i=0) {
newsMC.newsText._alpha -= 5;
} else {
display(p);
p++;
delete this.onEnterFrame;
}
};
}
February 10, 2009 - 2:50 pm
hum… the whole message didn’t show up.
Check out http://www.maihtas.com/flash_news_ticker.html
February 26, 2009 - 7:33 am
Hey guys.
I’ve set up all the code and made a dynamic multiline text field for the feed to goto, yet still I can only see my feed in the output box!
Any ideas?
March 7, 2009 - 1:43 am
No dice. Couldn’t get this to work.
March 25, 2009 - 4:08 pm
Davidious, are you publshing with Actionscript 2.0?
May 5, 2009 - 1:44 am
i get it all to work but it just displays the source of the XML file, can i get it to display specific tags, or even format the content inside my text field?
May 5, 2009 - 4:49 pm
It is supposed to show you only the output (text) to use as a blue print. With the content now you can target specific tags or do as you wish with it
June 10, 2009 - 8:47 am
please forgive my ignorance… I’m totally a begginer and have only used flash for motion files in the past, and I understand very little about web stuff. I want to place this feed from my external blog in a box on my “blog” page in my flash site… and of course have it link to the external blog site, if they want to read more. I put this code in an action box on a layer in the keyframe of my “content page” movie designated for that page content. I used the code, and like you said the output showed that it works… what do I do next in order to set the parameters for this feed to show up on that page in a box or whatever the size of my choosing? thank you in advance for any help you can give… I feel like I’m in over my head,…
thanks a bunch!
June 13, 2009 - 4:51 pm
I managed to get this to work no problem. Now my question is.. is it possible to have the photos from the blog that is getting fed into flash show up and also, is there a way to make this look a little more organized? as of now im getting the text from the blog, but there is no space between each blog.
June 13, 2009 - 4:51 pm
I managed to get this to work no problem. Now my question is.. is it possible to have the photos from the blog that is getting fed into flash show up and also, is there a way to make this look a little more organized? as of now im getting the text from the blog, but there is no space between each blog.
Thanks
June 25, 2009 - 3:47 pm
Im doing somthing wrong because te feed is coming thru but its not rendering its just showing the source.
October 4, 2009 - 3:42 pm
It works fine ! If its not showing in the text box i would suggest clicking “embed…” under the properties of the txt box and selecting they data you want to display !
If that doesnt work then i dont know.
December 30, 2009 - 8:52 pm
I’m working in actionscript 2.0 and want to be able to use my rss blog feed for the news segment. I’m having the same problem, the rss feed only shows up in the output pane.
February 25, 2010 - 7:55 am
about RSS comment in AS3
hii there I like to know now to create/add RSS comment into an flash website using with AS3
March 2, 2010 - 10:21 am
If you’re working in AS2 the only thing that needs to be done to integrate this to the stage is to first create a dynamic text box named “number1_txt” and add the following:
sports.onLoad = function(success) {
trace(sports);
_root.uno = this.firstChild.childNodes[0].childNodes[0].childNodes[0].firstChild.nodeValue;
number1_txt.text = _root.uno;
};
You work your way through your rss feed/xml by changing the [0]’s in that code. but that code should give you something to start with.
March 2, 2010 - 3:59 pm
I deff need to add a AS3 sample.