How to Insert WMV or MOV in DreamWeaver?

Hello All,
I'm new to DW CS3, and I haven't worked with web pages in
some time now. I thought that in earlier versions of DW it had a
function to place/insert MOV and WMV files?
How can I do that in DW CS3?
Thanks in advance

Be aware that this is not the optimal format for your video
files....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Nancy O" <[email protected]> wrote in
message
news:f8qnrr$fmr$[email protected]..
> This page has codes for embedding WMV players.
>
http://www.mediacollege.com/video/format/windows-media/streaming/embed-examples.html
>
> Or you could simply place a text link on your page to
the WMV or MOV file.
>
>
> --Nancy O.
> Alt-Web Design & Publishing
> www.alt-web.com
>
>
> "Amarotti" <[email protected]> wrote in
message
> news:f8q8pt$r34$[email protected]..
>> Hello All,
>>
>> I'm new to DW CS3, and I haven't worked with web
pages in some time now.
> I
>> thought that in earlier versions of DW it had a
function to place/insert
> MOV
>> and WMV files?
>>
>> How can I do that in DW CS3?
>>
>> Thanks in advance
>>
>
>

Similar Messages

  • How to insert HTML5 rollover buttons into Dreamweaver

    i publish an HTML5 canvas out of Flash contaning a rollover button and now I want to insert it into my site in Dreamweaver, how do i do it?

    Hi Ercolubus,
    Are  you looking for something like this?
    http://forums.adobe.com/thread/1295208
    Thanks,
    Preran

  • How-to insert a database form in dreamweaver cc

    Hi im trying to insert o conect a database created in wamp server into a contact form in a webpage in dreamweaver cc, i don't know how to do it in this version of dreamweaver, i really apreciate if someone could help me

    Also have a look here http://www.dmxzone.com/go/21842/enable-server-behaviors-and-data-bindings-panel-support-fo r-dreamweaver-cc and the Support Forum

  • Anyone know how to insert to multiple tables on Dreamweaver?

    Hey everyone,
    I'm a bit of a newbie at PHP and am trying to create my first "dynamic" site.  I have a registration table with fields idNo (primary key & auto-increment), username, password, email.  I also have another table called profile with fields idNo, location, musicalInfluences, aboutMe etc.  All of these fields except idNo have the default value of "update."  What I want to be able to do is add a second insert statement to the user registration behaviour so that I can have the idNo number added to the profile tables as well as the registration table.  That way the registration and profile are linked by idNo and I can create a record-set do automatically populate the profile table on my profile page when the user logs in.  All of the different profile traits would say "update" and I can then use an update server behaviour for the user to update there profile.
    I might be approaching this the wrong way so I'm open to suggestions on how to create a user login and linked profile page.  One thing I could not work out was how, when the user clicks login with the correct credentials,  I was supposed to separate a first time user, directed to the create profile page, from a user who has already created a profile page and just wants to see it.  The only way I could think of was by using the default method explained before and then having an update page.  Sorry if that was a bit of a waffle.  Here is my code.  Any help would be much appreciated!!
    This is the script that I have included on my registration page.  I just extracted the php and used an include to keep the html page tidy.
    <?php require_once('Connections/soundstorm.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    // *** Redirect if username exists
    $MM_flag="MM_insert";
    if (isset($_POST[$MM_flag])) {
      $MM_dupKeyRedirect="usernameExists.php";
      $loginUsername = $_POST['username'];
      $LoginRS__query = sprintf("SELECT username FROM registration WHERE username=%s", GetSQLValueString($loginUsername, "text"));
      mysql_select_db($database_soundstorm, $soundstorm);
      $LoginRS=mysql_query($LoginRS__query, $soundstorm) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      //if there is a row in the database, the username was found - can not add the requested username
      if($loginFoundUser){
        $MM_qsChar = "?";
        //append the username to the redirect page
        if (substr_count($MM_dupKeyRedirect,"?") >=1) $MM_qsChar = "&";
        $MM_dupKeyRedirect = $MM_dupKeyRedirect . $MM_qsChar ."requsername=".$loginUsername;
        header ("Location: $MM_dupKeyRedirect");
        exit;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "registerForm")) {
      $insertSQL = sprintf("INSERT INTO registration (username, password, email) VALUES (%s, %s, %s)",
                           GetSQLValueString($_POST['username'], "text"),
                           GetSQLValueString($_POST['password'], "text"),
                           GetSQLValueString($_POST['email'], "text"));
      mysql_select_db($database_soundstorm, $soundstorm);
      $Result1 = mysql_query($insertSQL, $soundstorm) or die(mysql_error());
      $insertGoTo = "registerSuccess.html";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>

    you can use a trigger in mysql. this trigger is for new records in your registration table. you can use mysql's last_insert_id() to get the last record inserted. just search for mysql triggers to get more info. note that this is not php code, it is mysql.

  • Inserting a Flash Movie with Dreamweaver

    I'm trying to insert a .swf file into my html using
    Dreamweaver8. I go to inset-media-flash video, browse to my file
    enter the width and height and click ok, and I receive this warning
    everytime: "The URL cannot contain spaces or specal charaters.
    Change hte path or file name and try again." The file is located in
    my main directory of the website, and the file is titled
    clienttv.swf. Am I doing something wrong?
    Also, This file is a television commercial buit in avid and
    compressed in squeeze, but I don't have the .flv file, only a .swf
    file.
    Is there a way to convert my .swf to .flv, or is there a way
    to add a skin to my .swf file so that I have the movie controls
    (play/pause, stop)?
    thanks,
    nofx1728

    Thank you for helping me!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Bridge Point Church</title>
    <script src="/Scripts/AC_RunActiveContent.js"..."
    type="text/javascript"></script>
    </head>
    <body>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','766','height','750','title','Bridge
    Point Church','src','mainV8','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','mainV8'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="766" height="750" title="Bridge Point Church">
    <param name="movie" value="mainV8.swf" />
    <param name="quality" value="high" />
    <embed src="mainV8.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="766"
    height="750"></embed>
    </object>
    </noscript>
    </body>
    </html>

  • How do i convert wmv to mov on a mac computer???

    how do i convert wmv to mov on a mac computer???

    Just Follow Some Steps to Convert WMV to MOV on Mac or Windows :
    >> So Download The Software From HERE.
    >> Than Installed That Software on Your PC or Mac
    >> After That Open The Software And Insert Or Add The Video In The List
    >> Than Select The Converting Format And Convert The Video
    >> Than Access The Video Without Any Issue.
    I Hope That Info Is Usefully

  • How do I export FCP movie to a WMV format (Windows Media Player friendly)?

    I am puzzled. How can I export FCP movie to a WMV format or Windows Media Player friendly?
    Thanks in advance.

    You need a third party app to do this... AVI is the only format that you can export from FCP that's windows media friendly... WMF's can be exported with flip4mac... http://www.flip4mac.com Probably the best of the apps...
    Jerry

  • How to insert a Bridge photo gallery into a webpage with Dreamweaver

    I have made the changes to the web gallery index page (from Bridge) as indicated in http://foundationphp.com/tutorials/gallery/embed3.php  in DW.  However, I normally do not use DW, but need to now.  I have the new web page where I want the gallery to appear, but am currently stuck.  I need a very clear, basic step by step instruction as to how to insert the gallery/index page.  Below is the DW code screen from the new page where I want it to appear (not sure if this is needed).  Thanks for your help!  Ron
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Visual Arts Gallery Giselle M Olivera</title>
    <style type="text/css">
    <!--
    .style5 {
      font-family: "Kunstler Script";
      font-size: 21px;
    .style7 {font-family: Geneva, Arial, Helvetica, sans-serif}
    a:link {
      text-decoration: none;
      color: #000000;
    a:visited {
      text-decoration: none;
      color: #000000;
    a:hover {
      text-decoration: underline;
      color: #33FFFF;
    a:active {
      text-decoration: none;
      color: #000000;
    .style8 {color: #000000}
    -->
    </style>
    </head>
    <body>
    <div align="center">
      <table width="227" border="1">
        <tr valign="top">
          <td width="217" align="center" valign="top"><div align="center"><span class="style7"><span class="style8"><a href="./">HOME</a></span></span> <span class="style8"><a href="./"><span class="style5">Giselle M. Olivera</span></a></span></div></td>
        </tr>
      </table>
    </div>
    </body>
    </html>

    First define your site folder in Dreamweaver.  Site > Manage Sites > New > Local Site.
    http://foundationphp.com/tutorials/gallery/embed1.php
    Also, to simplify things, you could use an <iframe> to bring your bridge gallery index.html page into your DW web page.
    http://www.w3schools.com/tags/tag_iframe.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • How do I convert wmv to mov files for fcp?

    I have tried a couple of different conversion programs to convert a wmv file to mov or mp4, and all seem to result in a viewable mp4, but when I import into final cut and try to put the footage into my sequence, it won't render. The sound renders, but the video remains "unrendered." I'm using a Pro res 422 sequence. Does anyone know why this is happening and how I can fix the problem?
    Thanks

    Hello, this problem is not very difficult to solve a lot of software now can be converted, but can guarantee quality conversion software I've been using the Bros WMV to MOV Converter for Mac the effect is very good, high quality,you can try, and hope to be able to help you. You can google browser inside search keywords: Bros WMV to MOV Mac Converter to find this software.
    Bros WMV to MOV Mac Converter is so far the best wmv to mov mac conversion program, which is specially designed for mac users to convert wmv to mov mac with excellent video quality and fast speed.
    More useful information, please visit the official website:
    https://www.google.com/#hl=en&tbo=d&output=search&sclient=psy-ab&q=Bros+WMV+to+M OV+Mac+Converter&oq=Bros+WMV+to+MOV+Mac+Converter&gs_l=hp.12...27138.27138.1.283 92.1.1.0.0.0.0.0.0..0.0.les%3B..0.0...1c.1.i0oHD4fTC2s&psj=1&bav=on.2,or.r_gc.r_ pw.r_cp.r_qf.&fp=8ff3de5a7c770af9&bpcl=38897761&biw=1426&bih=620

  • Can any one out there tell me how to insert a zoom tool into my slide show in dreamweaver CS5.5

    Hi there
    Can any one out there tell me how to insert a zoom tool into my slide show in dreamweaver CS5.5
    My slide show consists of lots of thumb nails of paintings under a large painting.
    When the small painting thumb nail is clicked the large painting appears.
    I would like to be able to enlarge all areas of the large painting when a zoom tool is placed over areas of the large painting.
    Really appreciate any one help.

    Here's the Dreamweaver forum...
    http://forums.adobe.com/community/dreamweaver/dreamweaver_general

  • Converting .wmv to .mov files or how do i get .wmv files into itunes?help!

    i recently got some video but some of it is in .wmv format and i need to know how to convert these to .mov format
    or
    how do i get .wmv files into iTunes.
    plz help

    Intervideo sells software that will convert your files into a format that can be read by an Ipod.

  • How i can insert an youtube movie in to the keynote?

    how i can insert an youtube movie in to the keynote?

    Down load if it has been allowed by the author, then drag and drop on the slide.

  • Hi, plz help me. i wanna store photos to sql database. so how to insert file field into insert record in dreamweaver cs3?

    I dont know how to insert file field into insert record in DW. i also want to know, insert dynamic table with image field. Plz help me anyone. Ty..

    ohh kk thank you bro. But How to store photos to server file. I wanna upload and display the photos in webpage. Can you send me the php code for this?

  • How to properly get folders, files into Dreamweaver Defined Site Folder from desktop

    I, obviously am a new Dreamweaver user, and I need to know
    the proper way of going about getting a folder, files, ect. from my
    hard drive into my Dreamweaver defined site folder. I understand
    how to insert an image from my hard drive into DW and it shows up
    in my site folder in the Files Panel. More specifically, using
    Lightbox2, after downloading Lightbox and placing those elements in
    a new folder on my hard drive, what is the proper way to get that
    folder into my site folder?
    Also, how can I properly add images to an images folder in my
    site folder in DW for possible later use, without inserting them on
    the page. I know by inserting them on the page from a folder on my
    hard drive, Dreamweaver prompts me for DW to recognize them. I
    would like to know how I can get them in there and DW to recognize
    them without actually inserting them on my page.
    And can and how can I move files, images, pages from one site
    to another? or should I? Thanks, if anyone can help me with these
    file moving questions.

    To restate courtney's explanation, *anything* that you paste
    into the site's
    local root folder will appear in DW's File panel, and will be
    considered by
    DW to be a part of the site.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "courtney (n h c)" <[email protected]>
    wrote in message
    news:[email protected]...
    > assuming you're on Windows, if you want to move files
    from one place on
    > your hard drive into your site folder, just use Windows
    Explorer.
    >
    > but keep in mind that this would not be the ideal way to
    move files within
    > the site folder from one place another. for example, say
    you have a page
    > and you want to move it into a folder, you should do
    that in Dreamweaver
    > because it will update the links for you in any files
    that link to the
    > page you're moving.
    >
    > Rock Artist wrote:
    >> I, obviously am a new Dreamweaver user, and I need
    to know the proper way
    >> of going about getting a folder, files, ect. from my
    hard drive into my
    >> Dreamweaver defined site folder. I understand how to
    insert an image from
    >> my hard drive into DW and it shows up in my site
    folder in the Files
    >> Panel. More specifically, using Lightbox2, after
    downloading Lightbox and
    >> placing those elements in a new folder on my hard
    drive, what is the
    >> proper way to get that folder into my site folder?
    Also, how can I
    >> properly add images to an images folder in my site
    folder in DW for
    >> possible later use, without inserting them on the
    page. I know by
    >> inserting them on the page from a folder on my hard
    drive, Dreamweaver
    >> prompts me for DW to recognize them. I would like to
    know how I can get
    >> them in there and DW to recognize them without
    actually inserting them on
    >> my page.
    >>
    >> And can and how can I move files, images, pages from
    one site to
    >> another? or should I? Thanks, if anyone can help me
    with these file
    >> moving questions.
    >>

  • How to Insert more than one record at a time- with fixed set of values in one field

    Can someone guide as to how to insert multiple records at a time using ASP VBScript in Dreamweaver CS4 or ADDT.
    If someone can guide then the exact problem is given below.
    I have a MS access database with one table. The table has three fields. The first field is an autonumber field for ID number.
    The second field contains string values- One out of 7 predefined values. One set of records consists of 7 records containing all the seven types of predefined values in fields no 1.
    The third field is a numeric field and can contain integers.
    I want that the user can enter data for the table using an ASP form in such a way that he enters one set of records at a time in one single screen. This way he will not have to remember that he has /has not entered all the seven set of values for the field no 1.
    I am not creating fields with the 7 types of field1value as their names as it will increase the number of fields drastically.
    Please help for dreamweaver ASP VBScript.

    I have successfully inserted seven records in one form submit operation by looping through the command object execute method.
    However, the data that is being inserted by the command object is repetition of the first record and the command object is not taking any data from the text boxes for the second record onwards. In this I had used the isert record behavious generated by DW CS4 and modified it to suit my requirement. However, the data inserted in the first row is getting repeated in all the seven rows.
    Please help.
    Also advise if there are any free dreamweaver server side validation extensions available.

Maybe you are looking for