|
 |
asp_databases thread: how to generate swf out from SQL database
Message #1 by "Almir" <cradle_ab@y...> on Tue, 18 Apr 2000 11:3:59
|
|
Hi
i want to display Flash swf files from my sql database using asp but i am
not sure how to do it. I tried with normal <img src="....> but it doesnt
work. Has anybody an idea how to do it?
Please mail me directly on cradle_ab@y...
Message #2 by Tristian O'brien <obrient@m...> on Tue, 18 Apr 2000 13:59:23 +0100
|
|
i don't know specifically about shockwave files themselves, but doing it
this way a la the link,
should put you straight.
http://www.asptoday.com/articles/20000228.htm
-----Original Message-----
From: Almir
Sent: Tuesday, April 18, 2000 2:01 AM
To: ASP Databases
Subject: [asp_databases] how to generate swf out from SQL database
Hi
i want to display Flash swf files from my sql database using asp but i am
not sure how to do it. I tried with normal <img src="....> but it doesnt
work. Has anybody an idea how to do it?
Please mail me directly on cradle_ab@y...
---
You are currently subscribed to asp_databases
Message #3 by "Brent Williams" <brent@a...> on Tue, 18 Apr 2000 11:14:55 -0230
|
|
you have to use the object tag to input a flash file!
for example:
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0
,0">
<PARAM NAME=movie VALUE="FLASH FILE NAME">
<PARAM NAME=loop VALUE=false>
<PARAM NAME=menu VALUE=false>
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#000000>
<noembed>
<img src="images/Flash.gif" width=498 height=79 border=0 alt=""
usemap="#newbar-Flash">
</noembed>
<noscript>
<img src="images/Flash.gif" width=498 height=79 border=0 alt="">
</noscript>
</OBJECT>
the first part loads the flash file, the second and third ( If the script
isn't supported or your browser won't embed object ) loads an image if flash
isn't supported.
brent
brent@a...
----- Original Message -----
From: "Almir"
To: "ASP Databases" <asp_databases@p...>
Sent: Tuesday, April 18, 2000 11:00 AM
Subject: [asp_databases] how to generate swf out from SQL database
> Hi
> i want to display Flash swf files from my sql database using asp but i am
> not sure how to do it. I tried with normal <img src="....> but it doesnt
> work. Has anybody an idea how to do it?
> Please mail me directly on cradle_ab@y...
>
> ---
> You are currently subscribed to asp_databases
$subst('Email.Unsub')
>
|
|
 |