Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FlashSlider with WMP

Status
Not open for further replies.

ketankshah

IS-IT--Management
Joined
Jan 11, 2001
Messages
121
Location
IN
I have downloaded FLASHSLIDER custom tag from Macromedia site. It is working fine on a page when used alone but I want to use it on a page which also has Windows Media Player embedded in it.

The page with WMP embedded is working fine. But when I added the custom tag, it stops playing movie. It started giving very irratic results. Sometimes it loads the movie but does not play automatically. Many a times it does not even loads the movie and on the WMP status bar, it shows "Aborting.. Please wait" message and does not load the movie at all.

When I comment the customtag, then again movie works fine. so I think there is some clash when I embed both the objects.

I tried embedding another flash movie in place of custom tag,then also the wmp movie works fine.

Please help me to sort out the problem.

Ketan

Here is my code:

--------------------------
<cfform action=&quot;&quot; name=&quot;form&quot; id=&quot;form&quot;>
<CF_FlashSlider
NAME=&quot;myslider&quot;
FORMNAME=&quot;form&quot;
VALUE=&quot;0&quot;
MIN=&quot;0&quot;
MAX=&quot;10&quot;
SCALE=&quot;1&quot;>
</cfform>

<object id=&quot;objMediaPlayer&quot; width=350 height=275 classid=&quot;CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95&quot; codebase=&quot; standby=&quot;Loading Example Custom Player...&quot; type=&quot;application/x-oleobject&quot;>
<PARAM NAME=&quot;FileName&quot; VALUE=&quot;hondapump.asx&quot;>
<PARAM NAME=&quot;transparentAtStart&quot; VALUE=&quot;0&quot;>
<PARAM NAME=&quot;animationAtStart&quot; VALUE=&quot;0&quot;>
<PARAM NAME=&quot;ShowControls&quot; VALUE=&quot;1&quot;>
<PARAM NAME=&quot;ShowDisplay&quot; VALUE=&quot;0&quot;>
<PARAM NAME=&quot;ShowStatusBar&quot; VALUE=&quot;1&quot;>

<EMBED TYPE=&quot;application/x-mplayer2&quot;
SRC=&quot;hondapump.asx&quot;
ID=&quot;objMediaPlayer&quot;
NAME=&quot;objMediaPlayer&quot;
WIDTH=350
HEIGHT=275
transparentAtStart=0
animationAtStart=0
Showstatusbar=1
ShowPositionControls=1
EnablePositionControls=1
</EMBED>
</OBJECT>

--------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top