HELP! Flash Slideshow and Cold Fusion

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

  1. #1

    Default HELP! Flash Slideshow and Cold Fusion

    Hey everybody, I am new to the scene of Flash and Cold Fusion scripting...
    well not so new with CF, but with Flash. Im in a pickle over here and have
    been combing the tutorials for the best solution. I am in a project currently
    that calls for a flash slideshow and the project manager has given me a fully
    functional slideshow and i need to dynamically populate it with a recordset. I
    have no idea where to begin with this and ANY help is much appriciated. Ill
    paste in the xml file and htm calling page below... thanks in advance!

    XML
    <?xml version="1.0" encoding="UTF-8"?>
    <gallery>
    <album id="test" title="Condominiums" lgPath="gallery/lg/"
    tnPath="gallery/tn/" description="Construction Images.">
    <img src="01.jpg"/>
    <img src="02.jpg"/>
    <img src="03.jpg"/>
    <img src="04.jpg"/>
    </album>
    </gallery>
    <!--It doesn't matter what you call the image, as long as it is listed in this
    file where you want it. You can also name the thumbnails the same as the larger
    image-->


    CALLING PAGE

    <html>
    <head>
    <title></title>
    </head>
    <body>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    version=7,0,0,0" width="550" height="400" id="construction" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="test.swf" /><param name="quality" value="high"
    /><param name="bgcolor" value="#ffffff" /><embed src="test.swf" quality="high"
    bgcolor="#ffffff" width="550" height="400" name="construction" align="middle"
    allowScriptAccess="sameDomain" type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </body>
    </html>



    code_hound11 Guest

  2. Similar Questions and Discussions

    1. Flash Form talking to cold fusion
      I am using CFGRID to display the results of a SQL query. I want to allow the user to select items from the list results and add the choices to a...
    2. Is Flash Remoting supported - without Cold Fusion?
      Will Flex 2 apps be able to consume Flash remoting services - without using Cold Fusion? We have a lot of these that have been coded in .Net...
    3. Cold Fusion MX 7 and Flash 8
      Anyone know of any books coming out soon that deal with CFMX7 and integrating Flash 8 with it? PedroAlberto
    4. Cold Fusion MX7 Flash Forms
      :frown; My flash forms are displaying fine , but as soon as I upload the form to server and request it, my info between cfselect tag does not...
    5. Cold Fusion 5 and Flash
      I was wondering how I can pass cfquery info via cfoutput to a flash file. I am new to Flash and am not sure how to pass varibles to Flash. I want...
  3. #2

    Default HELP! Flash Slideshow and Cold Fusion

    Hey everybody, I am new to the scene of Flash and Cold Fusion scripting...
    well not so new with CF, but with Flash. Im in a pickle over here and have
    been combing the tutorials for the best solution. I am in a project currently
    that calls for a flash slideshow and the project manager has given me a fully
    functional slideshow and i need to dynamically populate it with a recordset. I
    have no idea where to begin with this and ANY help is much appriciated. Ill
    paste in the xml file and htm calling page below... thanks in advance!

    XML
    <?xml version="1.0" encoding="UTF-8"?>
    <gallery>
    <album id="test" title="Condominiums" lgPath="gallery/lg/"
    tnPath="gallery/tn/" description="Construction Images.">
    <img src="01.jpg"/>
    <img src="02.jpg"/>
    <img src="03.jpg"/>
    <img src="04.jpg"/>
    </album>
    </gallery>
    <!--It doesn't matter what you call the image, as long as it is listed in this
    file where you want it. You can also name the thumbnails the same as the larger
    image-->


    CALLING PAGE

    <html>
    <head>
    <title></title>
    </head>
    <body>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    version=7,0,0,0" width="550" height="400" id="construction" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="test.swf" /><param name="quality" value="high"
    /><param name="bgcolor" value="#ffffff" /><embed src="test.swf" quality="high"
    bgcolor="#ffffff" width="550" height="400" name="construction" align="middle"
    allowScriptAccess="sameDomain" type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </body>
    </html>



    code_hound11 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