Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default Flash and CFML

    I just posted this same question but was in the wrong section of the forums. I
    am very new to flash but can definitely see the potential of this software with
    my first tute completed. I learned how to show a slideshow in flash using an
    xml file. However, I want to see if its possible to have the flash file call a
    different xml file based on a variable. I'm sure I can do this but want to
    know how. Currently I have this in my flash file...

    slides_xml = new XML();
    slides_xml.onLoad = startSlideShow;
    slides_xml.load("slides.xml");
    slides_xml.ignoreWhite = true;


    I want to do something along the lines of this...

    slides_xml = new XML();
    slides_xml.onLoad = startSlideShow;

    If #user_id# is not null
    slides_xml.load("#user_id#_slides.xml");

    else
    slides_xml.load("slides.xml");


    slides_xml.ignoreWhite = true;


    Can I do this?

    idesdema Guest

  2. Similar Questions and Discussions

    1. CFML/HTML and flash
      Hello, Ok, here?s what?s going on - I have a CFML Tag that displays a number from my Database. I want to get flash to be able to read this number...
    2. Need Help on simple Flash CFML script
      :confused; Trying to display user selections from a Flash form to a Coldfusion page, formHandler.cfm. How can I grab the values contained in the...
    3. CFML & MySQL
      Can I use CFML with MySQL? at the moment I am using CFML with MS Access. Can I use the same CFML code with MySQL? Dario
    4. Flash and CFML or XML dynamic updates
      I have this project I am working on where we have this nice Flash Map - What I now need the map to be able to do is take data that can be exported...
    5. use cfml in JS
      Hi Is it possible to use ColdFusion functions in Javacript ? e.g. (won't work) <script language="JavaScript" type="text/javascript"> <!--...
  3. #2

    Default Flash and CFML

    Hello. I am very new to Flash and took the tutorial from the adobe site on
    "Creating an XML slideshow with Flash." It was awesome and I'm addicted.
    However, the tutorial only lets me pull in slides from a static xml file. Is
    there anyway I can put a variable in the call to the xml file so based on who
    the user is, a different xml file will be called?

    My hosting company does not support server side action script. Does that
    matter?

    idesdema Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139