display swf in cf7 panel

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default display swf in cf7 panel

    Hey,

    I am trying to figure out how to display a .swf file in a cfform format =
    flash page?
    I tried to insert the object code, and that did not do it. I don't understand
    why it does not work.


    thanks

    dan


    fmdano Guest

  2. Similar Questions and Discussions

    1. Combine Spry Tabbed Panel and Spry HTML Panel
      I would like to maintain the presentation of the tabbed panel and utilize its ability to load content from a Spry Dataset, but I would also like to...
    2. Panel component
      How do I round all 4 corners of a panel component? I can use CSS to round the top corners with: cornerRadius: 5; However, this does not round the...
    3. Sliding Panel Widget Missing from Default Display?
      In the Dreamweaver CS3 UI, across the top just below the toolbar, when I select each of the number of options, a new set of icon short cuts usually...
    4. Multiple DB Columns display in <cfselect display>
      *disclaimer* -- I'm a CF n00b. Hello all,
    5. LG 700S monitor display does not work for 1024x768 display
      Hello, I have a LG 700S 17 inch monitor which does not work for the display setting of 1024X768 in Red Hat Linux 8.0. Has anyone of you having...
  3. #2

    Default Re: display swf in cf7 panel

    try an embed tag
    Dan Bracuk Guest

  4. #3

    Default Re: display swf in cf7 panel

    dan,
    You need to use
    <cfformitem type="html">
    <img src="yourmovie.swf" />
    </cfformitem>
    possibly adding width and height to make it appear correctly. You may also want to wrap it with <p> tags
    JadeBlue Guest

  5. #4

    Default Re: display swf in cf7 panel

    well, I tried using:

    <cfformitem type="html">
    <img src="yourmovie.swf" />
    </cfformitem>
    possibly adding width and height to make it appear correctly. You may also
    want to wrap it with <p> tags

    it would display the .swf, but the .swf would not work exactly right. I am
    using a music player app I found online. I am trying to plug it into the cfform
    so i can use it with my music files. It has a dropdown at the top that is
    suppose to change depending on what gets selected. that does not work. also a
    slider bar in a text area in the .swf does not work either.

    I am wondering since cfform format=flash is in flash, could that be messing
    with my .swf?

    Ugh, i was hoping to get the music playing into a cfform panel because the
    panels look nicer than tables.

    any info would be great.


    dan


    fmdano Guest

  6. #5

    Default Re: display swf in cf7 panel

    well, I tried using:

    <cfformitem type="html">
    <img src="yourmovie.swf" />
    </cfformitem>
    possibly adding width and height to make it appear correctly. You may also
    want to wrap it with <p> tags

    it would display the .swf, but the .swf would not work exactly right. I am
    using a music player app I found online. I am trying to plug it into the cfform
    so i can use it with my music files. It has a dropdown at the top that is
    suppose to change depending on what gets selected. that does not work. also a
    slider bar in a text area in the .swf does not work either.

    I am wondering since cfform format=flash is in flash, could that be messing
    with my .swf?

    Ugh, i was hoping to get the music playing into a cfform panel because the
    panels look nicer than tables.

    any info would be great.


    dan


    fmdano 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