RE: Inserting flash into a CF page

2003-07-29 Thread Mike Townend
Without double checking the code... My first thoughts are that this appears
somewhere within a CFOUTPUT block so you need to double up all # to treat
them as literal # instead of the beginning of a variable


HTH



-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 29, 2003 14:37
To: CF-Talk
Subject: Inserting flash into a CF page


I['m trying to insert a flash movie into a CF page, and I used the code I 
found on the Macromedia website,

OBJECT 
classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354codebase=http://downloa
d.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0WIDTH
=550 
HEIGHT=400 id=myMovieNamePARAM NAME=movie VALUE=myFlashMovie.swf 
PARAM NAME=quality VALUE=high
PARAM NAME=bgcolor VALUE=#FF

EMBED src=myFlashMovie.swf quality=high bgcolor=#FF WIDTH=550 
HEIGHT=400 NAME=myMovieName ALIGN= 
TYPE=application/x-shockwave-flash 
PLUGINSPAGE=http://www.macromedia.com/go/getflashplayer;/EMBED
/OBJECT

but I get this error:

Invalid parser construct found on line 11 at position 95. ColdFusion was 
looking at the following text:XMP=/XMPInvalid expression format. The 
usual cause is an error in the expression structure.
The last successfully parsed CFML construct was static text occupying 
document position (4:44) to (11:86).

What is the correct code to embad a flash movie in a CF page?

T

Tired of your bookmarks/favourites being limited to one computer?  Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Inserting flash into a CF page

2003-07-29 Thread DDB Lists
It's probably within cfoutput tags so cf gets upset about the # in the
color parameter

replace #FF with White and all should be well


- Original Message -
From: Thane Sherrington [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 3:37 PM
Subject: Inserting flash into a CF page


 I['m trying to insert a flash movie into a CF page, and I used the code I
 found on the Macromedia website,

 OBJECT

classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354codebase=http://downloa
d.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0WIDTH
=550
 HEIGHT=400 id=myMovieNamePARAM NAME=movie VALUE=myFlashMovie.swf
 PARAM NAME=quality VALUE=high
 PARAM NAME=bgcolor VALUE=#FF

 EMBED src=myFlashMovie.swf quality=high bgcolor=#FF WIDTH=550
 HEIGHT=400 NAME=myMovieName ALIGN=
 TYPE=application/x-shockwave-flash
 PLUGINSPAGE=http://www.macromedia.com/go/getflashplayer;/EMBED
 /OBJECT

 but I get this error:

 Invalid parser construct found on line 11 at position 95. ColdFusion was
 looking at the following text:XMP=/XMPInvalid expression format. The
 usual cause is an error in the expression structure.
 The last successfully parsed CFML construct was static text occupying
 document position (4:44) to (11:86).

 What is the correct code to embad a flash movie in a CF page?

 T

 Tired of your bookmarks/favourites being limited to one computer?  Move
 them to the Net!
 www.stuffbythane.com/webfavourites makes it easy to keep all your
 favourites in one place and
 access them from any computer that's attached to the Internet.

 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Inserting flash into a CF page

2003-07-29 Thread Candace Cottrell
Are you using Dreamweaver?
 
If so, you can easily insert a swf into the page using
Insert--Media---Flash
 

object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0;
width=682 height=158
  
param name=movie value=testing.swf
  
param name=quality value=high
 
 embed src=testing.swf quality=high
pluginspage=http://www.macromedia.com/go/getflashplayer;
type=application/x-shockwave-flash width=682 height=158/embed
 
/object
 
 
 
Candace K. Cottrell, Web Developer 
The Children's Medical Center 
One Children's Plaza 
Dayton, OH 45404 
937-641-4293 
http://www.childrensdayton.org 
 
 
[EMAIL PROTECTED] 

 [EMAIL PROTECTED] 7/29/2003 9:37:15 AM 
I['m trying to insert a flash movie into a CF page, and I used the code
I 
found on the Macromedia website,

OBJECT 
classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0WIDTH=550;

HEIGHT=400 id=myMovieNamePARAM NAME=movie
VALUE=myFlashMovie.swf 
PARAM NAME=quality VALUE=high
PARAM NAME=bgcolor VALUE=#FF

EMBED src=myFlashMovie.swf quality=high bgcolor=#FF WIDTH=550

HEIGHT=400 NAME=myMovieName ALIGN= 
TYPE=application/x-shockwave-flash 
PLUGINSPAGE=http://www.macromedia.com/go/getflashplayer;/EMBED
/OBJECT

but I get this error:

Invalid parser construct found on line 11 at position 95. ColdFusion
was 
looking at the following text:XMP=/XMPInvalid expression format.
The 
usual cause is an error in the expression structure.
The last successfully parsed CFML construct was static text occupying 
document position (4:44) to (11:86).

What is the correct code to embad a flash movie in a CF page?

T

Tired of your bookmarks/favourites being limited to one computer?  Move

them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Inserting flash into a CF page - RESOLVED.

2003-07-29 Thread Thane Sherrington
At 02:40 PM 7/29/03 +0100, Mike Townend wrote:
Without double checking the code... My first thoughts are that this appears
somewhere within a CFOUTPUT block so you need to double up all # to treat
them as literal # instead of the beginning of a variable

Thanks.  That was it.

T

Tired of your bookmarks/favourites being limited to one computer?  Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4