Playing mpgs in a seperate window

I watched the Steve Jobs keynote address the other day and safari opened a separate sizable window . How do I get safari to do this all the time ? It actually does it with my old explorer browser .

Any Web page author can allow their files be opened by the QuickTime Player instead of playing them back in a browser window. One of mine:
http://homepage.mac.com/kkirkster/03war/
Once opened in the QuickTime Player you can resize the window by dragging the lower right corner.
The AppleScript only requires a "click" to activate it. I keep it in the Scripts Menu but you can also put it in the Safari Bookmarks Menu.

Similar Messages

  • (bug?)Movie clip contains an object with a z value will not edit the object in place, it goes into a seperate window.

    When a movie clip contains an object with a z value, I can not edit the object in place, it goes into a seperate window.
    This changes the vanishing point relative to the movieclip instead of the stage (allong with everything else).
    This makes it very hard to keep track of where the movieclips will end up when actualy playing the animation.

    I should have explained my situation a little better. I have a machine that's made up of a number of parts, some of them are fairly large and some are quite small. When a user clicks on a part, I want to center that part on the screen and then move whole machine toward the screen until the selected part either fills the screen (for the larger parts) or the part bumps up against the front clip plane (for the smaller parts).
    I didn't think of checking for a collision with the ViewPlatform's TG, thanks for mentioning that. I wasn't sure how the ViewPlatform's location relates to the clipping plane, but I'll dig into it. I'm still learning how the ViewingPlatform, the image plate, and the clipping planes all relate to each other.

  • Waveform Graphs in Seperate Window

    Hey all,
    So, I have waveform data displayed in waveform charts on my labview front panel, but my boss said that he thought it would be cool if we could have each one in a seperate window, with the capability it play around with it a little.  I can do this in Excel after the measurement period is over, but I was wondering if there is anyway to do this during the measurement period.  We have measurement periods of about a day, so it would be good to see a longer term trend while the measuring period is still in progress.
    Thank you.

    This sort of functionality is relatively easy to implement in LabVIEW.  If you happen to have NI-SCOPE installed, check out the file import dialog of the NI-SCOPE Soft Front Panel (written in LabVIEW).  It does almost exactly what you are describing, using the file for a data source.  For some examples of data architectures to allow you to do this, check out the memory store and browse examples in Managing Large Data Sets in LabVIEW.  Either of the architectures work just as well for a separate window as they do for the main front panel.
    If you need more help, let us know.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • How can I call the Class and have a PDF appear in seperate window?.

    I would like to call the class/interface ZCL_UIU_PRN_ACCOUNT2, method Collect_data and have a Smartform executed to produce a PDF document in a Seperate window.
    Where I have an issue is in opening another window to display the PDF.
    I know the Standard PDF Facsheet does exactly this, but that is triggered via the Web browser and calls a Java script, avoiding and events and round-server trip processing. I would have changed the button values so that when pressed it does process the various events and eventually ends up at EH_ONPREVIEW for the BP_HEAD/Overview. I know just need to open a new window and call the process to create the PDF via Smartform.
    Any suggestions would be more than welcome. I have spent so much time on this, and have gained no real ground, so far.
    Jason

    Hi,
    in the method
    data: zcontrol TYPE SSFCTRLOP.
    zcontrol-device = 'PRINTER'.
    zcontrol-langu = sy-langu.
    zcontrol-no_dialog = 'X'.
    zcontrol-getotf = 'X'.
    data: job type SSFCRESCL.
    data: devtype type RSPOPTYPE.
    CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
    EXPORTING
    i_language = sy-langu
    IMPORTING
    e_devtype = devtype
    EXCEPTIONS
    no_language = 1
    language_not_installed = 2
    no_devtype_found = 3
    system_error = 4
    OTHERS = 5.
    data: output_options type SSFCOMPOP.
    output_options-tdprinter = devtype.
    call function FM_NAME
    EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS         = zcontrol
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
       OUTPUT_OPTIONS             = output_options
    *   USER_SETTINGS              = 'X'
    IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
       JOB_OUTPUT_INFO            = job
    *   JOB_OUTPUT_OPTIONS         =
      TABLES
        t_texto                    = t_texto
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5.
    if sy-subrc <> 0.
    endif.
    data: DOCTAB_ARCHIVE type TABLE OF DOCS,
    LINES type TABLE OF TLINE.
    *CALL FUNCTION 'CONVERT_OTF_2_PDF'
    ** EXPORTING
    **   USE_OTF_MC_CMD               = 'X'
    **   ARCHIVE_INDEX                =
    ** IMPORTING
    **   BIN_FILESIZE                 =
    *  TABLES
    *    otf                          = job-otfdata
    *    doctab_archive               = doctab_archive
    *    lines                        = lines
    * EXCEPTIONS
    *   ERR_CONV_NOT_POSSIBLE        = 1
    *   ERR_OTF_MC_NOENDMARKER       = 2
    *   OTHERS                       = 3
    data:  l_pdf_len type i,
    l_pdf_xstring type XSTRING.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    IMPORTING
    bin_filesize = l_pdf_len
    bin_file = l_pdf_xstring
    TABLES
    otf = job-otfdata
    lines = lines
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 4
    OTHERS = 5.
    IF sy-subrc is initial.
    DATA: cached_response TYPE REF TO cl_http_response.
    CREATE OBJECT cached_response
    EXPORTING add_c_msg = 1.
    l_pdf_len = XSTRLEN( l_pdf_xstring ).
    cached_response->set_data( data = l_pdf_xstring
    length = l_pdf_len ).
    cached_response->set_header_field(
    name = if_http_header_fields=>content_type
    value = 'application/pdf' ).
    cached_response->if_http_response~set_status( code = 200
    reason = 'OK' ).
    cached_response->if_http_response~server_cache_expire_rel(
    expires_rel = 180 ).
    data guid type GUID_32.
    CALL FUNCTION 'GUID_CREATE'
    IMPORTING
    ev_guid_32 = guid.
    data display_url type string.
    CONCATENATE url '/' guid '.pdf' INTO
    display_url.
    cl_http_server=>server_cache_upload( url = display_url
    response = cached_response ).
    *GV_DISPLAY_URL & GV_PRINTON are class attributes
    CLEAR: gv_display_url, gv_printon.
    MOVE display_url TO gv_display_url.
    gv_printon = 'X'.
    ENDIF.
    Send me you e-mail i cannot post the code that is used in the view.htm.
    Best Regards,
    Caíque Escaler
    Edited by: Caíque Escaler on Nov 26, 2010 5:00 PM

  • 2 simple questions about opening and closing seperate windows via iWeb...

    I'm a web newbie, so please excuse me for my lack of terminology. My questions are... 1. How do i have iWeb open a separate browser window "simultaneously" from my main page to display a quicktime movie or piece of artwork? 2. Is it possible with iWeb to create a "close" window button within that same seperate window so that the veiwer does not have to click the red button in the upper left hand corner. Thanks guys and girls!
    G5 Dual 2.3   Mac OS X (10.4.5)  

    Sorry! i meant I tried all of the links that are on your web page. There are quite a few of them and I watched most of the movies but there aren't any that open on a new window with a link to close it. I thought that happened because I had a pop-up blocker but even after dissabling the blocker and trying opening some of them again they still opened in the same window. I did come accross a couple of links that changed the window and made it do wacky thinks like moving fast left and right and forcing the window to get smaller. Kinda fun but this is not what I had in mind.. lol The rollover javascript is nice but I couldn't find it on the page's source. Is it the part that says "<script language="JavaScript1.2" src=..."? I'm just curious to know which software you used to make the flash movies and how difficult it was. Maya rocks by the way!

  • PDF's open in seperate windows!

    Please help............ my machine is running windows 2000 with version 8.1.2 of Adober Reader. Whenever I open a PDF file then Adobe opens but goes through all the other PDF's that I have ever opened and puts them all in seperate windows. As you can imagine, this is both annoying and disruptive..........please help! :-)

    PDF files are supposed to open in separate windows in Reader 8 (by
    default, you can turn this off). But it doesn't reopen anything, at
    least not when it is working properly.
    I'm guess that what is happening here is that you never closed the
    other PDF files, so they are still open. You can check this by looking
    in the Window menu - open PDFs are listed at the end.
    Aandi Inston

  • How to Play MPG videos in Flex web app?

    Hi,
    I would like to play MPG file in my flex app. Video player available in flex plays only .flv file.
    Is there any way of doing this?? can somebody post an example of this??
    Any help wud be highly appreciated.
    Regards,
    khushboo

    I think there's a dereferrer field in the HTTP header that you can query from the HttpRequest.

  • How to display the drill through report in a new browser seperate window

    Hello All,
    I am working on a drill through report which should run when I select the column value from the main report. The drill through report I am working on is Centerline Validate Angles for a specific line. It has 2 parameters, Pods ID and Angle. Main report supplies
    these 2 values. Right now, I am having an issue in displaying the drill through report in a seperate window. I have selected Go To URL option from the text box properties in main report and gave the expression as
    ="javascript:void(window.open('http://vmaidbdev1/Reportserver?%2fADN2%2fPipeline%2fCenterline+Validate+Angles+For+Specifi+Line&rs%3aCommand=Render&PODS_ID="&Fields!LINE_ID.Value &"&Angle="&Parameters!Angle.Value
    This is not working. The field in the main report is clickable but when I click it is throwing me error as Reporting services error. Could any one let me know if there is any error in the above expression or anything I need to add or correct.
    Please help. Thanks so much.

    Hi srisql,
    Sorry for the delay in getting back to you.
    After double-check the URL which I posted, I find that I have made some error in it. As you can see, there are some spaces in the URL. So please try the following expressions to check the issue again.
    Angle parameter is a multi-value parameter:
    ="javascript:void(window.open('http://vmaidbdev1/reportserver?/Adn2/Pipeline/Centerline Validate Angles for a specific line&PODS_ID="& Fields!LINE_ID.Value &"&Angle="
    &Join(Parameters!Angle.Value,"& Angle =") &"','_blank'))"
    Angle parameter is a single-value parameter:
    ="javascript:void(window.open('http://vmaidbdev1/reportserver?/Adn2/Pipeline/Centerline Validate Angles for a specific line&PODS_ID="&Fields!LINE_ID.Value &"&Angle="&Parameters!Angle.Value
    &"','_blank'))"
    The following general URL is for your reference:
    ="javascript:void(window.open('http://server_name/reportserver?/folder/ folder/report_name&parameter_name="&Fields!field_name.Value &"&parameter_name="&Parameters!parameter_name.Value
    &"','_blank'))"
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to make a link page come up in seperate window

    Am not sure how to make a link page to anther site for
    insatance come up in seperate window so that they do not navigate
    away from my site.Thanks Tony

    Select the item you want to use as a link. In the property
    inspector, type
    in the full path to the website you want to link to and set
    the Target to
    _blank.
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html
    "chesterarebest" <[email protected]> wrote
    in message
    news:e88357$ifp$[email protected]..
    > Am not sure how to make a link page to anther site for
    insatance come up
    > in seperate window so that they do not navigate away
    from my site.Thanks
    > Tony

  • URL iView only works in seperate Window

    Hi Everybody,
    i have store a html file under KM-Content. The problem is that i can not open the file with an URL-iview in the portal content area but in a seperate window. So when i choose the property: Launch in a new window = Display in portal content area i get the error access denied ( this message appears in the left bottom of my browser window, i have to click on a small icon to get the protocol with this message) and by choosing = Display in a seperate window it works fine.
    The permission for the KM-Content folder is Everyone.
    regards,
    Seed
    Edited by: seed_mopo on May 8, 2008 1:03 PM

    Try this,
    Remove html, head and body tags from the html file.
    Hope this may work for u.
    Mr.Chowdary

  • Wiki Server will not play embedded MP3 files in Windows Browsers

    I have a brand new cleanly installed OS X Server running on a Fall 2012 Mac Mini. I have created a Wiki where I am uploading .mp3 recordings of classes for people to listen to online or download.
    I can access the wiki and "quicklook" the MP3s in Safari on a Mac and iPad but I cannot on any Windows based web browser or in Chrome on my iPad or Mac. In Chrome on windows or an iPad the Quicklook preview window appears but no sound ever plays. In Firefox on Windows the preview window appears and plays a few seconds of audio and then stops.
    I have mutliple wikis like this set up on Snow Leopard Server and they work just fine in all browsers. This appears to be a bug with OS X Server 10.8 v.2.2.
    Any suggestions or does anyone know if there will be a fix for this anytime soon?
    Between this issue, the fact that I cannot successfully migrate my old wikis from Snow Leopard Server to Mountain Lion Server, and the fact that I cannot run Snow Leopard Server on newer Mac hardware, Apple seems to be wanting me to jump ship and abandon their platform.

    Use the Provide Server Feedback Button in the Server app under the About section.

  • [svn:fx-trunk] 10898: Fix for a bug: After playing a hide effect, a window wouldn't be visible again.

    Revision: 10898
    Author:   [email protected]
    Date:     2009-10-06 13:54:04 -0700 (Tue, 06 Oct 2009)
    Log Message:
    Fix for a bug: After playing a hide effect, a window wouldn't be visible again.
    The issue here is that all effects that occur because of HIDE end up calling setVisible() (see EffectManager.effectEndHandler).  Window/WindowedApplication was basically left with two concepts of setVisible...the displayObject one and the native application one, and they were out of synch.  So setting visible=true on the window wasn?\226?\128?\153t calling setVisible(true) which controls the display object visibility.  Now instead of doing our work in the visible setter, we override setVisible() and do it in there.
    QE notes: -
    Doc notes: -
    Bugs: SDK-23263
    Reviewer: Darrell
    Tests run: checkintests, Rob ran mustella window/windowedapplication
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23263
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/Window.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as

    I run Suse 9.1 Linux, and Suse has a package called lmsensors which by default on my machine gives readings like this:
    Code: [Select]
    temp1:       +27°C  (high =    +0°C, hyst =   +22°C)   sensor = thermistor
    temp2:     +41.0°C  (high =   +80°C, hyst =   +75°C)   sensor = PII/Celeron diode 
    Now that 41C is pretty high for an idle AMD643000+ running at 1000Mhz, 1.08V. Too high, I would say. temp 1 in this case is the SYS temp, temp2 is the CPU temp.
    Now, using lmsensors I can duplicate your little trick and tell it that temp 2 is in fact a 3904 transistor. Having done this can I get readings like this:
    Code: [Select]
    temp1:       +27°C  (high =    +0°C, hyst =   +22°C)   sensor = thermistor
    temp2:     +16.0°C  (high =   +80°C, hyst =   +75°C)   sensor = 3904 transistor 
    Problem is, I'm not sure that the sensor is actually a 3904 transistor! The number's lower, but I was pretty sure that the sensor in the AMD64 is in fact a diode. Also, surely the CPU temp can't actually be that much lower than the SYS temp.
    So, I think your fix succeeds in giving lower temps and that's great in that it will tell your system software that the CPU is not overheating, but I don't think it's the solution to high temp reporting. Anyway, as you say, its a solution for people who can't run with system shutdowns due to bogus high temps.  
    I've been looking at these temp issues with the MSI K8T, and I was thinking the problem was simply a miscalibration. The Winbond sensor chip on my board (maybe the K8N is the same, maybe not) has a sensor temp offset that gets added to the temp coming from the sensor. On the K8T this number is +54C.   Funny number I know, but I've "fixed" the problem while I wait for a real bios fix on the K8T by simply reducing this offset to give me a CPU temp that matches SYS temp when idle. This enables cool'n'quiet fan control to work properly on my system, which is my main practical concern.

  • Quicktime Wont Play MPG Files

    Hi,
    Just bought my first Mac - loving it. Only issue I have so far is that I have a load of video camera clips with an .mpg extension, which I copied onto an external drive when I had my PC. Now when I come to play these files, it comes up with "The movie xxxxxx.mpg can't be opened. You may need to install additional software to open this type of file.
    Wherever I look, it says Quicktime will play .mpg files, so I can't understand why they wont work. All the photo's on the same drive have gone into iPhoto no problem. When I go onto "tell me more" it starts going on about downloading additional media support. Not sure if I'm missing something simple!
    Please help!
    Thanks,
    Darran.

    Yea...I did this when I got my Mac for Christmas 2009. I can watch the videos no problem...WITHOUT SOUND! If I use VLC everything works right, but I want to be able to burn the videos to DVD to watch somewhere else too. I bought a Mac because this was supposed to be easier...NOT!
    Thinking of going back to a PC. At least everyone knows they have issues.

  • How do I stop quicktime from playing mpg in firefox?

    I want quicktime to NOT play mpg files in firefox. How can I add a mpg file to the applications section of FF to setup this properly?

    QuickTime can be very persistent in wanting to handle (take over) MIME types.
    Did you check the file type and MIME setting in the QuickTime Preferences?
    *http://kb.mozillazine.org/QuickTime

  • Need help playing .mpg files

    Just recently my computer has stopped playing .mpg files with sound, all I get is the video. iTunes, Quicktime and the Internet all will not play them with sound. Youtube.com does play movie files with sound so I'm assuming they aren't .mpg files.
    This problem just started happening recently and I have no idea what I did. .Mov files do play with sound.
    Thanks for any help.

    The following steps solved my problem similar to yours.
    1. Open Audio MIDI Setup (/Applications/Utilities/), then check the Audio Output setting.
    2. Change the Audio Output setting to 44100.0 Hz.
    3. Quit Audio MIDI Setup.
    For more detail, read this article.
    http://docs.info.apple.com/article.html?artnum=300832
    My output setting looked like 44100.0 Hz when I first opened Audio MIDI Setup. I changed it to 96000.0 Hz first and changed it back to 44100.0 Hz just to make sure the setting will be in effect. It worked.
    MacBook Pro (2.0GHz), iMac G5 (1.8GHz), Macmini   Mac OS X (10.4.8)  

Maybe you are looking for

  • Removing files from a dead powerbook drive

    I need to remove files from a dead powerbook which has motherboard failure. Does not boot up so Target mode will not work. Is there another way to do this? Do they make drive dock connectors for this?

  • Alert to Error in Receiver determination mapping

    Hi everyboy. Im using a mapping to decide the receiver determination (ReceiverDetermination - http://sap.com/xi/XI/System). I can´t configure an alert when the mapping fails. How could I do that???? Thanks a lot

  • How can I turn off the "open in tabs" in Fireworks CS4?

    I found out how to do it in Phoroshop CS4 ( preferences> interface, uncheck "open documents in tabs) but I can't find an option to turn off the "open in tabs"  for Fireworks. I realize that I can open documents in tabs and then drag them apart, but i

  • Update ppds order priority via FM?

    Dear gurus, does anybody know how to modify the priority of a ppds livecache order via ABAP (FM...)? thanks a lot, Pablo

  • Less number of data on webi than extracting those to excel/csv

    Hi Friends, I am getting lesser number of data on webi report then extracting to csv. The scenario is as below: 1) I am getting 25 rows on webi report. 2) When I am extracting the data to CSV I am getting 72 rows. And also when I run the sql query th