Consultor Eletrônico



Kbase P13586: How to display a flash object with webspeed?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   16/10/2008
Status: Unverified

GOAL:

How to display a flash object with Webspeed?

FACT(s) (Environment):

WebSpeed 3.1x

FIX:

Flash objects like pictures should reside on a virtual directory off the webserver root directory. For example:

<object name="teste" width="550" height="400">
<param name="movie" value="teste.swf">
<param name="quality" value="high">
<embed src="http://localhost/images/teste.swf" width="550" height="400"
quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" name="teste"></embed>
</object>


Where the /image folder inside the <embed> is a virtual folder off the webserver root and teste.swf will be the flash file.