DW CS4: How to play a Flash Movie in a NEW window after clicking a link or a button on a page?

Hi, using Adobe Dreamweaver CS4, I would like to have a link or a button on a webpage that when clicked will play a Flash Movie in a new window.
Using the 'Insert Panel' > Media: FLV I managed to insert the .flv file on the page, but the movie plays 'in line' instead of in a new window. So far I can't find any 'Properties' or settings to change this behaviour. E.g. like Target _blank for opening e.g. a .pdf in a new Window.
> Please help.
Thank you!

Try using one of the popular javascript methods for this. I use shadowbox and you can find examples, info and a download here: http://www.shadowbox-js.com

Similar Messages

  • How do I set Safari to automatically resize new window when opening a link?

    Here is the scenario. I have one Safari window open, I click a link that is on that page, I have Safari set to open a new window (not a new tab) so that is what it does. It opens a new window from that link, but the new window is too small. It is about 1/4 the size of a window that fills up the screen. How do I set up Safari so that when I open a link in a window, it automatically resizes the new window to fill the screen?
    Thanks much,
    Paula Jo

    Hi Paula Jo
    Next time a new window automatically opens, resize it to the desired size by dragging the lower right corner. Then, click on the red button in the upper left to close it.
    Now, select a link in your existing browser window to open the 2nd window. It ought to be the same size as what was set previously.
    Let me know if that works.

  • How to play Blu-ray Movies on Blackberry and Windows Mobile Phone

    There are two or more phones of you and your family, blackberry, windows mobile phone, or others. While these phones support different video and audio formats, WMV, 3GP, AVI, etc. Have you ever thought that there will be a program that can help you rip Blu-ray and DVD to all the formats supported by different phones? Here it is—[LeKuSoft Blu-ray Ripper.
    [url=http://www.lekusoft.com/products/dvdripper/index.jsp]LeKuSoft Blu-ray Ripper[/url] supports the most popular video formats, H.264/MPEG-4 AVC, Apple TV h.264 720P, HD WMV, MPEG-2/MPEG-4 TS HD Video, AVI, MPEG, WMV, DivX, MP4, H.264/AVC, RM, MOV, XviD, 3GP and FLV. You can select the format compatible with your phone.
    Besides, you can also extract soundtrack from Blu-ray disc to common or lossless audio like MP3, WAV, and save in your phone with [url=http://www.lekusoft.com/products/dvdripper/index.jsp]LeKuSoft Blu-ray Ripper[/url].
    When a whole movie is too big for you, you can clip segment you like best and convert it only to save your time and space of your phone. Preview, snapshot, batch conversion, and much more practical functions are provided in [url=http://www.lekusoft.com/products/dvdripper/index.jsp]LeKuSoft Blu-ray Ripper[/url].

    Thanks for sharing this info..

  • How do i get firefox to not open an tabs or new windows when clicking a link

    Iv tried safe mode, disabling add ons and everything. Theres no option in the menu to not open tabs when i click a link its verry annoying . If i click a google link it opens a new tab. I dont want that to get it clear with you guys is there a option in the about:config to disable that?

    See also:
    *http://kb.mozillazine.org/browser.link.open_newwindow
    *http://kb.mozillazine.org/browser.link.open_newwindow.restriction
    Note that 0 isn't a valid value of the browser.link.open_newwindow pref.

  • How to automatically startup a report in a new window after committing a form

    I have a form on a portal-page. The user enters values in the form and presses the INSERT button.
    After doing so, I want to show a report in a NEW window querying some values the user entered in the form.
    I was hoping to be able to use the After Processing Form PLSQL-section as follows:
    declare
    l_id integer;
    l_url varchar2(2000);
    begin
    l_id := p_session.get_value_as_NUMBER(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_ID');
    l_url := 'APP_OWNER.MY_REPORT.show?'
    | | 'p_arg_names=id&p_arg_values='
    | | to_char(l_id);
    htp.p('<a href="' &#0124; &#0124; l_url &#0124; &#0124;' target="_blank"></a>');
    end;
    But I see only "Inserted one record" and no report is started.
    I've tried to use the after-form-processing part, but it seems I can only startup reports in the same window with GO and CALL.
    Also the ID-variable can not be read from that part.
    A second solution I tried was to put this PLSQL in the PLSQL-handler-section of the button, but for some reason all double quotes " are automatically changed into single quotes ' causing several Java-script errors. Perhaps a bug?
    Does anyone have a solution for this functionality?
    Thanks,
    Jan Willem Vermeer

    Hi,
    There are 2 scenarios I can think of:
    1. The value of ORD_ID is not known until the insert processing completed.
    2. The value of ORD_ID is known and can be retrieved without a roundtrip to the server.
    The 2nd scenario is being simpliest and could be done from Javascript w/out any server involvement, all you need is the getField() function (or any other function to get the field value) described here : http://technet.oracle.com:89/ubb/Forum81/HTML/000073.html
    Javascript piece goes something like this:
    myWindow = window.open("http://myhost/portal30/pos.APPROVAL_INVOICE_DYN.show?p_arg_names=ord_id&p_arg_values=" + getField(this.form,"ORD_ID"),
    "myWindowName","toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=400,width=600");
    The first scenario is more complicated.
    During the "accept cycle", when your PLSQL insert/update etc. event handlers are
    fired all the processing output will happen into the current window.
    Neither owa_util.redirect_url() nor wwa_app_module.set_target() will help.
    Both of them will do a redirect only in the current browser window,
    actually, wwa_app_module.set_target() internally calls owa_util.redirect_url().
    What you need is:
    1. Get the field value, and either: 1. store it somewhere in a package variable,
    or: 2. do this all at once in "before displaying the page"
    2. After the form processing is completed (but not in the onSuccess!!! code),
    open a new browser window w/Javascript specifying the same url you were passing to
    set_target().
    Here is my example, place following code into "before displaying the page" additional PLSQL block:
    declare
    l_id integer;
    begin
    l_id := p_session.get_value_as_NUMBER(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_ORD_ID');
    if l_id is not null then
    htp.p('{SCRIPT} var myWindow = window.open("http://myhost/portal30/pos.APPROVAL_INVOICE_DYN.show?p_arg_names=ord_id&p_arg_values=' &#0124; &#0124; l_id &#0124; &#0124; '",
    "mySubWindow","toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=400,width=600");
    myWindow.focus();
    {SCRIPT}');
    end if;
    end;
    To do: you will need to add more logic to decide when to open a new window,
    whatever is appropriate for your application,
    rather than just 'is null' check I did.
    Hope this will help.
    Thanks,
    Dmitry

  • How to put a Flash movie on IWeb pages

    I am trying to find out how I can put flash movies on a website designed in IWeb. The .mov files are large and therefore load very slowly (and are also able to be downloaded by anyone with QT Pro I think).
    Does anyone know how to put flash videos (and what format they are supposed to be in - that SWV or FLV) on IWeb? I think I have to put a flash player on the page (or site, whatever) as well.
    Apple Care can't help me - and when I went for a One-on-One at the Apple Store it was a complete waste of time (I have to drive an hour just to get there).
    I have found a few programs on the internet that I can buy to convert my videos to Flash (without having to spend a fortune on Adobe Flash).
    Any help is GREATLY appreciated!
    Thanks,
    Kim

    I know. Look here:
    http://web.mac.com/wyodor/Embed_Media/Embed.html
    http://web.mac.com/wyodor/iFrame/
    Also search this forum. The question is not unique.

  • How do I embed flash movie in MUSE?

    I am trying to embed a Flash movie in a new page on my site. I want the Flash movie to open in a new page, full screen without header or footer. I have puploaded a page with the correct code (I think) . The page opens but remains blank. The swf movie file does not launch. The files work fine on my hard drive.

    Jgrummel, I tried pasting in your code with the name of an audio file, but it did not work even when I published. My guess is that the file needs to ALREADY be on the server, but then I thought if that was the case, does the embed code have to have a folder reference? I am not a coder, so I am trying to figure out at random. Can you provide any step-by-step process for getting audio files to play in the background WITHOUT the player being seen or being loaded in another page? Is the only option to use a thrid party server, like youtube, BUT with that issue is that I get suck with player controls that I do not wnat and it does not loop.

  • How do you download flash movies in flash?

    how do you download flash movies in flash?
    thanks

    Hi ...
    Probably need an extension or Safari plugin ...
    Check out the results from a Google search here.

  • How to play mkv,avi,mov format files on ipad

    How to play mkv,avi,mov format files on ipad

    Install free OPlayer Lite and try.
    https://itunes.apple.com/sg/app/oplayerhd-lite-best-free-video/id385896088?mt=8

  • How to play an HD movie exported from Final Cut Pro?

    How to play an HD movie exported from Final Cut Pro? on a mac???
    thanks

    How to play an HD movie exported from Final Cut Pro? on a mac?
    Most FCP users export them in a high-effeciency distribution/delivery compression format (e,g,, H.264/AAC) targeted for a particular application and/or device. For example, you could export using H.264/AAC at full display resolution for playback in the QT Player at an appropriate data rate if your platform and display can handle the output. TV would limid the video to 960x540 at 30/29.97 fps and normal AAC audio to 160 kbps at 48.0 KHz. Files exported for display an the Internet would be restricted by the bandwidth being targeted. Etc, etc, etc. Unless the file will only be played on your own platform, what you do not want to do is use an FCP only compression format which would limit viewers to those recipients have the same FCP codecs installed.

  • Premiere CS4 - How can you import QuickTime (.mov) videos and which settings for the sequence?

    Premiere CS4
    How can you import QuickTime (.mov) videos and which settings for the sequence?
    Please reply in plain English or if possible in German
    Greetings from Vienna, Peter

    I have not installed Quicktime.
    I got a few scenes (.mov) from a Canon Eos 70d.
    I want to create a short film (in Premiere CS4) with these scenes, mixed with photos and MP3 music.

  • Computer Crashed with CS4 - How can I get these programs to my new computer?

    Computer Crashed with CS4 - How can I get these programs to my new computer?

    You will want to install them from the installation media.

  • On my Ipad I seem to be having a problem when trying to play YouTube videos embedded on Facebook.   When I click the links, I get a message saying: "Flash Player upgrade required."   and under it, it says, "You need to download and install the lastes vers

    On my Ipad I seem to be having a problem when trying to play YouTube videos embedded on Facebook.
    When I click the links, I get a message saying: "Flash Player upgrade required."
    and under it, it says, "You need to download and install the lastes version of Adobe Flash Player to view this content"
    and also a green button saying "Get Flash Player"
    I get this if using chrome or safari .
      I can go direct to YouTube it just works.

    The Facebook link to the video is accessing an Adobe Flash video.  Unfortunately, no iOS devices can play flash. 

  • After downloading Firefox 7.0.1, my tabs will randomly move to a new window. Very annoying-how can I fix it? Thanks!

    This problem only started after updating Firefox to 7.0.1--
    When I'm browsing the internet, the tab I'm on will randomly move to a new window. It's very random and very annoying. Please help me to make it stop!
    Thanks!

    Are you inadvertently using "tab tearing". If you drag a tab below the tabs bar and then release it it will create a new window moving the tab to it -- not a new feature. There is no animation or symbol attached to cursor -- at least not for me.
    I put up with it and generally see it happen as tabs will widen, or my tabs counter will reduce.
    bug489729 (Disable detach and tear off tab) :: Add-ons for Firefox
    *https://addons.mozilla.orgfirefox/addon/bug489729-disable-detach-and-t/

  • In pages,how do I copy an image to a new location by click & drag?

    in pages,how do I copy an image to a new location by click & drag?

    To MOVE an image to a new location, Click and Drag the image.
    To move a COPY of the image to a new location, leaving the original in place, pres and hold the Option key as you Click and Drag the image.
    Regards,
    Barry

Maybe you are looking for