A Flash Developer Resource Site

Search:

Type: Posts; User: tupps

Page 1 of 20 1 2 3 4

Search: Search took 0.30 seconds.

  1. Replies
    2
    Views
    1,014

    The Xml is available after the onLoad function....

    The Xml is available after the onLoad function. You must have pretty big xml file to warrant deleting the xml file.

    Thanks

    Luke
  2. Thread: next btn

    by tupps
    Replies
    5
    Views
    1,178

    Probably security, are you loading the xml file...

    Probably security, are you loading the xml file from the same server as your local file? It is usually best to reference the eg load("myFile.xml") rather than specify the entire path. A final note...
  3. Thread: next btn

    by tupps
    Replies
    5
    Views
    1,178

    Basically you need to add an else statement to...

    Basically you need to add an else statement to the if statement:
    if (p<(total-1)) {

    My guess you would then set p = 0, and then run the if (loaded ==... code block.

    Thanks

    Luke
  4. Replies
    2
    Views
    1,372

    Not really a question for the XML forum.

    Not really a question for the XML forum.
  5. Thread: xml sendAndLoad

    by tupps
    Replies
    3
    Views
    1,573

    Are you trying to change the file on the web...

    Are you trying to change the file on the web server?

    Are you using a backend script?

    If you aren't using a script then you can't change the file. Otherwise anyone would be able to change any...
  6. Thread: xml sendAndLoad

    by tupps
    Replies
    3
    Views
    1,573

    Are you able to verify that the server is sending...

    Are you able to verify that the server is sending out the correct data? Check the XML file with your browser and make sure that the XML file is being returned.

    The other thing to check is to look...
  7. Replies
    49
    Views
    8,410

    Flash can create and edit xml files. However...

    Flash can create and edit xml files. However flash cannot save the files anywhere without the help of some backend scripting. So whatever the solution you will need a script to save the files to...
  8. Replies
    3
    Views
    1,578

    Where are you loading the jpegs from? I would...

    Where are you loading the jpegs from? I would guess that it is a security problem.

    Have you checked the webserver logs to see if the the jpegs are being requested?

    Thanks

    Luke
  9. Replies
    8
    Views
    1,979

    The ID tags are handled differently. X-Path is an...

    The ID tags are handled differently. X-Path is an addon technology. I don't use ID tags much but I am pretty sure you can use xmlDoc.idTagName to get to the node with the ID tag.

    Thanks

    Luke
  10. Is your .aspx returning the correct data? That...

    Is your .aspx returning the correct data? That would be my guess, debug your aspx page to see if the correct data is being returned. The xml doesn't come through as a standard parameter so this might...
  11. Replies
    8
    Views
    1,979

    you can use the ID tag that you have in your Xml...

    you can use the ID tag that you have in your Xml tag. BTW you have content1 more than once which isn't correct XML.

    You should be able to use xml["content1"] if you only have the id tag in the...
  12. Replies
    10
    Views
    1,393

    It looks like the code is filling in a html text...

    It looks like the code is filling in a html text box. You will need to write html code that creates a link. < a href="link" target="newWindow"> is what you need wrapped around that code.

    I would...
  13. Replies
    6
    Views
    2,440

    Nothing that I know of. I would guess that you...

    Nothing that I know of. I would guess that you would build this sort of thing in flash and use the xml and images to customise the banner.

    Thanks

    Luke
  14. Replies
    1
    Views
    1,334

    Why are you using a 3 dimensional array to store...

    Why are you using a 3 dimensional array to store your values. From what I can see you are not making anything easier for yourself with your array.

    Why not use a one dimensional array instead and...
  15. Replies
    1
    Views
    1,464

    Accent should definitely appear. Later version of...

    Accent should definitely appear. Later version of flash can support Unicode XML files, and earlier versions supported Xml with things like accents etc. I would suggest there are 2 possible problems:...
  16. Replies
    4
    Views
    1,468

    I don't think Flash and XML justify a book all to...

    I don't think Flash and XML justify a book all to themselves. Personally I would get Colin Moock's Actionscript the Definitive Guide as it covers most topics about flash development in a fair bit of...
  17. Replies
    2
    Views
    1,385

    There are/was a couple of XML to Object...

    There are/was a couple of XML to Object translators which would create an object structure for you.

    At the end of the day the XML structure in Flash is an Array, and it isn't to hard to use once...
  18. Replies
    1
    Views
    1,221

    Well you can, but you have to do all the parsing...

    Well you can, but you have to do all the parsing & implementation of the file. Probably not what you are looking for.

    Thanks

    Luke
  19. Thread: google news feed

    by tupps
    Replies
    3
    Views
    1,616

    Try this: ...

    Try this:

    http://tupps.com/flash/examples/loading_html/demoText.html

    Thanks

    Luke
  20. Replies
    3
    Views
    1,709

    Well PHP will be able to read the file from the...

    Well PHP will be able to read the file from the other server. The other option would be to get the PHP script to proxy the xml to your flash application, and then read the xml in the flash file.
    ...
  21. Replies
    3
    Views
    1,664

    The web.config is the asp.net configuration file,...

    The web.config is the asp.net configuration file, and I believe that by default IIS won't allow you to read this file.

    The easiest way to test this is to use a web browser and see if you can load...
  22. Replies
    3
    Views
    1,709

    PHP has functions to work with Xml. Why don't you...

    PHP has functions to work with Xml. Why don't you just save the XML file to your server rather than converting it to variables?

    Thanks

    Luke
  23. Replies
    29
    Views
    9,142

    Does this code help: ...

    Does this code help:

    http://tupps.com/flash/examples/loading_html/demoText.html

    Thanks

    Luke
  24. Replies
    1
    Views
    1,218

    Why can't you just use a counter that you...

    Why can't you just use a counter that you increment every time you get an new button?

    Thanks

    Luke
  25. Replies
    2
    Views
    1,073

    the function parseXML(createXML) are you passing...

    the function parseXML(createXML) are you passing the createXML in or is it the on load?

    Personally I would either run the code in debug mode or put a trace statement in the for loop to find out if...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center