| | | | | Adobe Premiere, Premiere Elements, and After Effects For users of Adobe Premiere 6.0, 6.5 and Premiere Pro. Post problems, tips and queries! | 
05-31-2004, 09:06 AM
| | Member Video Editing Junkie | | | Join Date: Dec 2003
Posts: 54
0 Videos nominated Video Of the Month(s): 0 | | [dreamweaver] insert movie
Hi, I asked several forum but I can't find a proper answer.
This is my question, sorry if you don't think it's related to this forum..
So I made my movie with premiere pro, compressed it into a .wmv and now I want to insert it into my site.
Before, I let them just download the movie in a .rar and play it from their HD. but know I want to insert the movie via dreamweaver..?
I tried with insert ActiveX , but the movie wont start...:/ any help?
And I also want to make it in a pop up window with the right size, if there is anybody here who can help me with this please do.
thanks..!
| 
05-31-2004, 09:32 AM
|  | Administrator | | | Join Date: Nov 2003 Location: Kent
Posts: 8,797
0 Videos nominated Video Of the Month(s): 0 | |
Insert the following html code: Code: <object classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" height="200" id="MediaPlayer1" type="application/x-oleobject" width="304" standby="Loading Microsoft Windows Media Player components..." border="1">
<param NAME="FileName" value="golf2.wmv">
<param NAME="ShowControls" value="-1">
<param NAME="ShowPositionControls" value="-1">
<param NAME="ShowAudioControls" value="-1">
<param NAME="ShowTracker" value="0">
<param NAME="ShowDisplay" value="0">
<param NAME="ShowStatusBar" value="0">
<param NAME="AutoSize" value="0">
<param NAME="ShowGotoBar" value="0">
<param NAME="ShowCaptioning" value="0">
<param NAME="AutoStart" value="0">
<param NAME="AnimationAtStart" value="-1">
<param NAME="TransparentAtStart" value="0">
<param NAME="AllowScan" value="0">
<param NAME="EnableContextMenu" value="0">
<param NAME="ClickToPlay" value="0">
<param NAME="InvokeURLs" value="0">
<param NAME="DefaultFrame" value="datawindow">
<param name="AudioStream" value="-1">
<param name="AllowChangeDisplaySize" value="-1">
<param name="AutoRewind" value="0">
<param name="Balance" value="0">
<param name="BaseURL" value>
<param name="BufferingTime" value="5">
<param name="CaptioningID" value>
<param name="CursorType" value="0">
<param name="CurrentPosition" value="-1">
<param name="CurrentMarker" value="0">
<param name="DisplayBackColor" value="0">
<param name="DisplayForeColor" value="16777215">
<param name="DisplayMode" value="0">
<param name="DisplaySize" value="4">
<param name="Enabled" value="-1">
<param name="EnablePositionControls" value="-1">
<param name="EnableFullScreenControls" value="0">
<param name="EnableTracker" value="-1">
<param name="Language" value="-1">
<param name="Mute" value="0">
<param name="PlayCount" value="1">
<param name="PreviewMode" value="0">
<param name="Rate" value="1">
<param name="SAMILang" value>
<param name="SAMIStyle" value>
<param name="SAMIFileName" value>
<param name="SelectionStart" value="-1">
<param name="SelectionEnd" value="-1">
<param name="SendOpenStateChangeEvents" value="-1">
<param name="SendWarningEvents" value="-1">
<param name="SendErrorEvents" value="-1">
<param name="SendKeyboardEvents" value="0">
<param name="SendMouseClickEvents" value="0">
<param name="SendMouseMoveEvents" value="0">
<param name="SendPlayStateChangeEvents" value="-1">
<param name="VideoBorderWidth" value="0">
<param name="VideoBorderColor" value="0">
<param name="VideoBorder3D" value="0">
<param name="Volume" value="-600">
<param name="WindowlessVideo" value="0">
<EMBED type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"
name="MediaPlayer1" width="240" height="210"
AutoStart="true" showcontrols="1"
showpositioncontrols="0"
showaudiocontrols="1"
showtracker="0"
showdisplay="0"
showstatusbar="0"
autosize="0"
showgotobar="0"
showcaptioning="0"
autorewind="0"
animationatstart="1"
transparentatstart="0"
allowscan="0"
enablecontextmenu="0"
clicktoplay="0"
invokeurls="0"
defaultframe="datawindow">
</EMBED>
</object>
Replace golf.wmv in <param NAME="FileName" value="golf2.wmv"> with the name of your video
| 
05-31-2004, 09:45 AM
|  | Administrator | | | Join Date: Nov 2003 Location: Kent
Posts: 8,797
0 Videos nominated Video Of the Month(s): 0 | |
To make a window pop up a cerrtain size, first insert the following code between the <HEAD> tags: Code: <SCRIPT LANGUAGE="JavaScript">
function popup(page) {
window.open(page,'popup','width=500,height=300,toolbar=false,scrollbars=false');
}
</SCRIPT>
then use the following to create the link between the <BODY> tags: adjust to your needs.
| 
05-31-2004, 09:48 AM
| | Member Video Editing Junkie | | | Join Date: Dec 2003
Posts: 54
0 Videos nominated Video Of the Month(s): 0 | |
Tnx, I'll try it this evening,
now, got to work for school | 
05-31-2004, 11:05 AM
| | Member Video Editing Junkie | | | Join Date: Dec 2003
Posts: 54
0 Videos nominated Video Of the Month(s): 0 | |
The link is on the page that redirects it?
cause It's a flash site, how do I have to insert the java plugin then?
| 
05-31-2004, 12:03 PM
| | Member Video Editing Junkie | | | Join Date: Dec 2003
Posts: 54
0 Videos nominated Video Of the Month(s): 0 | |
Ah, I found it how to do it in flash
tnx!
| 
05-31-2004, 11:53 PM
| | Senior Member Video Editing Junkie | | | Join Date: Feb 2004 Location: Indiana
Posts: 336
0 Videos nominated Video Of the Month(s): 0 | |
(mark typed that whole code with one hand behind his back and a blindbold over his eyes) :lol:
__________________
Frank Sinatra - \"Thats Life, Biatch\"
| 
05-31-2004, 11:56 PM
|  | Administrator | | | Join Date: Nov 2003 Location: Kent
Posts: 8,797
0 Videos nominated Video Of the Month(s): 0 | |
This is so true. :lol: Not only that, it was also "typed" using speech recognition software...
| | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT. The time now is 12:43 AM. | | | | |