URL files

I am coming along well on a switch from the evils of M$ I do have one question though that I am not finding an answer to. Then again it's 4:33am so I could just be missing the obvious
When I was in Windows (XP) I stopped using bookmark files, etc. It just got annoying. So, I'd just drag the URL to a folder of bookmarks (this way made it easier to manage between multiple browsers and just check for duplicates, etc.).
So, now I have all the URL files that XP made. My question is how do I convert them into something Leopard can deal with.
I guess I could. Load them on to an XP box. make firefox import them. Then move the bookmark.htm file over to Leopard and go from there. I'm just thinking there has got to be an easier way.
or was that it?
Thank you

Your post made me curious, so I just dug up some old URL files with Spotlight. If I click on one, it simply opens in Safari as I would hope.
I guess then you could click on the one by one, then bookmark them.

Similar Messages

  • Safari doesn't open his own .URL files

    Hello
    I've adopted Safari for Windows at work due to the good experience I had with Safai on my Mac at home, but I almost immediately I found a serious bug:
    Safari for Windows creates ".URL" files perfectly like IE7, by dragging the icon on the left of the address into a folder (or the desktop). Everything' fine here. I use this functionality a lot!
    I just opened the .URL file and looks nice. Here's an example:
    \[InternetShortcut\]
    URL=http://discussions.apple.com/forum.jspa?forumID=1188
    The PROBLEM is that when I double click the ".URL" file Safari for Windows just created, Safari NEVER opens, instead opening IE7 !
    There must be a registry fix for this, because if I drag the icon into an opened Safari, it opens the link perfectly.
    Please tell me what I must change on the Windows Registry to fix this.
    Thank you in advance for your support, and keep up the good work!

    Replying to my own problem, I think I finally fixed it... by accident!
    After a lot of juggling with Control Panel->Add/Remove Programs->Set predefined browser, I finally managed to get IE7 out of the way, but only after deactivating access to Internet Explorer, and a lot of random checks and reboots along the way.
    I have no idea why Safari for Windows can't make himself the default browser on URL opening, but I believe you are missing some settings somewhere in the Windows Registry.
    Happy bug hunting!

  • I am trying to import my favorites from a Favorites folder that are .url files! Please help!

    Hi,
    So my old laptop died, and I saved my favorites from internet explorer as a Favorites folder (I took the harddrive out of my old laptop and dragged everything onto an external harddrive). I now have a new laptop and am trying to pull in all my favorites into Mozilla. I have already looked at all the help files on here, but it looks like they are only for importing .html files? I was looking at my saved favorites and it seems they are all saved as .url files. Any advice on how to get these into Firefox? I really really don't want to have to re-bookmark EVERYTHING.
    Thanks!

    Firefox can handle its' own json and sqlite format for bookmarks/places, and it can handle the universal bookmarks.html interchange format, but it can't deal with the Favorites .url format - that's unique to IE and its' clones. Get that folder of .url files back into Internet Explorer and then export that data as an HTML file.
    In IE: <br />
    File > Import/Export - Export to HTML file
    ''then in Firefox:'' <br />
    Bookmarks > Organize Bookmarks -> Import & Backup - Import HTML... = From HTML file

  • Opening a URL/File in new window instead of new tab

    I think I know the answer to this, but I'd like to check anyway.  When setting an action to Open URL or File for a button/click box/hyperlink/etc, is there a setting in Captivate to open the URL/File in a new WINDOW instead of a new TAB? I know to use the "New" setting along with the Open URL or File action. I assume opening in a new window instead of a new tab by default is going to depend on the settings of whatever browser you use, but like I said, just wanted to check. Thanks!

    If you open it in javascript and specify a height/width or location it should open in a new window.
    window.open("http://www.adobe.com", "_blank", "toolbar=yes, scrollbars=yes, resizable=yes, top=500, left=500, width=400, height=400");

  • URL file-access is disabled in the server configuration

    My hosting company has made a server config change and my xslt pages have stopped working with the following error.
    It says url file access is disabled but my phpinfo() still shows allow_url_fopen = on
    What else might be the problem?
    Warning: require_once() [
    function.require-once]: URL file-access is disabled in the server configuration in
    /homepages/0/xxx/htdocs/xxxx/inc/horoscope_xml.php on line
    3
    Warning: require_once(
    http://www.xxxx.co.uk/includes/MM_XSLTransform/MM_XSLTransform.class.php) [
    function.require-once]: failed to open stream: no suitable wrapper could be found in
    /homepages/0/xxxx/htdocs/xxxxx/inc/horoscope_xml.php on line
    3
    Fatal error: require_once() [
    function.require]: Failed opening required 'http://www.xxxxx.co.uk/includes/MM_XSLTransform/MM_XSLTransform.class.php' (include_path='.:/usr/lib/php5') in
    /homepages/0/xxxx/htdocs/xxxxx/inc/horoscope_xml.php on line
    3

    bikeman01 wrote:
    I don't understand your use of the word 'class' in your reply - I am using php not asp.net.
    The name of the file that you are trying to access is MM_XSLTransform.class.php. It is a PHP class created by Dreamweaver for the XSL Transformation server behavior.
    The servers php is 5.2.11, as it has been for sometime, so I know that it previously worked with allow_url_fopen = on and allow_url_include = off
    Judging from the error message, you are trying to include the file using a URL, rather than a file path:
    Fatal error: require_once() [
    function.require]: Failed opening required 'http://www.xxxxx.co.uk/includes/MM_XSLTransform/MM_XSLTransform.class.php' (include_path='.:/usr/lib/php5') in
    /homepages/0/xxxx/htdocs/xxxxx/inc/horoscope_xml.php on line
    3
    Change the URL to a file path:
    require_once('/homepages/0/xxxx/htdocs/includes/MM_XSLTransform/MM_XSLTransform.class.php');
    Is it possible for phpinfo() to show allow_url_fopen = on yet be actually off on the server?
    No.
    [Edited to correct name of server behavior]

  • Problem with URL File download

    Hi every one i am facing a problem with URL File read Technique
    import java.awt.Color;
    import java.io.DataOutputStream;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.net.URL;
    import java.net.URLConnection;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JProgressBar;
    public class JarDownloader
         boolean isSuccess = false;
         public JarDownloader(String url)
              downloadJar(url);          
         public boolean isDownloadingSuccess()
              return isSuccess;
         private File deleteExistingFile(String filename)
              File jarf = new File(filename);
              if(jarf.exists())
                   jarf.delete();
              return jarf;
         public static void main(String args[]){
              new JarDownloader("url/filename.extension");
         private void downloadJar(String url)
              try
                   URL jarurl = new URL(url);
                   URLConnection urlc = jarurl.openConnection();
                   urlc.setUseCaches(false);
                   urlc.setDefaultUseCaches(false);
                   InputStream inst = urlc.getInputStream();
                   int totlength = urlc.getContentLength();
                   System.out.println("Total length "+totlength);
                   // If the size is less than 10 kb that means the linkis wrong
                   if(totlength<=10*1024)throw new Exception("Wrong Link");
                   JFrame jw =new JFrame("Livehelp-Download");
                   JPanel jp =new JPanel();
                   jp.setLayout(null);
                   JLabel jl = new JLabel("Downloading required file(s)...",JLabel.CENTER);
                   jl.setBounds(10,10,200,50);
                   jp.add(jl);
                   JProgressBar jpbar = new JProgressBar(0,totlength);
                   jpbar.setBorderPainted(true);
                   jpbar.setStringPainted(true);
                   jpbar.setBounds(10,70,200,30);
                   jpbar.setBackground(Color.BLUE);
                   jp.add(jpbar);
                   jw.setContentPane(jp);
                   jw.pack();
                   jw.setResizable(false);
                   jw.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
                   jw.setLocationRelativeTo(null);
                   jw.setSize(220,150);
                   jw.setVisible(true);
                   int readlngth=0;
                   int position=0;
                   byte[] readbytes = new byte[totlength];
                   while(totlength-position > 0)
                        readlngth = inst.read(readbytes,position,totlength-position);
                        position+=readlngth;
                        jpbar.setValue(position);
                   File jarf = deleteExistingFile(filename);
                   jarf.createNewFile();
                   //FileWriter fwriter=new FileWriter(jarf,true);
                   FileOutputStream fout = new FileOutputStream(jarf,true);
                   DataOutputStream dout = new DataOutputStream(fout);
                   dout.write(readbytes);
                   dout.flush();
                   dout.close();
                   inst.close();
                   jw.setVisible(false);
                   jw.dispose();
                   isSuccess=true;
              }catch(Exception ex)
                   isSuccess=false;
    }From the above code i received the total length of the PAGE content (i.e here url is a file) when i tried to find the size of that file it return -1.
    please help me

    I think the real problem is that you don't check the return value from read (it's probably less than data.length indicating an incomplete read). Isn't there a readFully somewhere?

  • NW PI 7.1 Install FKD-00048  Unable to open URL file:///tmp/sapinst_instdir

    HI,
    I am installing PI 7.1 on a HP-UX/ Oralce environment. Started the install and when It prompted for Oracle Software, I  stopped the install and installed Oracle.
    When starting back SAPINST after oracle install it terminates with the following error :
    guiengine: 2011-03-18 07:26:03 Login in progress
    guiengine: 2011-03-18 07:26:03 Login successful
    ERROR      2011-03-18 07:26:50.304 [sixxcpars.cpp:179]
    FKD-00048  Unable to open URL file:///tmp/sapinst_instdir/NW71/INSTALL/SYSTEM/ORA/STD/AS/control.xml.
    Abort execution because of
    keydb.unableToOpenURL
    Nothing has been moved from the /tmp directory.
    Any help would be appreciated
    Thanks
    Christo

    Hi,
    It looks like problem /tmp file system. Generally contents in this file system are temporary.
    I think you have to start the installation again but this time I would suggest you to not use /tmp as installation directory.
    Thanks
    Sunny

  • Insert the hyperlink URL file name underneath all images?

    Hi, I was wondering if I have an image with hyperlink
    attached, if I can use some sort of formatting code or something to
    not only show the picture, but also the name of the URL file
    associated with the picture. For example, my site is
    www.drcelly.com and I have a folder I named “lgtest”
    and within that folder I have all my images in, and also the HTML
    pages that are linked to the images. The page (screen shot below)
    showing all the pictures is titled “lg” so the
    directory to the following page is:
    http://www.drcelly.com/lgtest/lg.html
    screen shot-
    http://img.photobucket.com/albums/v229/mds33200/11.jpg
    As you can see, the selected picture (circled in red) is
    named “tp 1010.gif” and it has a hyperlink attached,
    named “c297.html”. (so if someone was to click that
    image, it would direct you to
    http://www.drcelly.com/lgtest/c297.html)
    Now the thing I need to do is to get the image to shop up
    just as it is now, however underneath the image I need a text
    description titled “c297.html” or even
    “c297”. I have several pages with several hundred
    images on it, and I would prefer to have the computer fill these in
    rather then manually entering each one separate. Does anyone know
    if its possible?
    Here is a sample of how I would like it to look (I manually
    typed the red data in by using a photo editor just to show how I
    would like it to look, my goal is to make it so I dont have to type
    the red data in):
    screen shot-
    http://img.photobucket.com/albums/v229/mds33200/2-3.jpg
    Any help / info would be appreciated! thanks.

    You would need custom javascript or server scripting to do
    this. HTML has
    no such facility.
    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
    ==================
    "mds33200" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi, I was wondering if I have an image with hyperlink
    attached, if I can
    > use
    > some sort of formatting code or something to not only
    show the picture,
    > but
    > also the name of the URL file associated with the
    picture. For example, my
    > site
    > is www.drcelly.com and I have a folder I named ?lgtest?
    and within that
    > folder
    > I have all my images in, and also the HTML pages that
    are linked to the
    > images.
    > The page (screen shot below) showing all the pictures is
    titled ?lg? so
    > the
    > directory to the following page is:
    http://www.drcelly.com/lgtest/lg.html
    >
    > screen shot-
    http://img.photobucket.com/albums/v229/mds33200/11.jpg
    >
    > As you can see, the selected picture (circled in red) is
    named ?tp
    > 1010.gif?
    > and it has a hyperlink attached, named ?c297.html?. (so
    if someone was to
    > click
    > that image, it would direct you to
    >
    http://www.drcelly.com/lgtest/c297.html)
    >
    > Now the thing I need to do is to get the image to shop
    up just as it is
    > now,
    > however underneath the image I need a text description
    titled ?c297.html?
    > or
    > even ?c297?. I have several pages with several hundred
    images on it, and I
    > would prefer to have the computer fill these in rather
    then manually
    > entering
    > each one separate. Does anyone know if its possible?
    >
    >
    > Here is a sample of how I would like it to look (I
    manually typed the red
    > data
    > in by using a photo editor just to show how I would like
    it to look, my
    > goal is
    > to make it so I dont have to type the red data in):
    >
    > screen shot-
    http://img.photobucket.com/albums/v229/mds33200/2-3.jpg
    >
    > Any help / info would be appreciated! thanks.
    >
    >

  • Error opening url 'file: What does it mean?

    When I test some of my as3 movies a new window opens and I can test the file. Yet when I test other movies I get an (error opening url 'file message.) What causes that? It seems to me that if a movie plays it should also test in a new window.

    It doesn' work. I only got the one file open. The swf file won't open at
    all. The fla file won't test. But when I debug the fla file the flash player
    debugger opens the movie in a new window and I get this message in the
    output window: "Attempting to launch and connect to Player using URL
    /Users/schweideltyson/Desktop/Circle.swf"
    SWF Users:schweideltyson:Desktop:Circle.swf - 2887 bytes after
    decompression
    Could it be my flash player is not working properly? I wish I knew.

  • .url files launch in IEplorerer instead of Safari

    .url files launch in IExplorer instead of Safari, how can I fix it. I try to associate .url file (Internet Shortcut) to Safari, but windows vista does not let me change the Default Program (Internet Explorer. Any help will be appreciated. Thanks

    I think the programs like to manage these settings, instead of manually changing the File Associations.
    Start IE and click Tools -> Options. Set it as your default.
    Then open Safari and it should ask you. Click Yes.
    Not sure why the file associations are ignored.

  • Using unix to try and get url file from c++

    Hi,
    Can I use unix to try and get a url file and read it from c++??
    eg given a url and filename , can I read it, from c++???

    The various unix standards do not, as far as I know, provide any URL resolution APIs. You can of course build your own, using sockets and file io, but you would have to build your own protocol stacks for http, https, ftp, etc. This is a pretty big challenge.
    A better approach is to use an existing third party library that has already implemented these bindings. cURL is one such library, and has API definitions for many languages, including C++:
    http://curl.haxx.se/libcurl
    It is released under a very generous license, so you should be able to use it in almost any context. You will need to either download and compile the sources, or get prebuilt binaries somewhere.

  • Error opening url 'file ///undefined'

    Hey everyone. I'm new to actionscript and I'm having some issues. Here is my code:
    function onFinish(success_boolean, results_obj, xml)
        if (success_boolean)
            play ();
        } // end if
    } // End of the function
    Stage.align = "MC";
    Stage.scaleMode = "noScale";
    url = "25904";
    _root.cacheKiller = "true";
    stop ();
    var parsed_obj = {};
    var unCash = new Date().getTime();
    if (_root.cacheKiller == "true")
        fileToLoad = url + "_main.xml?cacheKiller=" + unCash;
        fileToLoad = url + "_main.xml";
    else
        fileToLoad = url + "_main.xml";
    } // end else if
    gs.dataTransfer.XMLParser.load(fileToLoad, onFinish, parsed_obj);
    _root.emp.useHandCursor = 0;
    _root.mus = 1;
    _root.n = 1;
    _root.num = 1;
    when I try to test mouvie in Flash I received the following error:
    Error opening URL 'file:///O|/W%20E%20B%20%20%20%20D%20E%20%20S%20%20I%20%20G%20%20N/web%20design/25904/sou rces/flash/TRY/25904undefined'
    I don't know what the probblem is..
    Can anyone help me? pls!!!

    Use the trace function to track down what values you are trying to process.  The error is telling you it cannot find the file for the path specified, and the path that it is identifying seems to be showing that there is a problem not only with the path (appears to have several blanks spaces) but also the file name.
    Try tracing the url value before it gets sent to the loading line, as in... trace(url) and see what it shows.

  • Mac firefox cannot open .url files from PC

    I have hundreds of pc .url files that I want to import as bookmarks.
    Mac Firefox opens the files as a text file, not as a web page.
    Mac Safari can open them no problem.

    If you have still access to the computer with the .url files then export them via IE to an HTML file.<br />
    If you can open them in Safari then bookmark them and export them in Safari to an HTML file.<br />
    Then you can import that HTML file in Firefox.
    [[Importing bookmarks and other data from other browsers]]
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • Open?url=file:///

    Dear all,
    While running some local website I've got some hyperlinks in it that say:
    txmt://open?url=file:///Users/me/files/somefile.txt
    Clicking on the link opens the somefile.txt in TextMate.
    I'm trying to achieve the same for a pdf to open in Preview. I've replaced txmt with Preview but that doesn't work.
    Can someone explain me this? I've looked into using: http://www.apple.com/applescript/linktrigger/index.html. But didn't get what to fill in for: com.apple.AppleScript.WebpageHelper
    Thanks for any reply,
    Gert

    That page tells you what you need - just look at the image link on the side. You'll see it has a URL:
    webpagehelper://com.apple.AppleScript.WebpageHelper?action=1&action=4!-http://www.apple.com/applescript/linktrigger/hummingbird.jpg
    This maps to the parameters shown in the .plist:
    <key>CFBundleIdentifier</key>
    <string>com.apple.AppleScript.WebpageHelper</string>
    This is the part of the URL after the protocol:// and before the arguments.
    <key>CFBundleURLTypes</key>
    <array>
      <dict>
        <key>CFBundleURLName</key>
        <string>Webpage Helper</string>
        <key>CFBundleURLSchemes</key>
        <array>
          <string>webpagehelper</string>
        </array>
      </dict>
    </array>
    The CFBundleURLName is pretty much anything you like - it's just a pretty name for the URL. The CFBundleURLSchemes is an array of the protocols you want to use (in this case webpagehelper:// )
    If you want to translate those terms to your existing URL, then 'txmt' would be your CFBundleURLScheme and 'open' would be your CFBundleIdentifier

  • Why does Thunderbird 31.1.2 see .url files as text documents? As a result, opening with any browser shows only text that are properties of the .url.

    I have an email with .url attachments. When I click on them I get a messages similar to this:
    You have chosen to open: Test.url
    which is: Text Document (5.0KB)
    from: mailbox://
    What should Thunderbird do with this file?
    If I select "Open with Firefox" I get a local page open up in Firefox with the address:
    file:///C:/Users/Scott/AppData/Local/Temp/Test.url-1.txt
    and the contents of this page:
    [InternetShortcut]
    URL=http://www.vrbo.com/xxxxxx
    IDList=
    IconFile=http://resources.vrbo.com/resources/xxxxx/images/favicon.ico
    IconIndex=1
    [{000214A0-0000-0000-C000-000000000046}]
    Prop3=19,2
    If I choose to save the .url file to the desktop it opens correctly in Firefox.
    Can someone assist me with this?
    Anyone???

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.
    There have also been fonts with a Chinese name reported that identify themselves as Helvetica, so check that as well.
    Use this test to see if the Helvetica font is causing it (Copy & Paste the code in the location bar and press Enter):
    <pre><nowiki>data:text/html,
    Helvetica<br><font face="Helvetica" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font><br>
    Helvetica Neue<br><font face="Helvetica Neue" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font>
    </nowiki></pre>
    You should reset the network.http prefs that show user set on the about:config page.<br />
    Not all websites support http pipelining and if they do not then you can have issues with images or other problems.
    See also http://kb.mozillazine.org/Images_or_animations_do_not_load#First_steps

  • How do I create a ".URL" file from a webpage I'm viewing

    How do I create a ".URL" file from a webpage I'm viewing

    The simplest way is to drag the "site identity button" (the padlock, for secure pages, and the globe, for other pages) to the desktop and drop it there. You may need to resize various window in order to be able to see the desktop while also viewing the site.
    There is an add-on for sending a shortcut to Windows without having to use this method. I haven't tried it myself:
    * Page on Add-ons site: https://addons.mozilla.org/firefox/addon/deskcut/
    * Review describing an extra setup step if it's not working: https://addons.mozilla.org/firefox/addon/deskcut/reviews/490684/

Maybe you are looking for

  • How to calculate usage value through measuring document.

    Hi, While creating Sales Order with reference to a Contract i need to update the usgae value in the Order Quantity ( RV45A-KWMENG ) field (at line item level). Can you help me calculate usage value through measuring documents for equipment over a per

  • Building a report using "PL/SQL Dynamic Content" can I have it output PDF?

    Hi, I build several reports using the "PL/SQL Dynamic Content" region and htp.p(). The output is exactly what the customer wants but they would now like to have it go into PDF document. Is there a way to do it? Bill

  • Uploading data from xls file to internal table

    Hello,      I have an excel file with just one column that has phone numbers. I want to upload these phone numbers into an internal table.     Now my question is: What is the method/function to do this? I tried GUI_UPLOAD but after upload the values

  • NDATA: How to mask special characters?

    Hello, using NDATA functionality there is a problem if search strings contain special characters like ( or ) or a comma etc. Is it possible to mask the search term? Otherwise there will be an error like "DRG-50901: text query parser syntax error". Ex

  • [Solved] Not able to start any GUI application after a while

    Hi, I have this crazy issue which never happened before, [ssss@localhost]$ opera No protocol specified opera: cannot connect to X server :0. Error: Resource temporarily unavailable [ssss@localhost]$ firefox No protocol specified No protocol specified