Quicktime Open URL

After upgrade to Snow Leopard 10.6 I cannot get AppleScript to do a "getURL" command.
My script looks like this:
tell application "QuickTime Player"
activate
getURL "http://www.sr.se/webbradio/include/CreatePlaylist.asp?SkipDetect=1&id=p1&type= live&AvailableAudioFormats=3&AudioFormat=3&IsBlock="
end tell
Why doesn't it work?
Tia,
/andreas

With Snow Leopard, both scripts below will work:
tell application "QuickTime Player 7" -- the previous version of QuickTime Player
activate
getURL "http://www.sr.se/webbradio/include/CreatePlaylist.asp?SkipDetect=1&id=p1&type= live&AvailableAudioFormats=3&AudioFormat=3&IsBlock="
end tell
or
tell application "QuickTime Player" -- the new version of QuickTime Player
activate
*open URL* "http://www.sr.se/webbradio/include/CreatePlaylist.asp?SkipDetect=1&id=p1&type= live&AvailableAudioFormats=3&AudioFormat=3&IsBlock="
end tell

Similar Messages

  • Can you still open URL's within QuickTime and Lion ?

    Can you still open URL's within QuickTime and Lion ? the URL opening seems to have gone.
    I'm running Lion now and just noticed

    I actually tried that but it came up an error and movie could not be found (or words to that effect) I'll try again
    In case it still doesn't work for you, try this URL:
    http://idisk.me.com/jrwalker4-Public/Intro_2.mov
    It is a sample file posted yesterday fixing a Lion playback problem (Lion/QT X v10.1 doesn't seem to like having 2 active MP3 audio tracks present) which I just tested and is playing for me right now.

  • Quicktime 7 Pro     open url Preference

    Using QT 7 Pro I was downloading a video by  using the OPEN URL link.  I lost my internet connection while downloading the video and was not able to save it as a movie. Now every time I start to download the same movie it brings up the old unfinished downloaded movie.
    How can I clean out the old OPEN URL so I may start fresh

    I open the OPEN URL  and pasted the same URL I was downloading when I lost my internet connection. QT 7 Pro picked up where it left off and finished downloading the video where I was the able to save it to my hard drive.

  • Problems opening URL in QTX

    I'm not able to open any video from URL in Quicktime X. I've read every help file I can find and I can't seem to get it to work. It completely freezes when I put a URL in and click open. Any help is appreciated.

    Absolutely, thanks for responding: here is one of the URLs I've been trying to connect to: http://bglive-a.bitgravity.com/twit/live/high. I open QTX, go to open URL, type in the URL and click open and then it freezes until I force quit and it sends an error report.
    Best.
    Jeremy
    Message was edited by: jeremyjaytaylor

  • Opening url rebuffering stream when previewing songs

    How can I fix music previews that play for 3 seconds and then give me an error: opening url rebuffering stream? I never had this issue, and haven't changed anything. What's wrong?

    I've been having the same probelm for about 6 months.  On itunes 10 and 11.  This appears to be a problem that goes back to years which tell sme Apple simply does not care. There are many threads like this one with no answers.  I'm going to have to find another app to listen to online radio.  I love Apple but sometime ther really can fracking suck.

  • Open url in a new browser via a button

    I have created a button within a region and set request='go'. I then have a branch that when request='go', it branches to a url. Is there a way to open a new window when it branches to that url? Basically, I'm trying to open a new browser to go to a specified url when a button is clicked.

    Yes no problem,
    call an javscript function, which open the new window. that function can get as parameter the item value (eg. the URl text)
    function callMyPopupTest(url)
    w = open(url,"winLov","Scrollbars=1,resizable=1,width=1100,height=350");
    if (w.opener == null) w.opener = self;
    w.focus();
    this should work
    In this excample the URL is static for the button.
    If not you have to solve the problem inside the javscript function with getting the value of the item (the url text)
    document.getElementById('P21_URL').value;
    for that the javascript function parameter has to be the id(eg. name: P21_URL).
    hope that helps
    thorsten

  • Open URL in a new window by closing the parent window

    Hi Friends,
    Is there any option to open URL in a new window by closing the parent window on a button click?
    Already implemented the logics suggested in /people/mohammed.anzys/blog/2007/06/05/how-to-close-parent-window-in-webdynpro-applications , the thread ' URL in same window '  and the standard component WDR_TEST_EXIT_PLUG .But button is not triggerring any actions .plz help me  ..............
    Regards,
    Radhika

    hi,
    Do the following steps :
    -> Make an Outbound Plug to the Window.
    ->Make the type of Outbound plug to Exit Type.
    ->Add URL of type String as a parameter to the outbound plug of Window.
    ->Do remember to add Component Name in the Properties Tab of View ( othervs Calling Outbound plug of window from view wont b possible ).
    To open a new URL with closing the previous one write this Code in OnAction of Button : ( this Code can be get from Code Wizard too ).
    DATA lo_zexit TYPE REF TO ig_zexit .   <zexit is name of my Component>
    lo_zexit =   wd_this->get_zexit_ctr( ).
      lo_zexit->fire_out_window_plg(
        url =   'http://www.google.com'                            " string
    I hope it helps.
    Thanx.

  • Open url from xchat in opera

    I'd like to open urls from xchat in opera.
    Under settings>advanced>url handler:
    !opera -remote 'openURL(%s)'
    xchat has tcl as an optional dep, so I installed that.
    This is in xfce4 and I have set opera as the preferred browser.

    Well, I'm afraid that is not an option.
    The goButton is in a table row. There are lots of rows so if I use EL for Destination attribute the URL would be retrieved for each of rows.
    The method of URL retreiving is heavyweight operation which includes calling plsql functions, working with strings and others. So if I do it for each table row my application hungs and then I receive an exception of CPU usage.
    That's why I switched to normal commandButton witch actionListener which retrieves url on click - only once. So I need to open URL from Java.

  • Open URL from Java in a new browser tab

    Hi OTN,
    Surprisingly can't find the implimintation.
    In an ADF managed bean I retrieve String url. I need to open a new browser tab with this url.
    Found this thread Open a url in a new window in the backing bean which shows using javascript "service.addScript(facesContext, "window.open(http://www.google.coml)");".
    But in my case in doesn't work. The code is executed, but nothing happens. Maybe because the bean is called from a taskflow inline popup.
    ADF 11.1.1.4
    Thanks.

    Well, I'm afraid that is not an option.
    The goButton is in a table row. There are lots of rows so if I use EL for Destination attribute the URL would be retrieved for each of rows.
    The method of URL retreiving is heavyweight operation which includes calling plsql functions, working with strings and others. So if I do it for each table row my application hungs and then I receive an exception of CPU usage.
    That's why I switched to normal commandButton witch actionListener which retrieves url on click - only once. So I need to open URL from Java.

  • Captivate 4 Open url from a button not working?

    Hi All,
    I have published a scorm course from captivate 4 and have installed to our servers. I would like to have a link to a document that is online (.doc) but whenever I click the transparent button it starts to load, opens a window (which has the correct title name) but then disappears with no warning or error message.
    The link resides behind a transparent button, and has the settings On Success open url or file in a new window.  I know the problem is not specific to this document because I have had the same problem with a completly different online file location in the past.
    Please Help!!
    Many thanks in advance.
    Chris Maile

    Hi there
    Please send me a private E-Mail message to rstone75 (at) kc (dot) rr (dot) com and advise of the exact file name of the file you are linking to.
    I'll send you back a file that you can use to test and see if the link works.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Open URL from a Captivate generated MP4

    Hello all,
    I am putting together an instructional video (.mp4) using Captivate 5.5, the video will be targeting iOS users.
    I will need to provide a way to open some webpages while the end user is playing the mp4 file. My thought was to include a button with an assigned action to "Open URL or file" and specify the URL.
    This does not seem to work after publishing to mp4 format. Is that feature not supported in Captivate mp4 files? Or did I forget a step maybe? Is there a workaround to achieve the same result?
    I'd appreciate any input on this.

    Hi there
    Unless something has changed recently, it is my understanding that MP4 is strictly a video format and does not support hyperlinking or other types of interactivity.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Why do we use open URL in default browser function? What are the uses of it?

    Why do we use "open URL in default browser" function?  What are the uses of it?

    kdm7 wrote:
    Okay.
    So can we keep a web button to access the www.ni.com ? So that web site opens only when button pressed?
    P.S  I,m a newbie.
    Yes, you can also, e.g. include a help file or manual as html and open that in the browser.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • Connection refused--while executing (HttpConnection) Connector.open(url);

    Hi,
    i'm using netbeans mobility 5.0
    as i was new to this mobile programming i'm getting the output as "Connection Refused"
    plz plz plz plz....... help me out from this problem
    here is my code..
    code:_
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.io.*;
    import java.io.*;
    public class FileViewer extends MIDlet implements CommandListener
    private Display display; // Reference to Display object
    private TextBox tbViewer; // View file contents in a textbox
    private Command cmView; // Command to view file
    private Command cmExit; // Command to exit
    private String url = "http://www.corej2me.com/midpbook_v1e1/scratch/fileViewer.hlp";
    public FileViewer()
    display = Display.getDisplay(this);
    // Define commands
    cmView = new Command("View", Command.SCREEN, 2);
    cmExit = new Command("Exit", Command.EXIT, 1);
    tbViewer = new TextBox("Viewer", "", 250, TextField.ANY);
    tbViewer.addCommand(cmView);
    tbViewer.addCommand(cmExit);
    tbViewer.setCommandListener(this);
    public void startApp()
    display.setCurrent(tbViewer);
    private void viewFile() throws IOException
    HttpConnection http = null;
    InputStream iStrm = null;
    try
    http = (HttpConnection) Connector.open(url);
    // Client Request
    // 1) Send request method
    http.setRequestMethod(HttpConnection.GET);
    // 2) Send header information (this header is optional)
    http.setRequestProperty("User-Agent", "Profile/MIDP-1.0 Configuration/CLDC-1.0");
    // 3) Send body/data - No data for this request
    // Server Response
    // 1) Get status Line
    System.out.println("Msg: " + http.getResponseMessage());
    System.out.println("Code: " + http.getResponseCode());
    // 2) Get header information
    if (http.getResponseCode() == HttpConnection.HTTP_OK)
    // 3) Get data (show the file contents)
    iStrm = http.openInputStream();
    int length = (int) http.getLength();
    if (length > 0)
    byte serverData[] = new byte[length];
    iStrm.read(serverData);
    tbViewer.setString(new String(serverData));
    finally
    if (iStrm != null)
    iStrm.close();
    if (http != null)
    http.close();
    public void pauseApp()
    public void destroyApp(boolean unconditional)
    public void commandAction(Command c, Displayable s)
    if (c == cmView)
    try
    viewFile();
    catch (Exception e)
    System.out.println(e.toString());
    else if (c == cmExit)
    destroyApp(false);
    notifyDestroyed();
    output*
    build.xml(debug)*
    some....
    Application descriptor does not declare any MIDlet. Direct execution is not allowed.
    Generated "C:\Documents and Settings\Lakshmi Narayan J\jlnexample\dist\jlnexample.jar" is 2655 bytes.
    post-jar:
    debug:
    C:\Documents and Settings\Lakshmi Narayan J\jlnexample\src\.timestamp
    Starting emulator in debug server mode on port 1469
    com.sun.kvem.midletsuite.InvalidJadException: Reason = 22
    The manifest or the application descriptor MUST contain the attribute: MIDlet-1
    nbdebug:
    KdpDebugTask connecting to debugger 1 ..
    KdpDebugTask connecting to debugger 2 ..
    KdpDebugTask connecting to debugger 3 ..
    KdpDebugTask connecting to debugger 4 ..
    KdpDebugTask connecting to debugger 5 ..
    Connecting JPDA Debugger to emulator timed out after 5 attempts and 31 seconds.
    C:\Documents and Settings\Lakshmi Narayan J\jlnexample\nbproject\build-impl.xml:306: The following error occurred while executing this line:
    C:\Documents and Settings\Lakshmi Narayan J\jlnexample\nbproject\build-impl.xml:311: Connecting JPDA Debugger to emulator timed out after 5 attempts and 31 seconds.
    BUILD FAILED (total time: 43 seconds)
    Debugger console:
    Attaching to localhost:1469
    Connection refused.
    Edited by: LAKSHMI_NARAYAN_J on Jun 23, 2008 9:54 AM

    It's called potential deadlock. The emulator blocks your app 'cause any connection and commandAction needs its own thread. So I suggest use a new thread with this http connection then your program will be run successful.

  • Error opening URL  Error on a Mac

    So is this happening to anyone else?
    I do a test movie from my Mac and when the movie I’m
    testing needs to load an external file I get the following error
    message:
    Error opening URL
    "ETC:Users:michael:Current:cvs:Gigapets:launch:banner_main.swf/xml/home.xml"
    This happens on my Mac alone mind you, everyone else's in the
    office works fine.
    It doesn’t matter if I am loading an xml file through
    the XML object, or a swf or jpg file through the loadMovie
    functions, it always gives me this error when I load files with a
    relative path on my local machine.
    I am running Flash 8 on OS 10.3.9

    In this particular example I am using this code to start the
    xml file load:
    // now load the XML file that contains the content strings
    var sXMLFile:String = "xml/home.xml";
    var xmlContent:XML = new XML();
    xmlContent.ignoreWhite = true;
    xmlContent.onLoad = onXMLLoadComplete;
    xmlContent.load( sXMLFile );
    But I don’t think the code is the problem here . This
    happens on every file I load when I am using a relative path to the
    content, regardless of how I load the content (XML object,
    loadMovie, MovieClipLoader, etc…) and the same code executes
    perfectly on every other machine in the office(Mac and PC).
    I’m more concerned with the semi-colons and .swf filename
    that Flash is putting into my relative path on the error message.
    Is that normal?

  • Internet Explorer cannot open url in local Windows network share

    Windows Server 2012 R2 as a domain controller
    Internet Explorer 11 64/32
    Favorites are redirected to a Windows network share (on the server itself)
    Issue: When clicking a favourite redirected to the Windows network share, IE does nothing. 
    For testing purpose,
    I double click a .url file in redirected Favorites (e.g.
    \\domain_controller\profiles\username\Favorites\website.url), IE opens with a blank page. 
    If the .url file is placed at local drive or a Samba share (e.g. in a Synology box, probably it does not really matter as long as it is a network share residing in another computer), IE works fine.
    The issue applies to every one (probably except Administrator) logged on the domain controller.
    I tried reset IE.  It did not work.
    Favourites redirection works on Windows 8.1 client computers in the domain.
    Pinned Site Shortcut (.website) file works everywhere
    When Enable Protected Mode in Internet Options\Security\Internet is disabled, IE can open .url file in a Windows network share.  But it is probably not a good idea to permanently disable it.
    Any suggestion on fixing the issue?  Thank you.

    tried ProcMon, the events captured are enormous even after I filtered out those I am sure do not matter.  It was hard to spot what went wrong if I don't know what to look for. 
    Which is why I made the suggestion to filter coarsely and wait for a divergence in your two nearly equivalent traces.   <eg>
    Otherwise, if you are only looking at one trace but think that there is a possibility that some diagnostics may have been written, filtering with 
    Operation Is WriteFile  is often very handy.  With that filter you can also use the Count occurrences... tool for the number of distinct  Path  values which were involved.
    In fact, now that I have reviewed the symptom description, filtering coarsely might also mean using only the File Access events and filtering with  Path Contains Fav   Do that with each of your traces and see where there is a divergence. 
    Then turn the filter off at that point or perhaps just add Registry events at that point (e.g. use the button but leave your filter for  Path in place).  Etc.
    Good luck
    Robert Aldwinckle

Maybe you are looking for

  • WEP Key decrypt error

    We have WPA2 clients and WLC4402, why is the controller reporting this error message. Does anyone know ? It doesn't seem to effect the connection but I'm just concerning. Tue May 9 12:47:20 2006 WEP Key decrypt error. Station MAC Address is xx:xx:xx:

  • Use of Hints in performance tuning

    Hi Please let me know actual usage of hints in query tunging, how do we write hints of increase performnace. let me know below query will gives better performnce. if hints are not use query will degrade performance. SELECT /*+ ORDERED INDEX (b, jl_br

  • Gallery without a plugin (html5)?

    I have DW5.5. I need to get permission to download any plugins....so....is it possible to create an image gallery just with html and CSS? Needs to be html5 compatible.

  • Block a material for production

    Hi. I need to block a material for production  (HALB - semifinished products). In the material master > MRP1 > Plant-Specific Material Status I can choose "02" => Blocked for task list/BOM Will this block the material for production? Thanks Geiri

  • Defining Folders For Project Window And On HD

    Hi, haven't seen an option in edit/preferences or forum/search or google regarding defining folders (bins) in the project-window and on the hard-disk where for example audio recordings in Premiere would be organized in ... same for movie files create