A Flash Developer Resource Site

Search:

Type: Posts; User: neeld

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Thread: what is (mvc)

    by neeld
    Replies
    3
    Views
    857

    Actually, I think that in this case, mvc is the...

    Actually, I think that in this case, mvc is the file extention for Miva pages. Miva is a scripting language like PHP or ASP but with XML syntax, a little more like ColdFusion I guess.
    ...
  2. Replies
    6
    Views
    792

    just to add, the nodeType equals 5 thing was an...

    just to add, the nodeType equals 5 thing was an arbitrary call on my part. Since in XPath, attributes are handled like other nodes, unlike how the Flash XML object handles them, I needed to create a...
  3. Replies
    6
    Views
    792

    Thanks XMLEvangelist. I´m down in Costa Rica...

    Thanks XMLEvangelist.

    I´m down in Costa Rica on a much needed vacation at the moment, but I´ll post an update when I get home in a couple of weeks.

    Neeld
  4. Thread: Svg/smil?

    by neeld
    Replies
    2
    Views
    621

    A little SVG but I've only read the spec for...

    A little SVG but I've only read the spec for SMIL, I've never really done anything with it. What's the question?
  5. Replies
    1
    Views
    639

    I think you are looking for ...

    I think you are looking for

    loginXML.send("http://myPHPPage")
    or
    loginXML.sendAndLoad("http://myPHPPage",myReturnXMLObject)

    check out the AS dictionary for the specifics
  6. Replies
    2
    Views
    694

    I'm not really sure what your trying to do. Are...

    I'm not really sure what your trying to do. Are you trying to change the name of one person, or create a new XML object with one person cloned from a different object and change the name.

    If you...
  7. Replies
    1
    Views
    789

    check out MovieClip.setMask in the AS panel.

    check out MovieClip.setMask in the AS panel.
  8. Replies
    6
    Views
    792

    XPath and Flash.. again..

    If anyone is looking to play around with Flash and XPath, I could use a little help.

    I'm putting together an XPath object (I see I'm not the only one) for actionscript. It's getting to the point...
  9. You can use dynamic text, but you need to include...

    You can use dynamic text, but you need to include font outlines if you plan on rotating or masking it.
  10. Replies
    3
    Views
    635

    Soon Certified Flash MX Developer Study Guide...

    Soon

    Certified Flash MX Developer Study Guide
    http://www.amazon.com/exec/obidos/ASIN/0321157303/qid=1029827115/sr=1-3/ref=sr_1_3/103-1847019-8963001

    Certified Flash MX Designer Study Guide...
  11. Replies
    2
    Views
    778

    I put out a treenav in Flash on the Macromedia...

    I put out a treenav in Flash on the Macromedia exchange a while back. The exchange is down at the moment, but try a little later and look for XFactorStudio TreeNav under navigation.

    Neeld
  12. Thread: Fast XML parsing

    by neeld
    Replies
    5
    Views
    1,155

    Hi there, ASnative is not documented, it's...

    Hi there,

    ASnative is not documented, it's where Flash hides all its internal functions. I only know about it from XMLnitro written by Branden Hall. Where he found out about it, I have no idea.
    ...
  13. Thread: Fast XML parsing

    by neeld
    Replies
    5
    Views
    1,155

    Hi, I thought this might come in handy for...

    Hi,

    I thought this might come in handy for those who have to work with large XML files.

    I put together a lightweight SAX parser that bypasses the XML tree construction that is the root of the...
  14. Replies
    10
    Views
    1,629

    http://www.were-here.com/forums/showthread.php?thr...

    http://www.were-here.com/forums/showthread.php?threadid=94926
    [Edited by neeld on 10-17-2001 at 10:03 PM]
  15. Replies
    10
    Views
    1,629

    In transit, yes, the XML is just a series of...

    In transit, yes, the XML is just a series of characters (String). Flash will automatically parse them into your recieving XML object (someotherobj in your code snip).

    Don't worry how, just close...
  16. Replies
    6
    Views
    2,329

    Hi, I put together a socket server with the...

    Hi,

    I put together a socket server with the idea of separating the actual server-side xml processing from the core server logic.

    The server can handle an unlimited (within reason) number of...
  17. Replies
    10
    Views
    1,629

    Hi there, It's a little tricky. The XML...

    Hi there,

    It's a little tricky.

    The XML object in Flash POSTs the data as the body of the POST. That means there is no name to use as in
    request.getParameter("sorryNoName");

    you can grab...
  18. Thread: C#, XML, Flash

    by neeld
    Replies
    10
    Views
    18,612

    It works fine, but with a couple catches. 1 -...

    It works fine, but with a couple catches.

    1 - SOAP goes both directions, so you generally don't use the much simpler GET method with a couple variables, you need to use the xml.sendAndLoad()...
  19. I had to do a yoga demo program for a client...

    I had to do a yoga demo program for a client once.

    I ended up doing the modeling in Poser instead of using a movie (I sure don't bend that way) but in the end, the result was the same. I had a...
  20. Replies
    3
    Views
    476

    I suspect your using the 5.0.30 player (thats the...

    I suspect your using the 5.0.30 player (thats the one in Flash the application too). It has a bu.. I mean quirk where the XML does not get returned to the correct location when you call XML.load from...
  21. Replies
    4
    Views
    676

    Hi Guru,retropunk,all I tweaked Branden's...

    Hi Guru,retropunk,all

    I tweaked Branden's script a little so it would correctly return a character array when you type

    Sring.split("");

    The built in split didn't work that way either,...
  22. Replies
    2
    Views
    508

    Absolutely. Generally, XML would be used as a...

    Absolutely.

    Generally, XML would be used as a way of packaging data to move it from the server to you flash movie. Then you loop through it and populate your variables and go about business as you...
  23. Replies
    2
    Views
    658

    I finally got around to doing a "basic" sample of...

    I finally got around to doing a "basic" sample of formatting an XML document in Flash.

    Hope it helps

    Neeld

    http://oc.xfactorstudio.com/downloads/plantsHTML/plants.html
    ...
  24. Thread: XML!!!!!!!!!!!

    by neeld
    Replies
    1
    Views
    628

    Hi, I'm writing this as I go, so beware of typos....

    Hi, I'm writing this as I go, so beware of typos.
    This will not ignore the carraige returns that are mistakenly counted as nodes in player version 5.0.30 (the editing environment too). In that...
  25. Thread: Flash5 and XML

    by neeld
    Replies
    7
    Views
    1,868

    It slowed me down pretty hard for a week or two....

    It slowed me down pretty hard for a week or two. Now, I'll never go back. I just (about) finished a fairly large degeneration project(turning a generator site into flash 5) in a ridiculously short...
Results 1 to 25 of 74
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center