Inserting a 'flash' or something in a gap

hello!!
i have pulled apart two clips in the time line to make a black gap clip, or slug, as they call it. Any way, what i want to do with this gap is to swap it for something else, for eg a white flash effect, or even some weird text (subliminal style) any thoughts?
Thanks so much for your valued help.
A.R
imac G5   Mac OS X (10.4.2)  

Hi Anthony:
Have you tried simply applying iMovie's 'Flash" effect to the slug?
Sue

Similar Messages

  • Proper way to insert a Flash Slide show

    I created a Flash movie (actually a Slideshow) for my website. http://www.phillipmjones.net
    Flash8 (part of Studio8 - sorry I can't afford the latest and greatest version and on a PowerPC Mac I will be updating to an Intel mac as soon as my funds allow me) It created a Page using the embed tags.
    Is there a better way of inserting a flash movie that will pass w3c standards? According to XHTML 1.0 Transistional which I created my site by.
    http://www.phillipmjones.net/New%20Generation/NewGeneration.html
    Mac OSX.4.11
    G4-1.67GB 2GB RAM PowerPC PowerBook 17"
    Studio8 (DreamWeaver8/Flash8)

    Well I tried something else:
    <object
    type="application/x-shockwave-flash" data="movie.swf"
    width="600" height="450">
    <param name="movie" value="movie.swf" />
    </object>
    where movie.swf = my movie.swf (NewGeneration.swf)
    Now if it works for IE I'll be all set.
    http://www.phillipmjones.net/New%20Generation/NewGenerationb.swf

  • Inserting a flash photo gallery in a column

    Hi
    I usually work with frames but I now started a new site using
    the default HTML 2 columns template. One of the columns will hold
    my main content. I'm trying insert a flash photo gallery in the
    column but this gallery (SimpleViewer) has its own index.html file.
    Is this possible and how can I do it?
    Thanks!

    Hi Anthony:
    Have you tried simply applying iMovie's 'Flash" effect to the slug?
    Sue

  • Help inserting a flash video into my web page

    Hello!
    I'd love some help inserting a flash video into my web page. My web page is hosted by Viviti, templated, and edited online. I can add html to it, and I have the html source for my flash video. I also have uploaded the flash file to the server. Since I am very html illiterate, though, I need some help rewriting the html script so it can be published. There are two problems- firstly, no 'headers' or 'body' allowed in the script- these are already a part of the template. Secondly, I don't know how to rewrite it to refer to the uploaded files. It's also imperative that the full screen mode functions. I've pasted the source code for the flash video here. Please help!!!
    Thanks!
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Drag and drop labelling</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
         var version;
         var axo;
         var e;
         // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
         try {
              // version will be set for 7.X or greater players
              axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
              version = axo.GetVariable("$version");
         } catch (e) {
         if (!version)
              try {
                   // version will be set for 6.X players only
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                   // installed player is some revision of 6.0
                   // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                   // so we have to be careful.
                   // default to the first public version
                   version = "WIN 6,0,21,0";
                   // throws if AllowScripAccess does not exist (introduced in 6.0r47)          
                   axo.AllowScriptAccess = "always";
                   // safe to call for 6.0r47 or greater
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 4.X or 5.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 3.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = "WIN 3,0,18,0";
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 2.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                   version = "WIN 2,0,0,11";
              } catch (e) {
                   version = -1;
         return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
         // NS/Opera version >= 3 check for Flash plugin in plugin array
         var flashVer = -1;
         if (navigator.plugins != null && navigator.plugins.length > 0) {
              if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                   var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                   var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                   var descArray = flashDescription.split(" ");
                   var tempArrayMajor = descArray[2].split(".");               
                   var versionMajor = tempArrayMajor[0];
                   var versionMinor = tempArrayMajor[1];
                   var versionRevision = descArray[3];
                   if (versionRevision == "") {
                        versionRevision = descArray[4];
                   if (versionRevision[0] == "d") {
                        versionRevision = versionRevision.substring(1);
                   } else if (versionRevision[0] == "r") {
                        versionRevision = versionRevision.substring(1);
                        if (versionRevision.indexOf("d") > 0) {
                             versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                   var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
         // MSN/WebTV 2.6 supports Flash 4
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
         // WebTV 2.5 supports Flash 3
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
         // older WebTV supports Flash 2
         else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
         else if ( isIE && isWin && !isOpera ) {
              flashVer = ControlVersion();
         return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
         versionStr = GetSwfVer();
         if (versionStr == -1 ) {
              return false;
         } else if (versionStr != 0) {
              if(isIE && isWin && !isOpera) {
                   // Given "WIN 2,0,0,11"
                   tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
                   tempString        = tempArray[1];               // "2,0,0,11"
                   versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
              } else {
                   versionArray      = versionStr.split(".");
              var versionMajor      = versionArray[0];
              var versionMinor      = versionArray[1];
              var versionRevision   = versionArray[2];
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
              if (versionMajor > parseFloat(reqMajorVer)) {
                   return true;
              } else if (versionMajor == parseFloat(reqMajorVer)) {
                   if (versionMinor > parseFloat(reqMinorVer))
                        return true;
                   else if (versionMinor == parseFloat(reqMinorVer)) {
                        if (versionRevision >= parseFloat(reqRevision))
                             return true;
              return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){     
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":     
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
         AC_FL_RunContent(
              'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
              'width', '720',
              'height', '440',
              'src', 'Drag and drop labelling',
              'quality', 'medium',
              'pluginspage', 'http://www.adobe.com/go/getflashplayer',
              'align', 'middle',
              'play', 'true',
              'loop', 'true',
              'scale', 'showall',
              'wmode', 'window',
              'devicefont', 'false',
              'id', 'Drag and drop labelling',
              'bgcolor', '#ffffff',
              'name', 'Drag and drop labelling',
              'menu', 'true',
              'allowFullScreen', 'true',
              'allowScriptAccess','sameDomain',
              'movie', 'Drag and drop labelling',
              'salign', ''
              ); //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=10,0,0,0" width="720" height="440" id="Drag and drop labelling" align="middle">
         <param name="allowScriptAccess" value="sameDomain" />
         <param name="allowFullScreen" value="true" />
         <param name="movie" value="Drag and drop labelling.swf" /><param name="quality" value="medium" /><param name="bgcolor" value="#ffffff" />     <embed src="Drag and drop labelling.swf" quality="medium" bgcolor="#ffffff" width="720" height="440" name="Drag and drop labelling" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
         </object>
    </noscript>
    </body>
    </html>

    What you basically need to do is copy the sections of content from the code you show into the template (assuming the template already provides the <head> and <body> sections of the page.  So in the head section of what you show, take everything starting with...
    <script language="JavaScript" type="text/javascript">
    all the way down thru...
    </script>
    , inclusive (in the head section only), and paste that into the head section of your template.
    Similarly, take everything that lies between the <body> ... </body> tags (exclusive of the body tags) and paste it into the body section of your template wherever you plan to display the Flash file.

  • Insert a flash file to iweb 09 or an easy way to display photos

    Goal: have a photo space on my home page that plays automatically - dissolving one to the next.
    I am trying to either insert a flash file to my home page http://web.me.com/ksporterproductions/PWF/Home.html
    I've used the html widget with this code:
    Flash Files in iWeb - Adding Flash to iWeb
    If you value and use Artotems iWeb Tips and Tricks please consider making a $5 donation to support more assistance in the future as well as the charitable work Artotems Co. does for others around the world.
    <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/ flash/swflash.cab#version=6,0,40,0" border="0" width="800" height="600"><param name="movie" value="http://web.mac.com/youriDisk/docs/flash.swf"><param name="quality" value="High"><embed src="http://web.mac.com/youridisk/docs/flash.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="800" height="600"></object>
    I've also tried doing an imovie - but it doesn't play automatically
    Any suggstions for an easy way to do this?? I've been working on it forever!!

    Hi,
    Check out this site. http://iwebfaq.org/site/iWeb_Movies.html
    More help here with tutorials http://discussions.apple.com/thread.jspa?messageID=7301535
    And if that doesn't help, you could post in the iWeb forums here: http://discussions.apple.com/category.jspa?categoryID=188
    Carolyn

  • Newbie..how to insert a flash object

    I'm just using Dreamweaver MX for the first time in ernest.
    I've got the 'Dummies guide', and am following it through.
    I've created some simple pages but now want to insert an .swf
    file that was created by someone else - but dont have the options.
    I've read about extensions - but there are thousands - and i don't
    know whcih to get.
    ANy help appreciated
    Thanks
    PhilJ

    Click in your page where you want the SWF to go, then select
    Insert > Media > Flash from the menu (or maybe Insert >
    Flash ... DWMX goes back a way).
    Charles Nadeau
    Dreamweaver
    Adobe Systems

  • Insert Media Flash Video

    I'm having trouble viewing a flash video that I've inserted
    using: Insert, Media, Flash Video. I can view the video ok in IE7
    and Firefox when I preview the page from Dreamweaver, but not
    online.
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    I have the video file uploaded to here:
    main/KenBowden_Swail_BN1.flv
    I have the Scripts folder uploaded in the root dir on the
    same level as the page.
    I've done this successfully in the past with other web
    sites....what am I missing here?
    Any help is appreciated!
    Marita

    >
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    I don't see a problem in either FF 2 or IE6 - it's there OK
    Jo
    "Marita" <[email protected]> wrote in
    message
    news:fjc642$s8t$[email protected]..
    > I'm having trouble viewing a flash video that I've
    inserted using: Insert,
    > Media, Flash Video. I can view the video ok in IE7 and
    Firefox when I
    > preview
    > the page from Dreamweaver, but not online.
    >
    >
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    >
    > I have the video file uploaded to here:
    main/KenBowden_Swail_BN1.flv
    >
    > I have the Scripts folder uploaded in the root dir on
    the same level as
    > the
    > page.
    >
    > I've done this successfully in the past with other web
    sites....what am I
    > missing here?
    >
    > Any help is appreciated!
    > Marita
    >

  • Dreamweaver - insert/media/Flash

    I have lost the same content on the same Webpage several
    times.... :( Here's how it goes...
    I have a templated html page that includes Flash and an xml
    file.
    In DW, created html content then insert/media/flash
    Preview - looks great
    Close DW
    Edit SWF/FLA in Flash and publish - same name/path/etc.
    Save and close Flash
    Reopen DW to preview and/or /edit html page
    The html content is gone and in its place I have the
    following message (in Design view)
    // Provide alternate content for browsers that do not support
    scripting // or for those that have scripting disabled. Alternate
    HTML content should be placed here. This content requires the
    Macromedia Flash Player. Get Flash [this, of course, is a link to
    Macromedia]
    So, today, in DW, I removed the Flash content first - deleted
    it, edited the page, saved & closed.
    Edited Flash, saved and closed.
    Reopened html in DW - same problem - html content is gone.
    Only the Flash content is displayed on page preview.
    I have had to recreate this page about 4 or 5 times and I do
    not know how to prevent this problem.
    Help! :((

    I just gotta ask... What are your Publish settings in Flash?
    It "sounds" to me like you are publishing both the Flash .swf file
    and the HTML, which is then writing over your html file. Call me
    crazy... LOL

  • Insert Media Flash Video... pre-loader question

    Hello everybody
    I'm desperately looking for a solution regarding the
    following problem: I've inserted a rather long flv video (insert -
    media - flash video) into my site. Visitors with smaller bandwith
    have to wait up to 30" until the video starts playing. I either
    want to show them a screen saying: "video is going to be buffered -
    please wait" or to include an adaptive preloader that shows the %
    until the video will start playing. How can this be achieved?
    Thanks for all of your input, because this issue is very important
    to me and time is running for the project...
    TCG

    Can you divide your long video into several small clips or
    chapters? Then
    just put all the clips into a common player like this one
    from Coffee Cup -
    and loop them together.
    http://www.coffeecup.com/video-player/
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "TeeCeeGee" <[email protected]> wrote in
    message
    news:g35efj$f81$[email protected]..
    > Hello everybody
    > I'm desperately looking for a solution regarding the
    following problem:
    I've
    > inserted a rather long flv video (insert - media - flash
    video) into my
    site.
    > Visitors with smaller bandwith have to wait up to 30"
    until the video
    starts
    > playing. I either want to show them a screen saying:
    "video is going to be
    > buffered - please wait" or to include an adaptive
    preloader that shows the
    > until the video will start playing. How can this be
    achieved? Thanks for
    all of
    > your input, because this issue is very important to me
    and time is running
    for
    > the project...
    > TCG
    >

  • Insert/media/flash - not hearing

    Hi all...thanks for reading this...
    have html file, insert/media/flash   puts in a swf file that has sound.
    when, in prop pal. click 'play' in the html file, and sound is fine
    am using root relative links and temp. file preview.
    dont hear sound when previewing locally.
    2 items on page: a pic and next to it the small .swf sound embedded flash file
    dont hear sound when uploaded.
    what do you think?
    http://test.mvvision.com/song.html
    CS3
    Thanks ever so much.
    Warmly,
    Hope
    Hope you're having a nice day.....

    Dear Ned,
    You are a darling...thanks for answering...
    Ok, will do better here.
    Am using root relative site organization, and therefore have selected the option in preferences: preview in browser: 'use temporary file' (one has to do this when using root relative).
    Am relatively new to doing site development this way.
    With that in mind, am just putting a .swf file that plays sound, into a dw page, using the insert/media/flash
    this is how it looks: see above....u can see the flash file next to the picture in the top right corner.
    When previewing in this view, by clicking the 'play' button in the properties palette, the sound is fine and working.
    When previewing it locally, in the browser there is no sound, when uploading there is no sound.
    What do we think is the problem?
    here is actual uploaded page that no sound is heard from...lol
    http://test.mvvision.com/song.html
    Page that u click to get that page: Click: 'Song' icon
    http://test.mvvision.com/media.html
    CS3.
    Lots and lots of thanks dear one,
    Warmly,
    Hope
    p.s. how was that, any better explanation.....(-:
    it is working on this page which was made in a document relative site, previewing locally the regular way:
    http://www.mvvision.com/song.htmlI

  • I have a Mac and even though Flash (11.something) says it's installed, I still get messages (FB, youtube, pandora) saying I need the latest version (10 something). I have it!

    I have a Mac and even though Flash (11.something) says it's installed, I still get messages (FB, youtube, pandora) saying I need the latest version (10 something). I have it!

    If you're sure you've installed the latest version of Flash, take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. For a "missing plug-in" error, start with Step 4.
    1. If you're getting a "blocked plug-in" error, then from the menu bar select
     ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Check Now. Quit and relaunch your browser.
    2. Triple-click the line below to select it:
    /Library/Internet Plug-Ins
    Right-click or control-click the highlighted text and select
    Services ▹ Open
    from the contextual menu. A folder should open. Delete the following item, or anything with a similar name, if present:
    Flash Player (failing).plugin  
    You may be prompted for your login password.
    3. Re-download and reinstall Flash. Download it from this page:
    Adobe - Install Adobe Flash Player
    Never download a Flash update from anywhere else.
    4. If you get a "missing plug-in" error, select
    Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked Enable plug-ins.
    5. Select
    Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.
    6. In the Safari preference window, select
    Privacy ▹ Remove All Website Data
    Close the window. Then select
     ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.

  • Help insert animation flash inside creator

    i want insert a banner with animation
    thanks you

    Make your link to the flash file be root relative.
    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
    ==================
    "ks?ren" <[email protected]> wrote in
    message
    news:ekknvh$cmn$[email protected]..
    > When I insert a flash movie into a DW template, I can
    see it perfectly
    > when I
    > preview the .dwt page in the browser but when I create a
    page based on
    > that
    > template and preview it, the flash movie does not show.
    >
    > Has anyone similar problem? Does anyone know how to slve
    it?
    > Thanks in advance for your help.
    >
    > Luis
    >
    >
    >

  • 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>

  • Insert as flash paper

    Hi. I am looking for a way to convert pdf files to swf. I saw
    in an Adobe tutorial on Contribute that this can be done by first
    inserting document as flash paper. I do not have this "insert as
    flashpaper" option. Does anyone else have this option missing from
    their insert dropdown menu? I am working on a Mac 10.411,
    Contribute CS3 (from the web premium suite). I have written to
    Adobe about this missing feature last week but have not heard back
    from them. Is there something else I need to install besides the
    default install? My ultimate goal is to get the pdf pages into a
    flash movie, so if anyone has another idea how to do this, please
    let me know. Thanks!

    I don't think you will be to happy with this, but I think it
    does not come with the Web Premium CS3 for the Mac:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16582#flashpaper

  • Best way to insert non-flash photo album in Dreamweaver CS5.5

    Using Dreamweaver CS4, I created my wife's art website.  It is:  www.tanglewoodbrushstrokes.com
    To insert photo albums, I used Bridge and Fireworks.  Once past the initial learning curve, I was able to create these albums fairly easily.  However, these albums have two limitations that I would like to address.
    1.  Adding or deleting an image requires creating a new album and then posting it on the page.  Now that I have practice, it doesn't take me very long to do this but there must be a simpler way.  As you will see on my wife's site, she has many pages of photo albums.  Moving photos from her "Recent Creations" page means those images my be disbursed over three or four different albums.  So this can be very time consuming.
    2.  The albums created in this manner are flash galleries and are not visible on Iphones or Ipads.
    I recently purchased Dreamweaver CS5.5 so I could use HTML5 in order to make my site work on Iphones and Ipads as well as PC's.  I have nearly completed the tutorial and am about ready to create a new site.  Today I have done some searching for ways to use non-flash galleries and have not come up with a definitive answer.
    As you can see on my wife's website, the galleries are fairly simple.  All I really need is a page of thumbnails leading to a larger image with a description.  I want to keep it that way.
    Any suggestions?

    There is no one size fits all solution to this.  You're using DW to make a gallery and it's not really a gallery creation tool per se.  It's web authoring software.  So whichever gallery solution you choose it's going to come from someplace else.  And then you must integrate it into your HTML pages.
    Personally, I really like dynamic slideshows with jQuery.  Add some PHP code to your page.  Upload jQuery   scripts and optimized images to your server.  Done.
    To swap images later, add/delete files from image folder on server. Done.
    You can see a live demo of this below:
    http://alt-web.com/DynamicSlides/
    http://jalbum.net/
    If you want to generate a lot of different galleries quickly, look at JAlbum.  It's a commercial product that creates the thumbnail images & HTML pages for you.  There are lots of skins (styles) to choose from and you can further customize layouts with CSS.
    http://www.projectseven.com/products/galleries/ssm/index.htm
    PVII Slide Show Magic - extension for Dreamweaver
    jQuery Fancy Box ~
    http://fancybox.net/
    57 Free Image Gallery Solutions with jQuery ~
    http://www.1stwebdesigner.com/css/57-free-image-gallery-slideshow-and-lightbox-solutions/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

Maybe you are looking for

  • Toshiba satellite l870-147

    Hi is it possible to replace a non working video card on this laptop ?

  • Trading partner business area

    Hi Sap Experts, Where do define Trading partner business area and where it will be stored (Table). Regards, Prabhakar

  • J1IH OR J1IS

    HI user has wrongly charged 8% bed instead of 14% bed now i want to created another excise invoice for remaining 4% bed. whether i need to do it in J1IS OR J1IH Pl suggest

  • Upgarde Excel 2003 to 2007

    Hi , We are dev stage and we are using MS 7.0 version with excel 2003 . we are planning to move excel 2003 to 2007 in comming days . Pls let me know what are impacts , if we  upgared excel 2003 to 2007 for BPC developument . Regards, PSR

  • How to ininstall Digital editions v 1.x?

    To try the Beta of D.E. 1.5x, one is advised to uninstall D.E. 1.x How does one do this? I cannot even get D.E. v 1x to download (cannot find a working link) Help, please! Peter