I want to use tools to discover why a bookmarlet does not work

I have a *.doc with screen snaps I would like to send to you
This system
Windows 7 32 bit home premium
Jaava applets Version 7 update 55 (build 1.7.0_55-b14)
Gmap to Gpx does not work
This all works with windows xp older version of firefox etc etc
This system
Windows 7 32 bit home premium
Java applets
Version 7 update 55 (build 1.7.0_55-b14)
http://www.elsewhere.org/journal/gmaptogpx/
GmaptoGPX bookmarlet contents
javascript:(function(){var%20script=document.createElement('script');script.src='//raw.github.com/rjl20/gmaptogpx/master/gmaptogpx.js';document.getElementsByTagName('head')[0].appendChild(script);})()
from the web site http://www.elsewhere.org/journal/gmaptogpx/
from
https://raw.githubusercontent.com/rjl20/gmaptogpx/master/gmaptogpx.js
seems to be source
GMapToGPX 6.4k
Originally based in part on the "Improved MSN and Google GPS GPX Waypoint
Extraction" bookmarklet described at http://badsegue.org/archives/2005/04/21/
Josh Larios <[email protected]>
August 3, 2005 - February 12, 2014
My google home page using firefox 29.0.1
The way it should works
Click on bike routes
https://maps.google.com/
get directions etc see sample screen below
Clicking the gmaptogpx bookmarklet fails.
What should happen is that a gpx generate script should be created which I can the pass on gps visualizer
So that I can down load a route onto my garmin
I know zip about java scripts.
I am trying to use the firefox tools “web console” to try and solve the problem and notify the developer.

First, I edited github to githubusercontent in the script address. This is based on a redirect from GitHub.
Second, switch from the "new" maps to the "classic" maps.
Okay, now I get a red bordered white box that says Loading. Nothing loads.
In the Browser Console I see this error message:
"Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://www.google.com/maps/preview?f=d&source=s_d&saddr=mandarin+oriental+hotel,+bangkok&daddr=Siam+Paragon+Shopping+Center+Bangkok+Thailand&hl=en&geocode=FVlp0QAdwbn9BSHlyolmM86yCymzoKfJxJjiMDHlyolmM86yCw%3BFb_C0QAdcAr-BSGjFUU22RBMJikHkVjkzZ7iMDGjFUU22RBMJg&sll=37.269174,-119.306607&sspn=3.89877,17.62207&vpsrc=0&dirflg=r&ttype=now&noexp=0&noal=0&sort=def&mra=ltm&ie=UTF8&t=m&z=13&start=0. This can be fixed by moving the resource to the same domain or enabling CORS."
Working around this will require embedding the script in a different way.

Similar Messages

  • Why my bluetooth does not work anymore?

    Why my bluetooth does not work anymore? What can I do?  Before I just turn on bluetooth then turn off it, and it worked properly. Now it does not work. I don't understand why.......

    Works fine for me.
    What exactly is it not doing?

  • Hello, I purchased design premium 4.0 German Windows  (LIZ 390232 from 22.02.2010) from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but onl

    Hello, I purchased design premium 4.0 German Windows  (LIZ 390232 from 22.02.2010) from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but only in Englisch (trial version?) Please help me for the next step. I have the license agreement in my hand.

    Moving this discussion to the Downloading, Installing, Setting Up forum.
    Jakobh53157856 before you begin the installation process please complete the transfer of license process to transfer the Adobe Creative software license you wish to utilize to your possession,  You can find details regarding the transfer process at Transfer an Adobe product license.

  • I purchased design premium 4.0 German Windows  from my friend and wanted to installation it. However, the key code does not work.

    I purchased design premium 4.0 German Windows  from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but only in Englisch (trial version?) Please help me for the next step. I have the license agreement in my hand.

    Nobody here can help you with this. You'll need to contact Adobe directly.
    Did your friend fill out and send in the license transfer form?
    Transfer an Adobe product license

  • Why ribbon XML does not work in Excel 2007?

    I installed 4 VSTO Excel add-ins on an Excel 2007 PC today. The two that use a visual designer ribbon worked fine. But the 2 that use a Ribbon (XML) did not. The add-in starts ok. But the ribbon does not show. Why would that be?
    I wrote two more add-ins to demonstrate the problem. One puts an OK button on the ribbon using the visual designer. That add-in installs on the excel  2007 PC and works as it should. But the 2nd, an add-in that uses Ribbon (XML) to put a button on the
    ribbon, does not work.  The add-in does not display on the ribbon.
    Here is the code of the Ribbon (XML) add-in project.  How to get a ribbon (XML) ribbon to display in excel 2007?
    thanks,
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml.Linq;
    using Excel = Microsoft.Office.Interop.Excel;
    using Office = Microsoft.Office.Core;
    using Microsoft.Office.Tools.Excel;
    namespace ExcelAddIn4
    public partial class ThisAddIn
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    protected override Office.IRibbonExtensibility CreateRibbonExtensibilityObject()
    return new Ribbon1();
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    <?xml version="1.0" encoding="UTF-8"?>
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
    <ribbon>
    <tabs>
    <tab idMso="TabAddIns">
    <group id="ContentGroup" label="Content">
    <button id="Button1" label="ok" screentip="Text"
    onAction="Button_OnAction" supertip="Inserts text at the cursor location"/>
    </group>
    </tab>
    </tabs>
    </ribbon>
    </customUI>
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Reflection;
    using System.Runtime.InteropServices;
    using System.Text;
    using System.Windows.Forms;
    using Office = Microsoft.Office.Core;
    // TODO: Follow these steps to enable the Ribbon (XML) item:
    // 1: Copy the following code block into the ThisAddin, ThisWorkbook, or ThisDocument class.
    // protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
    // return new Ribbon1();
    // 2. Create callback methods in the "Ribbon Callbacks" region of this class to handle user
    // actions, such as clicking a button. Note: if you have exported this Ribbon from the Ribbon designer,
    // move your code from the event handlers to the callback methods and modify the code to work with the
    // Ribbon extensibility (RibbonX) programming model.
    // 3. Assign attributes to the control tags in the Ribbon XML file to identify the appropriate callback methods in your code.
    // For more information, see the Ribbon XML documentation in the Visual Studio Tools for Office Help.
    namespace ExcelAddIn4
    [ComVisible(true)]
    public class Ribbon1 : Office.IRibbonExtensibility
    private Office.IRibbonUI ribbon;
    public Ribbon1()
    public void Button_OnAction(Office.IRibbonControl control)
    MessageBox.Show("Button_OnAction");
    #region IRibbonExtensibility Members
    public string GetCustomUI(string ribbonID)
    return GetResourceText("ExcelAddIn4.Ribbon1.xml");
    #endregion
    #region Ribbon Callbacks
    //Create callback methods here. For more information about adding callback methods, visit http://go.microsoft.com/fwlink/?LinkID=271226
    public void Ribbon_Load(Office.IRibbonUI ribbonUI)
    this.ribbon = ribbonUI;
    #endregion
    #region Helpers
    private static string GetResourceText(string resourceName)
    Assembly asm = Assembly.GetExecutingAssembly();
    string[] resourceNames = asm.GetManifestResourceNames();
    for (int i = 0; i < resourceNames.Length; ++i)
    if (string.Compare(resourceName, resourceNames[i], StringComparison.OrdinalIgnoreCase) == 0)
    using (StreamReader resourceReader = new StreamReader(asm.GetManifestResourceStream(resourceNames[i])))
    if (resourceReader != null)
    return resourceReader.ReadToEnd();
    return null;
    #endregion

    Hello Steve,
    Most probably you have got an error in the ribbon XML markup. See
    How to: Show Add-in User Interface Errors for more information.
    I have noticed the following xml namespace:
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
    Use the following one instead:
    <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
    Also make sure that specified idMso values exist in Office 2007.
    You can read more about the Fluent UI (aka Ribbon UI) in the following series of articles in MSDN:
    1.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    2.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    3.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • Why SPSS 19 does not works with Mavericks?

    I upgrade my operating system Snow Leopard to Mavericks and SPSS 19 does not work again.
    I tried to install it  again and send me and SPSS show me and error of licence. Can you help me please?

    Why do you want to use a h:commandButton and not an <input type="button"> or a <button>? I don't think that you want to execute a backing bean action. Anyway, in this case you can also add return: false; to the onclick event so that it prevents the button from submitting the form to the server.

  • I want to use my ipod on 2 pcs, how does it work?

    i creatded on my desktop pc with itunes a libary for my shuffle, and now i want to use the shuffle on my laptop, with itunes, but when i connect the shuffle to my lap top,with a itunes as well, it says, if you synch, all data will removed, so what do i have to do, to keep my songs on the shuffle and how can tranfer music from the shuffle on my lap top on further on itunes on lap top?. is this possible, how?
    greetz andy

    "when i connect the shuffle to my lap top,with a itunes as well, it says, if you synch, all data will removed, so what do i have to do, to keep my songs on the shuffle"
    You can choose cancel when you get the message but you can't load music from multiple computers or iTunes libraries onto an iPod Shuffle. Unlike other iPods, the shuffle is designed to be used with a single computer:
    Using iPod with Multiple computers
    iPod Shuffle FAQ
    iPod Shuffle (2nd Generation) FAQ
    "and how can tranfer music from the shuffle on my lap top on further on itunes on lap top?. is this possible, how?"
    Connect your iPod to your computer. When you get the message that it is linked to a different library and asking if you want to link to this one and replace all your songs etc, press "Cancel". Pressing "Erase and Sync" will irretrievably remove all the songs from your iPod. When your iPod appears in iTunes enable it for disk use, this is required for most if not all the utilities listed below so they can access the files: Using your iPod as a storage drive
    The transfer of non iTMS content such as songs imported from CD is designed by default to be one way from iTunes to iPod. However there are a number of third party utilities that you can use to retrieve the music files from your iPod Have a look at the web pages and documentation, this is just a small selection of what's available, they are generally quite straightforward but check out those that specifically state they will work with the shuffle. You can also read reviews of some of them here: Wired News - Rescue Your Stranded Tunes
    TuneJack Windows Only
    iPod2PC Windows Only
    iGadget Windows Only
    iDump Windows Only
    YamiPod Mac and Windows Versions
    Music Rescue Mac & Windows
    iPodCopy Mac and Windows Versions
    Another way to get music from one computer to another is to enable your iPod for disk use and transfer the files using the iPod as a straightforward USB device. Just drag the song files you want onto it from one computer, transport them to the other and add them to the iTunes library.

  • My function /automation tool/ in adobe photoshop 10 (new) does not work. how to fix the problem

    please help me fix it ....

    Hi my operating system is Windows 7. Installing Adobe Photoshop Elements 10
    I  expect that possess features that I need. Specifically, (AUTOMATION
    TOOLS). I wanted to use the AP10. The operation concerns the CREATE  of
    one illustration of several others (such as panorama). Illustrations come from
    a scanner, which I copied from   large parts of the one big  illustrations
    . In other words, in terms of "stich assist."

  • I restored Mavericks using OS X Restore but Finder still does not work

    Mac Mini running Mavericks 10.9.5, 2.5 GHz, 4GB memory, etc
    I can login remotely via ssh, so I can see that my files and applications are all there.
    But the Finder shows an empty interface. No HDs, nothing in the Dock except Calendar,
    which does not open, no files on the Desktop even tho' I know they are there.
    "vi newfile" fails when I try to save using "w" or "w!":
    Error message "out of memory (file system full??)", and only an empty file is created.
    This is false as there is about 350 GB free on the hard drive.
    "ps" typically says:
    Finder: 165% cpu time
    quickllookd 40%
    xpcd 175% for first halfhour then very small, 1%.
    ======
    peter% df
    Filesystem    512-blocks      Used Available Capacity  iused     ifree %iused  Mounted on
    /dev/disk0s2   975093952  96201248 878380704    10% 12089154 109797588   10%   /
    devfs                370       370         0   100%      640         0  100%   /dev
    /dev/disk1s2   976101344 478906144 497195200    50% 59863266  62149400   49%   /Volumes/Molika-Backups
    map -hosts             0         0         0   100%        0         0  100%   /net
    map auto_home          0         0         0   100%        0         0  100%   /home
    ======
    *** How can I get a working Finder, and have a working mail Server ?? ***
    Thanks,
    --Peter R

    iTunes: Missing folder or incorrect permissions may prevent authorization - http://support.apple.com/kb/TS1277 - Shared folder issues with Store authorization.
    iTunes permissions re-set with Terminal after user deleted a directory used by iTunes - http://superuser.com/questions/80573/itunes-unable-to-authorize-and-unable-to-do wnload-media

  • I want to use MF to open documents but it does not show on list of programmes

    I had MF before but had my system restored so lost it, have d/l again but it does not work the same

    Specifically, what type of "documents"?
    Firefox is a web browser, which is made to open web pages - and PDF files, ''[as of recently]''. It won't display word processing documents, unless you have the applicable plugin installed.

  • Macbook 11". Mac OS 10.6.8. Firefox 12. Won't display Alexa toolbar. Tools/Add-ons Alexa toolbar/preferences does not work. tried repairing permissions. no joy.

    Tried google - no posts.

    It looks like that the installation process of one of the applications have caused some trouble. One of them may have changed or added kext files.
    For that, the Window server crashed if you try to open a non Apple application like Firefox
    Start the system in safe mode by holding the shift key on power on.
    If save mode is reached, perform a permissions repair with the Disk Utility.
    Don't bother about upcoming warnings like "could not repair file xy" as that occur cause you use the tool on a running system and opened files can not get touched by the tool.
    After repair is done reboot system to normal and try to open Firefox.
    If the problem persits, please report back here.
    Lupunus

  • Before I upgraded firefox I used google recent search history.Now it does not work to click on.

    Before I recently upgraded Fire Fox I used the recent history on the goggle search engine. It still comes up but when I click on something nothing happens. So now I am having to type my search in everytime. The fire fox tools have the most recent button but they don't come up all the time and when it does it doesn't go back very far!

    See:
    *http://kb.mozillazine.org/Browser_will_not_start_up
    *http://kb.mozillazine.org/Error_loading_websites

  • ITunes download using Firefox on Windows 7 64-bit does not work

    I just got set up on a new Windows 7 machine (64-bit) at work.  I was trying to download the iTunes exe file to my machine and was initially using Firefox as my browser.  After multiple attempts to save the file were unsuccessful, I decided to try a different browser.
    I popped over to Chrome and it downloaded with no problem.  I thought I would share in case anyone else runs into the same issue.

    This has worked for some of us but not all. Go to control panel and uninstall itunes and icloud, restart pc, go to apple site and download itunes and icloud. Good luck.

  • Why budget check does not work with account assigment distrib. by quantity?

    Hi Gurus,
    I have an issue in the budget check for Purchase Order (PO).
    I'm using the FM B31I_ACC_PURCHASE_ORDER_CHECK.
    The case is next:
    1 Item with 21 account assignment type AS and distribution by quantity:
    ASSET_NO QUANTITY
    1           1
    2           1
    3           1
    4           1
    5           1
    6           1
    7           1
    8           1
    9           1
    10          1
    11          1
    12          1
    13          1
    14          1
    15          1
    16          1
    17          1
    18          1
    19          1
    20          1
    21          1
    All account assignment are for the same G/L account, fund, functional area...
    The price for each item is $2,499.14, then total price is $52,481.94 (2,499.14 * 21).
    I debugged the FM B31I_ACC_PURCHASE_ORDER_CHECK and found that in FM BBP_PD_COMMITMENT_FILL_BAPI it's making a rounding with percentage:
    The system assume next:
    Each item is 4.76% of total (result of divide 100% / 21 = 4.76190476...) but the percentage is rounded to 2 decimals.
    Then it makes the conversion by the amount corresponding to each item:
    ($52,481.94 * 4.76) / 100 = $2,498.1403
    Finally the budget is checked by $52,460.95 (2498.1403 * 21).
    But available budget is $52,481.90, the check pass, but really there are 4 cents missing (total price is $52,481.94).
    Can somebody say to me if this is a standard behavior?
    It can be fixed with configuration?
    The problem is for multiple account assignment with distribution by quantity and:
    (100 / quantity) = not integer (or have more than 2 decimals)
    For example: with quantity 20 it works because 100% / 20 = 5.00%, then the budget is check exactly.

    1503317 - System Behavior for Account Distribution between SRM and R/3 system
    When using distribution by Value in a SRM document this value is not correct and a rounding occurs once this document is transferred to ERP system.
    Cause
    It is not possible transfer documents to the back end system with distribution by value, due to a back end restriction.
    Resolution
    The following information is the system behavior in R/3 / ERP:
    in R/3, there is accounting distribution only by quantity or percentage. So when distribution by value is used, a rounding will always take place.
    in R/3, the use of value based distribution in SRM will lead to rounding differences.
    Distribution by quantity is allowed in SRM and MM side. However MM do not accept is distribution by value. This is internally converted to distribution percentage based.
    Keywords
    Distribution by Quantity, Distribution by Percentage, Distribution by Value

  • The Loupe Tool feature of Adobe Pro X does not work

    When working properly the area within the blue box should be magnified.  The magnification of the designated area should appear off to the side.  This is not happening.  The blue box is visible but no magnification.

    Hi,
    When you select the Loupe tool, and click on the pdf file, you see a blue rectangle and a Loupe tool window. Please see the image below:
    As Lori asked, do you see this window?
    ~ Aditya Kalania

Maybe you are looking for

  • Webpage link problem in adobe acrobat 8 pro

    Webpage links work fine locally. When I put these PDFs with webpage links online, they still work fine. After i combine PDFs as a package, webpage links only work fine locally. The links cannot open after i put the PDF package on our website. Pls giv

  • Non Cumulative KF VS Normal KF with exception aggregation

    What is the purpose that is served by "non-cumulative key figures" and is not served by "normal key figures with exception aggregation"? Inflow and Outflow can also be mapped into a single key figure at update rules level. Why un-necessary complicati

  • Quicktime Error 2002

    When I try to compress a file from FCP5 to WMV it fails and I get a Quicktime Error message 2002. Does anyone know what that means and what I am doing wrong? Thanks. Ric

  • Date Format in WDA table

    Hi Experts, I have had an excellent experience of getting expert answers here. I am again facing a small issue - I have a form with a tabl ui element which gets populated with some values from the backend. One of the field in the table is date. So i

  • Settlement Rule Log in WBS

    Hi SAP Gurus I would like to know the log of person who created the settlement rule in WBS.I check WBS master data change report but it does not provide the log of settlement rule maintenance.can any one tell me? Regards