Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CorrieLee

  1. CorrieLee

    actionscript 1.0 include files in actionscript 2.0

    Thanks, what about using old 'classes'? The people who designed the message format for my game server have based the xml I will receive on the format used to parse with XML-RPC ~ which is written in AS 1.0, and my game is written in AS 2.0... I've tried including, importing, just having the...
  2. CorrieLee

    actionscript 1.0 include files in actionscript 2.0

    Am I able to include files that were written in actionscript 1.0 in a application that is written in actionscript 2.0?
  3. CorrieLee

    Performance vs. file size

    Oh, just to clarify... 30 seconds was an exaggeration... we're shooting for less than 10 for low end user. :) thanks
  4. CorrieLee

    Performance vs. file size

    Hi there, Just looking for some opinions on what the recommended file size/fps for a flash app would be (per modem/processor speeds). Our designers want some high end graphics, alphas, animations, etc, but... we really need it functional, smooth, and we need to cater to 'below the average...
  5. CorrieLee

    Problem with eventHandler for object instantiated inside another objec

    I think I figured it partly out... If I code the onRelease directly in the square object and don't try to set it at all in the container class, it'll fire and catch, and I can call a method in the container class from there... Still doesn't explain why I can't see anything outside of the...
  6. CorrieLee

    Problem with eventHandler for object instantiated inside another objec

    Ok, here's some of the code. This is (some of) the Square class: class Square extends MovieClip { var cParent:ContainerSquares; function Square() {} function setParent(tParent:ContainerSquares):Void { cParent = tParent; } } This is (some of) the ContainerSquares class: class...
  7. CorrieLee

    Problem with eventHandler for object instantiated inside another objec

    Thanks, this does work really well when it's on the main timeline, but it still doesn't work when I have the onRelease being written inside of a class. I'll try to be more clear about what is happenning, maybe I'll post the code tomorrow (it's at work). The Square class is linked to a movie...
  8. CorrieLee

    Problem with eventHandler for object instantiated inside another objec

    I just tried this, and it still didn't work... it's still not seeing any functions outside of the onRelease function. Any other suggestions? c.
  9. CorrieLee

    Problem with eventHandler for object instantiated inside another objec

    Hi there, In my application I have a container object (ContainerSquares) that has a number of smaller objects (Square). I create an instance of the container class on the main timeline, and create the instances of the squares inside of the container class. The Square object is a movieClip in...
  10. CorrieLee

    Problem setting LoadVars variables through #include file

    LOL, you mean your skills end at Flash and ASP? No mind-reading? ;) Ok, I actually don't have an asp file. I have a .inc I have a flash app that users put in ticket numbers to win a prize. The flash app creates a new LoadVars() object, assigns the ticket number, and some other info to...
  11. CorrieLee

    Problem setting LoadVars variables through #include file

    Hi there, My loadvars variables aren't setting through my include file. I have some error checking, and other things happening within that include file. The URL location for the sendAndLoad is the include file, and I need it to load the updated variables into another LoadVars Object (I tried...
  12. CorrieLee

    Date Functions for month/day/year

    Thanks, That sort of works, but the year is coming back as 104 ? actualDate = "Mon Aug 16 00:00:00 GMT-0700 2004" outputDate = "104-7-16" StartConfirm_txt.text = tempStart.getYear() + "-" + tempStart.getMonth() + "-" + tempStart.getDate(); Any ideas? Corrie
  13. CorrieLee

    Date Functions for month/day/year

    Hi there, I was just wondering if there was a fast way to pull the year/month/day out of a flash date? Most languages have date functions like this, but I can't find anything in flash? Thanks, Corrie.
  14. CorrieLee

    HTML text in a datagrid

    Perfect... at least now I can just get over it and move on.. ;) Thanks! Corrie.
  15. CorrieLee

    Write to XML file using flash mx 2004 Pro

    Hi WiK, You could try something like this: fBuildXML = function(Outgoing_str){ Outgoing_str = "<ParentNode>" Outgoing_str = Outgoing_str + "<ChildNode1>" + "Child Node 1 Data" + "</ChildNode1>"; Outgoing_str = Outgoing_str + "<ChildNode2>" + "Child Node 2 Data" + "</ChildNode2>"...

Part and Inventory Search

Back
Top