0
votes
2answers
617 views
RSS reader in actionscript 2
I'm trying to make an actionscript program that will be able to read an RSS feed and find the title and description of the item. I'm able to load the XML into a variable, but when I try to look at …
0
votes
1answer
198 views
How to remove XML entity references in Actionscript
I need to remove a bunch of ' from a string that I obtained through an XML document. I'm working with Actionscript 2, so Regex is not an option for me. Even though I'm looking …
1
vote
2answers
216 views
SOAP requests with actionscript 2
I'm not sure how I can send a SOAP request with actionscript 2 or even if it supports it. I've looked around for a while now and have come up with nothing.
…
0
votes
1answer
189 views
How to make HTTP requests in actionscript 2
I'm fairly new to actionscript 2 and HTTP, but I need to be able to send an HTTP request message through actionscript 2. I'm not to sure how to do this. Thank you for the help ahead of time.
…
0
votes
2answers
215 views
Initializing reference types outside of a function in Actionscript 2
I have this small class called City that simply holds some information about a city, here it is:
class com.weatherwidget.City {
var zipCode:String;
var forecastText:Array = …
0
votes
1answer
120 views
Getting the RSS link from the <head> in Actionscript 2
I'm having problems getting to the rss link that tells the browser where the rss is for the site. The link is found in the <head> tag of the html here is an example of what the l …
0
votes
1answer
317 views
Vertical scroll a textfield by pixels in Actionscript 2
Is there a way to vertical scroll a textfield in actionscript 2 by pixels instead of line by line?
…
0
votes
1answer
40 views
Using LoadVars to load cbsnews.com sometimes returns GIF89a
For some reason when I use LoadVars in actionscript 2 to load cbsnews.com, I sometimes properly get the html for the page and other times I get GIF89a. I'm not sure what this means, so …
0
votes
0answers
32 views
Is there a way to throw an event when a movieclip becomes visible?
Is there a way to through an event when some other program makes my movieclip visible? I am using actionscript 2.
…
1
vote
Initializing reference types outside of a function in Actionscript 2
The array needs to be initialized inside of a constructor for some reason or all the City objects will point to the same array. So the city class should look like:
class com.weather …
