how to load a pile of swfs one at a time in a loop and use a switch/case script to sort them.
this one is not coming up in any of my actionscript books so far and wondering if anyone has done this before.
what im trying ot do is have teh following happen :
write a loop that does the following
1. opens a swf named from d000 to d750.swf (yes theirs that many)
2. pulls a list of the symbols and returns one of them to switch/case search
3. run said list through a switch and case filter and pushes the results to the output console
4. goes to the next file and repeats this until all the files are processed.
the results i'm looking for would look like this
ittem 0: s000 : this is a shirt
item 1: s001 : this is a <not mathcuing any of the above>
item: s003 this is a pair of pants
item s004: this is a pair of glasses
item s005: this is a dress
how does it know this, the switch script will be looking for "pants", "shirt" and send to the output what it is.
i need this list to allow my reverse string generator (i select pants on the player screen and it gives a list of pants to choose from,etc) to know what files are and looking at thousnads of files are not very efficent.
the part im not finding the info is how do i get the list of symbols IN a swf if their not set to the stage by addchild, i've seen things that dump the displaylist, but its also not one item tyopically that a switch search can handle.
