User Anton - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T09:13:24Zhttp://stackoverflow.com/feeds/user/340http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/288900/how-can-i-convert-a-string-to-a-number-in-perl2How can I convert a string to a number in Perl?Anton2008-11-14T00:39:16Z2009-11-23T00:33:04Z
<p>How would I convert a string holding a number into an integer in Perl?</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler133Learning to write a compilerAnton2008-08-04T22:46:36Z2009-11-08T06:13:12Z
<p><em>Preferred Languages</em> : <code>C/C++, Java, and Ruby</code></p>
<p>I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with <code>C/C++, Java, and Ruby</code> so I prefer resources that involve one of those three, but any good resource is acceptable.</p>
http://stackoverflow.com/questions/618398/does-using-linux-benefit-you-as-a-programmer12Does using linux benefit you as a programmer?Anton2009-03-06T10:41:19Z2009-10-18T06:25:13Z
<p>Are there any clear reasons for why using linux may benefit you as a programmer? Such as tools that are only available on linux or anything else that could make you a better programmer or more efficient programmer?</p>
http://stackoverflow.com/questions/935306/rss-reader-in-actionscript-20RSS reader in actionscript 2Anton2009-06-01T15:29:07Z2009-09-08T04:08:10Z
<p>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 the children nodes of the XML the output tells me there are none. I was able to find a very nice RSS reader explanation made in ActionScript 3, but I need to use ActionScript 2. Any help would be greatly appreciated and let me know If I'm going about this completely the wrong way.</p>
<pre><code>var foo:XML = new XML();
foo.onLoad = function(success:Boolean) {
trace(foo);
}
foo.load("http://feeds.nytimes.com/nyt/rss/HomePage");
var myArr:Array = new Array();
myArr = foo.childNodes;
trace(myArr.length); //Prints 0
</code></pre>
http://stackoverflow.com/questions/1245406/is-there-a-way-to-throw-an-event-when-a-movieclip-becomes-visible0Is there a way to throw an event when a movieclip becomes visible?Anton2009-08-07T15:24:57Z2009-08-07T16:12:55Z
<p>Is there a way to through an event when some other program makes my movieclip visible? I am using actionscript 2.</p>
http://stackoverflow.com/questions/1092604/initializing-reference-types-outside-of-a-function-in-actionscript-20Initializing reference types outside of a function in Actionscript 2Anton2009-07-07T14:17:11Z2009-08-04T20:25:02Z
<p>I have this small class called City that simply holds some information about a city, here it is:</p>
<pre><code>class com.weatherwidget.City {
var zipCode:String;
var forecastText:Array = new Array(5);
}
</code></pre>
<p>When I have an array of cities and I change one of the forecastText of one city it will change that forecastText for all of the cities.</p>
<p>For example:</p>
<pre><code>import com.weatherwidget.City;
var arr:Array = new Array();
arr.push(new City());
arr.push(new City());
arr[0].forecastText[0] = "Cloudy";
trace(arr[0].forecastText[0]);
trace(arr[1].forecastText[0]);
</code></pre>
<p>Will have the following output:</p>
<pre><code>Cloudy
Cloudy
</code></pre>
<p>Even though I only changed arr[0].forecastText[0]. I think I must be misunderstanding something about arrays in objects for actionscript 2.</p>
http://stackoverflow.com/questions/1225391/connecting-to-an-ntp-server-keeps-failing-java1Connecting to an NTP server keeps failing (Java)Anton2009-08-04T01:40:48Z2009-08-04T02:14:14Z
<p>I'm just learning how to do networking in Java and the first simple example of getting the time from an NTP server keeps throwing a ConnectException. I'll copy and paste the code, but I have the feeling it must be something not code related since this code came out of a book.</p>
<pre><code>import java.io.*;
import java.net.*;
public class AskTime {
public static void main(String a[]) throws Exception {
if(a.length != 1) {
System.out.println("your lame");
System.exit(0);
}
String machine = a[0];
final int daytimeport = 13;
Socket so = new Socket(machine,daytimeport);
BufferedReader br = new BufferedReader(new InputStreamReader(so.getInputStream() ) );
String time = br.readLine();
System.out.printf("%s says it is %s %n", machine, time);
}
}
</code></pre>
<p>The command I'm using to execute this is:</p>
<p><code>java AskTime us.pool.ntp.org</code></p>
<p><strong>Update:</strong> After reading msaeed's advice I changed the port to 123 and am now being told connection refused instead of connection timed out. So I think msaeed is right, does anyone have any idea what else I need to communicate to receive a time?</p>
http://stackoverflow.com/questions/1200299/using-loadvars-to-load-cbsnews-com-sometimes-returns-gif89a0Using LoadVars to load cbsnews.com sometimes returns GIF89aAnton2009-07-29T13:31:38Z2009-07-29T16:17:48Z
<p>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 <code>GIF89a</code>. I'm not sure what this means, so any help or suggestions would be appreciated. Here is some sample code to test it yourself.</p>
<pre><code>var foo:LoadVars = new LoadVars();
foo.onData = function(bar) {
trace(bar);
}
foo.load("http://www.cbsnews.com/");
</code></pre>
<p>Edit: I tried to follow the advice of Chris Shaffer, but it seems that there is no simple way of writing response into a gif file in flash. I feel like this is strange so I'll keep looking for a way to write the response into a gif file, but if anyone knows how or has another suggestion please let me know.</p>
http://stackoverflow.com/questions/1154617/loading-a-blogger-page-in-an-xml-object-in-actionscript-results-in-missing-tags0Loading a Blogger page in an XML object in ActionScript results in missing tagsAnton2009-07-20T16:41:51Z2009-07-21T14:12:16Z
<p>Whenever I load any blogger page through an XML object in actionscript 2 almost all of the contents of the page magically disappear. I would assume that since the pages are in xhtml that this should work. Here is what I get if I try to load Steve Yegge's blog:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xmlns:b="http://www.google.com/2005/gml/b" xmlns:data="http://www.google.com/2005/gml/data" xmlns:expr="http://www.google.com/2005/gml/expr"><head><script type="text/javascript">(function() { var a=window;function f(e){this.t={};this.tick=function(d,b,c){var i=c?c:(new Date).getTime();this.t[d]=[i,b]};this.tick(&quot;start&quot;,null,e)}var g=new f;a.jstiming={Timer:f,load:g};try{a.jstiming.pt=a.external.pageT}catch(h){};a.tickAboveFold=function(e){var d,b=e,c=0;if(b.offsetParent){do c+=b.offsetTop;while(b=b.offsetParent)}d=c;d</script></head></html>
</code></pre>
<p>Scroll to the end and you can see that the entire <code><body></code> tag is missing. Any suggestions on how to fix this?</p>
<p><strong>Edit:</strong>
Here is some quick code so you can test it yourself:</p>
<pre><code>var foo:XML = new XML();
foo.ignoreWhite = true;
foo.onLoad = function(success:Boolean) {
trace(foo.toString());
}
foo.load("http://steve-yegge.blogspot.com/");
</code></pre>
http://stackoverflow.com/questions/1120055/getting-the-rss-link-from-the-head-in-actionscript-20Getting the RSS link from the <head> in Actionscript 2Anton2009-07-13T15:12:34Z2009-07-17T15:34:13Z
<p>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 <code><head></code> tag of the html here is an example of what the link looks like. </p>
<pre><code><link rel="alternate" type="application/rss+xml" title="CNN - Top Stories [RSS]" href="http://rss.cnn.com/rss/cnn_topstories.rss" />
</code></pre>
<p>My original approach was to treat the site like an XML file and look through the tags, but most sites have an arbitrary number of <code><meta></code> tags that forget to have a ending <code>/></code> so the <code><link></code> tag I'm looking for becomes a child of a random <code><meta></code> tag.</p>
<p>Now I'm thinking of just treating the site like a string and looking for the <code><link></code> tag in it, but this causes problems since the <code><link></code> tag can have its attributes in any order possible. Of course I can work around this, but I would prefer something a bit neater than look for <code>type="application/rss+xml"</code> then look to the left and right of it for the first <code>href</code> it sees.</p>
http://stackoverflow.com/questions/1139607/vertical-scroll-a-textfield-by-pixels-in-actionscript-20Vertical scroll a textfield by pixels in Actionscript 2Anton2009-07-16T18:58:09Z2009-07-17T03:11:39Z
<p>Is there a way to vertical scroll a textfield in actionscript 2 by pixels instead of line by line?</p>
http://stackoverflow.com/questions/914157/please-recommend-cs-project-books/1125924#11259241Answer by Anton for Please Recommend CS Project booksAnton2009-07-14T14:50:12Z2009-07-14T14:50:12Z<p><a href="http://rads.stackoverflow.com/amzn/click/0976694077" rel="nofollow">Best of Ruby Quiz</a> is a book of a bunch of small interesting projects such as create a self learning Tic Tac Toe AI. The projects can definitely be done in any language, so don't let the fact that it says Ruby in the title deter you from it.</p>
http://stackoverflow.com/questions/1098718/what-is-the-signficance-of-the-seen-in-several-variable-names-in-actionscript0What is the signficance of the _ seen in several variable names in ActionScript?Anton2009-07-08T15:13:00Z2009-07-12T00:17:03Z
<p>I'm new to actionscript and I have noticed that many variable names in actionscript begin with an _ and I was wondering what the significance of it is?</p>
http://stackoverflow.com/questions/1107078/how-do-i-find-make-programming-friends6How do I find/make programming friends?Anton2009-07-10T00:12:29Z2009-07-10T04:00:44Z
<p>I recently got my first programming internship and was extremely excited to finally be able to talk with and interact with fellow programmers. I had this assumption that I would find a bunch of like minded individuals who enjoyed programming and other aspects of geek culture. Unfortunately, I find myself working with normal people who program for a living and never discuss or show interest in programming outside of their work. It is incredibly disappointing, because I do think one of the best ways to progress in life and as a programmer is to talk about what you enjoy with others and to build bonds with people who enjoy similar things. So how do I go about finding/making programmer friends?</p>
http://stackoverflow.com/questions/1092604/initializing-reference-types-outside-of-a-function-in-actionscript-2/1092936#10929361Answer by Anton for Initializing reference types outside of a function in Actionscript 2Anton2009-07-07T15:15:12Z2009-07-07T15:15:12Z<p>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:</p>
<pre><code>class com.weatherwidget.City {
var zipCode:String;
var forecastIcons:Array;
function City() {
forecastIcons = new Array(5);
}
}
</code></pre>
<p>I still don't know why it must be initialized in a constructor since the array isn't static, so if anyone would like to explain this that would be much appreciated. </p>
http://stackoverflow.com/questions/1032489/how-can-a-program-control-another-program12How can a program control another program?Anton2009-06-23T13:10:31Z2009-06-23T19:01:44Z
<p>Yesterday while playing videos games I started to think about player made bots that would play for people and I wondered to myself how they work? Do they tell the video game that a key was pressed or mouse was clicked? If not is there a way to have your program tell another program a key was pressed? I know this is a rather dangerous topic so you can say as much as you feel comfortable with, even if its just an overview of how a bot works. I would like to make a project out of this though, where I try to make a program to beat the first level of some game. So any resources or examples you are willing to tell other people would be appreciated.</p>
<p><strong>Update:</strong> So it seems clear that one of main ways to control another program is to emulate keystrokes, so what are some methods to do this (in any language)?</p>
http://stackoverflow.com/questions/461796/dataflow-programming-languages2Dataflow Programming LanguagesAnton2009-01-20T15:35:30Z2009-06-23T16:32:43Z
<p>What is a dataflow programming language? Why use it? and are there any benefits to it?</p>
http://stackoverflow.com/questions/1027691/how-to-make-http-requests-in-actionscript-20How to make HTTP requests in actionscript 2Anton2009-06-22T14:58:56Z2009-06-22T15:07:14Z
<p>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.</p>
http://stackoverflow.com/questions/1002643/soap-requests-with-actionscript-21SOAP requests with actionscript 2Anton2009-06-16T16:38:09Z2009-06-17T21:20:32Z
<p>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.</p>
http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmer/485168#4851682Answer by Anton for Will emacs make me a better programmer?Anton2009-01-27T20:48:24Z2009-06-16T17:52:08Z<p>For me the main reason I would choose Emacs over an IDE is because it allows me to do everything from just my keyboard. This is nice in that it saves some time for when I would normally use a mouse. Also since I find myself very mobile I have a tendency of having my programming "groove" interrupted due to using my slow touch pad. In addition its customization makes it shine over some IDEs for me. However if you find yourself programming fast enough with an IDE then I would say the learning curve of Emacs is not worth the trouble.</p>
http://stackoverflow.com/questions/1001461/how-to-get-the-time-online-from-actionscript0How to get the time online from actionscript?Anton2009-06-16T13:23:14Z2009-06-16T15:06:18Z
<p>I need to be able to find the current time from an online source rather than the system to make sure the time is correct. I need to do this in actionscript, preferably 2 rather than 3 though if you have any solution at all post it. Thanks ahead of time for the help.</p>
http://stackoverflow.com/questions/944895/how-to-remove-xml-entity-references-in-actionscript0How to remove XML entity references in ActionscriptAnton2009-06-03T13:54:34Z2009-06-03T13:56:57Z
<p>I need to remove a bunch of <code>&apos;</code> 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 for an Actionscript 2 solution, still reply with an Actionscript 3 answer if you have one for anyone else who might need it.</p>
http://stackoverflow.com/questions/68633/regex-that-will-match-a-java-method-declaration1Regex that Will Match a Java Method DeclarationAnton2008-09-16T01:44:18Z2009-05-11T10:23:14Z
<p>I need a Regex that will match a java method declaration. I have come up with one that will match a method declaration, but it requires the opening bracket of the method to be on the same line as the declaration. If you have any suggestions to improve my regex or simply have a better one then please submit an answer.</p>
<p>Here is my regex: <code>"\w+ +\w+ *\(.*\) *\{"</code></p>
<p>For those who do not know what a java method looks like I'll provide a basic one:</p>
<pre><code>int foo()
{
}
</code></pre>
<p>There are several optional parts to java methods that may be added as well but those are the only parts that a method is guaranteed to have.</p>
<p>Update:
My current Regex is <code>"\w+ +\w+ *\([^\)]*\) *\{"</code> so as to prevent the situation that Mike and adkom described.</p>
http://stackoverflow.com/questions/649463/is-there-an-elegant-work-around-to-concatenation1Is there an elegant work around to concatenation?Anton2009-03-16T06:39:40Z2009-03-16T22:10:39Z
<p>I am writing a mad libs program for fun and to just program something. The program itself is pretty straight forward, but I find myself resorting to several concatenations due to the nature of the game where you place user given words into a sentence. Is there an elegant work around to resort to less concatenations or even eliminate them for something more efficient? I know in the end it will make no difference if I use concatenations or not, but I am curious if there is a more elegant way to write this program.</p>
<p>Update: I am using java, but if there is a general solution to escaping concatenation that would be appreciated too.</p>
http://stackoverflow.com/questions/649463/is-there-an-elegant-work-around-to-concatenation/649559#6495590Answer by Anton for Is there an elegant work around to concatenation?Anton2009-03-16T07:29:06Z2009-03-16T20:10:27Z<p>The solution I came up with after seeing everyone else's response is that in general the concatenations cannot be avoided without knowing the size of the final string. So after I receive the replacement words from the user then determine the final size of the string I will create a StringBuilder of that size. This will allow me to append all the other strings without Java internally recreating the StringBuilder. In addition this avoids making unnecessary strings that Java normally creates since Java's append actually creates a string buffer and new string for each "+" operator. </p>
<p>PS. Thank you mmyers for letting me know that StringBuilder is slightly faster than StringBuffer.</p>
<p>PSS. I noticed I got too nitpicky about optimization because it was fun and that my solution most definitely does not answer my original question mostly because its not elegant.</p>
http://stackoverflow.com/questions/647390/how-to-stay-connected-to-the-programming-community4How to stay connected to the programming community?Anton2009-03-15T06:29:24Z2009-03-15T22:14:41Z
<p>I often find myself detached from the programming community and I generally find out about all the "cool" things that are happening after they have already happened. So my question is how do you stay connected and up to date with the programming community? Podcasts, blogs, meet ups, conventions, twitter, talking with your co-workers whatever it may be that keeps you connected. Please provide actual examples of which blogs, talks, etc you use.</p>
http://stackoverflow.com/questions/461796/dataflow-programming-languages/647375#6473752Answer by Anton for Dataflow Programming LanguagesAnton2009-03-15T06:10:51Z2009-03-15T06:10:51Z<p>Dataflow programming languages are ones that focus on the state of the program and cause operations to occur according to any change in the state. Dataflow programming languages are inherently parallel, because the operations rely on inputs that when met will cause the operation to execute. This means unlike a normal program where one operation is followed by the next operation, in a dataflow program operations will execute as long as the inputs are met and thus there is no set order.</p>
<p>Often dataflow programming languages use a large hashtable where the keys are the data of the program and the values of the table are pointers to the operations of the program. This makes multicore programs easier to create in a dataflow programming language, since each core would only need the hashtable to work.</p>
<p>A common example of a dataflow programming language is a spread sheet program which has columns of data that are affected by other columns of data. Should the data in one column change, other data in the other columns will probably change with it. Although the spread sheet program is the most common example of a dataflow programming language, most of them tend to be graphical languages.</p>
http://stackoverflow.com/questions/647111/newinstance-vs-new/647135#6471350Answer by Anton for newInstance() vs newAnton2009-03-15T02:19:22Z2009-03-15T02:19:22Z<p>It is likely that any overhead newInstance() may have will be so insignificant it does not matter if you use it. Though if it comes down between which is faster new is probably the faster one.</p>
http://stackoverflow.com/questions/624118/what-language-should-i-use-in-conjunction-with-mysql2What language should I use in conjunction with MySQLAnton2009-03-08T19:17:37Z2009-03-08T19:32:05Z
<p>I have no database experience and want to get started with MySQL. I have often seen it paired with Php and other various languages. Which language should I use in conjunction with MySQL? I am most familiar with Java currently, but I am very willing to learn a new language that works well with MySQL.</p>
http://stackoverflow.com/questions/60464/changing-the-default-folder-in-emacs8Changing the default folder in emacsAnton2008-09-13T10:34:52Z2009-03-02T12:25:19Z
<p>I am fairly new to emacs and I have been trying to figure out how to change the default folder for c-x c-f on start up. For instance when I first load emacs and hit c-x c-f its default folder is C:\emacs\emacs-21.3\bin, but I would rather it be the desktop. I believe there is some way to customize the .emacs file to do this, but I am still unsure what that is.</p>
<p>Update: There are three solutions to the problem that I found to work, however I believe solution 3 is windows only.</p>
<ul>
<li>Solution 1: Add <code>(cd "C:/Users/Name/Desktop")</code> to the .emacs file</li>
<li>Solution 2: Add <code>(setq default-directory "C:/Documents and Settings/USER NAME/Desktop/" )</code> to the .emacs file</li>
<li>Solution 3: Right click the emacs short cut, hit properties and change the start in field to the desired directory.</li>
</ul>
http://stackoverflow.com/questions/1235241/how-to-have-only-of-one-instance-of-your-program-running-at-the-same-time-in-javaComment by Anton on How to have only of one instance of your program running at the same time in javaAnton2009-08-05T19:32:24Z2009-08-05T19:32:24ZCan't delete this question it is a repeat did not see the question i wanted in the search result.http://stackoverflow.com/questions/1235241/how-to-have-only-of-one-instance-of-your-program-running-at-the-same-time-in-java/1235255#1235255Comment by Anton on How to have only of one instance of your program running at the same time in javaAnton2009-08-05T19:31:45Z2009-08-05T19:31:45Zfunny how the search didnt come up with that
http://stackoverflow.com/questions/1230947/pointer-questionComment by Anton on Pointer questionAnton2009-08-05T03:07:26Z2009-08-05T03:07:26ZI remember bumping into this before myself and it can be fairly hard to realize why its happening. Good question, could use a less general title though.http://stackoverflow.com/questions/1092604/initializing-reference-types-outside-of-a-function-in-actionscript-2Comment by Anton on Initializing reference types outside of a function in Actionscript 2Anton2009-08-04T20:27:52Z2009-08-04T20:27:52ZThe accepted answer explains why this happens, and my answer makes it work properly.http://stackoverflow.com/questions/1225391/connecting-to-an-ntp-server-keeps-failing-java/1225455#1225455Comment by Anton on Connecting to an NTP server keeps failing (Java)Anton2009-08-04T02:21:23Z2009-08-04T02:21:23ZIts both ty for the help.http://stackoverflow.com/questions/1225391/connecting-to-an-ntp-server-keeps-failing-java/1225440#1225440Comment by Anton on Connecting to an NTP server keeps failing (Java)Anton2009-08-04T02:09:27Z2009-08-04T02:09:27ZAny idea what else it requires to request a time?http://stackoverflow.com/questions/1225391/connecting-to-an-ntp-server-keeps-failing-javaComment by Anton on Connecting to an NTP server keeps failing (Java)Anton2009-08-04T01:42:01Z2009-08-04T01:42:01ZOh yeah and the "your lame" part was not from the code in the book everything else I'm fairly sure is identical.http://stackoverflow.com/questions/1222061/can-i-use-printcomponent-without-having-to-draw-component-to-screen-first/1223446#1223446Comment by Anton on Can I use printComponent without having to draw component to screen first?Anton2009-08-03T17:03:27Z2009-08-03T17:03:27ZYou should accept camickr's answer so other people know the answer.http://stackoverflow.com/questions/1222061/can-i-use-printcomponent-without-having-to-draw-component-to-screen-firstComment by Anton on Can I use printComponent without having to draw component to screen first?Anton2009-08-03T14:44:57Z2009-08-03T14:44:57ZI'm a bit confused now on what is causing your problem. Are you saying that drawing the JFrame then adding the JPanel does not display anything even if you paint it again after adding the JPanel?http://stackoverflow.com/questions/1217972/what-role-playing-systems-are-thereComment by Anton on What Role-Playing Systems are there?Anton2009-08-02T02:03:06Z2009-08-02T02:03:06ZGeez people need to start up voting questions. Good question.http://stackoverflow.com/questions/1149816/stock-quotes-apiComment by Anton on Stock quotes API?Anton2009-07-30T18:53:56Z2009-07-30T18:53:56ZDefinitely programming related and very useful question
http://stackoverflow.com/questions/1200299/using-loadvars-to-load-cbsnews-com-sometimes-returns-gif89a/1200536#1200536Comment by Anton on Using LoadVars to load cbsnews.com sometimes returns GIF89aAnton2009-07-29T14:29:18Z2009-07-29T14:29:18ZI'm actually hitting the site to find out the rss link, and I could make a special case for when you see cbsnews.com to go to the rss feed directly, but that seems fairly lame.http://stackoverflow.com/questions/1200299/using-loadvars-to-load-cbsnews-com-sometimes-returns-gif89a/1200536#1200536Comment by Anton on Using LoadVars to load cbsnews.com sometimes returns GIF89aAnton2009-07-29T14:16:47Z2009-07-29T14:16:47ZI've had it return GIF89a on the first time requesting it for over a day.http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1158425#1158425Comment by Anton on Learning to write a compilerAnton2009-07-27T18:53:25Z2009-07-27T18:53:25ZAlready included in the Big List of Resourceshttp://stackoverflow.com/questions/1154617/loading-a-blogger-page-in-an-xml-object-in-actionscript-results-in-missing-tags/1159457#1159457Comment by Anton on Loading a Blogger page in an XML object in ActionScript results in missing tagsAnton2009-07-22T13:37:57Z2009-07-22T13:37:57ZThe page I was using as an example wasn't mine its another programmer's blog.