A Flash Developer Resource Site

Search:

Type: Posts; User: Aquaman

Page 1 of 4 1 2 3 4

Search: Search took 0.07 seconds.

  1. I'm not sure which bug you are refering to, but...

    I'm not sure which bug you are refering to, but the bug in the older version of the Flash 6 plugin is a severe one but is difficult to exploit.

    The bug is what is known as a buffer overflow, this...
  2. Thread: Flash5 and XML

    by Aquaman
    Replies
    7
    Views
    1,855

    Actually, if you force users to use the newest...

    Actually, if you force users to use the newest version of the player (r41/42) you can delete whitespace properly.

    before you load XML into your XMLobject do this

    myXML.ignoreWhite = true

    And...
  3. Replies
    7
    Views
    576

    Actually, if you read up on WDDX:...

    Actually, if you read up on WDDX:
    http://www.wddx.org

    And then read up on the ColdFusion WDDX functions and snag yourself my WDDX serializer/deserializer from the MM exchange you will be in a...
  4. Thread: Flash 5 Bug?

    by Aquaman
    Replies
    1
    Views
    308

    == is for comparison, not =

    == is for comparison, not =
  5. Thread: XML bug?

    by Aquaman
    Replies
    3
    Views
    677

    Its not a bug, its how OOP programming in F5...

    Its not a bug, its how OOP programming in F5 works.

    The line:
    navXML.onLoad = onloadNav;

    Overrides the built in onLoad method of your navXML object, so, if onLoadNav gets called it...
  6. Replies
    0
    Views
    329

    Hey folks, I just wanted to let you know about...

    Hey folks, I just wanted to let you know about the new searchable achives from the Flashcoders list...
    Enjoy!

    http://chattyfig.figleaf.com/
  7. Replies
    1
    Views
    306

    Just read the instructions! After you install...

    Just read the instructions! After you install the Extension Manager from MM, you can open the files you DL from the exchange and each has specific instructions in it how it works, etc.
  8. Replies
    2
    Views
    462

    Every extension explains where it gets...

    Every extension explains where it gets installed... just read the description of the extension after it gets installed!
  9. Replies
    6
    Views
    796

    Sounds that way (I'm using older docs I got...

    Sounds that way (I'm using older docs I got during the beta, and null isn't mentioned here)

    try:
    socket.connect(null, "1188");

    Also, keep in mind Flash doesn't speak any real protocol, just...
  10. Replies
    6
    Views
    796

    You can't connect to null! the connect method...

    You can't connect to null!
    the connect method fires true if the inital stage of the connection works... with apparently it does with no host specified!
    Also, you need to put the hostname and port...
  11. Replies
    7
    Views
    647

    Yep

    Yep
  12. Replies
    1
    Views
    517

    Look up the delete action in the AS dictionary......

    Look up the delete action in the AS dictionary... its what you need.
  13. Replies
    6
    Views
    796

    You didn't do anything wrong, its just that since...

    You didn't do anything wrong, its just that since Flash's XML capabilities are so simple, it requires that you "tell" it when you are done setting data to it by sending an ASCII null (chr(0)) to it....
  14. Replies
    7
    Views
    647

    Actually, its *much* easier now that the MM Flash...

    Actually, its *much* easier now that the MM Flash Exchange is up and running.

    Go to
    http://exchange.macromedia.com

    and get the extension manager...
    then snag my deluxe tab order smart clip....
  15. Replies
    4
    Views
    559

    Just FYI, Harpoon is going to include 3 types of...

    Just FYI, Harpoon is going to include 3 types of Flash controls, and every control can instiatiated by either Cold Fusion or JSP. The 3 types are: navigation controls, business objects (calculators,...
  16. Replies
    8
    Views
    1,007

    You'll notice that the window text says "Type XML...

    You'll notice that the window text says "Type XML here"

    If you don't type actual XML there, it will bug out on you.

    One-to-one chats are not really possible with F5. Given how XMLsockets...
  17. Replies
    8
    Views
    1,007

    If you want to play with this head on over to:...

    If you want to play with this head on over to:
    http://www.figleaf.com/development/flash5/

    and snag my AquaServer v1.5

    Its a simple, free Java server for playing with Flash 5's socket...
  18. Hey all... The other day I stopped in Radio...

    Hey all...
    The other day I stopped in Radio Shack (You've got questions, we've got blank stares) and picked up one of those free CueCat decoders because I heard they could be hacked into real...
  19. You *CAN* do this

    Simply turn on the HTML option for the text field. Then you can use the FONT tag with the color attribute in your text and it will work just fine.
  20. Replies
    15
    Views
    2,220

    The send actually works just fine, however the...

    The send actually works just fine, however the language you work with has to be able to deal with non-name/value pair POST data. Its pretty hairy, I have to say. Theres a lot of info about this in...
  21. Replies
    7
    Views
    989

    Bit-twiddling is always faster than actual...

    Bit-twiddling is always faster than actual mathematical calculations... thats why. :-)
  22. Replies
    1
    Views
    507

    Not sure what you are doing... that code works...

    Not sure what you are doing... that code works fine for me!

    function Counter () {
    // initialises a counter
    this.myvalue = 0;
    this.step = 1;
    }


    function Counter_value () {
  23. You can *not* use include like that. Include only...

    You can *not* use include like that. Include only works at compile time.
  24. Replies
    4
    Views
    693

    _root isn't obscure. Its mentioned a number of...

    _root isn't obscure. Its mentioned a number of times in the AS dictionary. It just means the main timeline.

    As for local vars, etc. The reason you can use array access is for two reasons, first of...
  25. Replies
    2
    Views
    578

    function trimXML(myXML){ text =...

    function trimXML(myXML){
    text = myXML.toString();
    i=0;
    while (text.charAt(i) != "<" && i<text.length){
    ++i;
    }
    myXML.parseXML(text.substr(i));
    }
Results 1 to 25 of 99
Page 1 of 4 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center