+ Reply to Thread
Results 1 to 6 of 6

How do you create a Shortcut to “Other Bookmarks” in Firefox?

  1. #1
    Registered User
    Join Date
    05-24-2011
    Location
    Cleveland, Ohio
    MS-Off Ver
    Excel 2010
    Posts
    41

    How do you create a Shortcut to “Other Bookmarks” in Firefox?

    I'm using the current version of Firefox, 57.0.2

    I want to make a macro in Excel 2010 that goes to "Other Bookmarks" in Firefox . . . I can't figure out how to do it

    The closest I can get is, I open this "skin" / "chrome", and it default opens to "All Bookmarks" . . . "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -chrome chrome://browser/content/places/places.xul

    But, what I want is, which can only be done from within Firefox . . . I use this Keyboard Shortcut, and it default opens to "Other Bookmarks" . . . CTRL + Shift + B

    What I've tried:

    1.) VBA "Call Send Keys" from Excel 2010 does not "act on" Firefox

    2.) AutoHotKey is not able to communicate with Firefox: open FF, then input: ^+B

    Is there an easy "switch" I can just add to the Shortcut "-chrome"? . . . like, -focus "Other Bookmarks" . . . This command (CTRL+U: View Source in Firefox) doesn't work on the "places.xul" skin, so I can see what it's doing.

    Or, is there a Firefox CLI, that I can use in a BAT file, and have another text file "act on" it, to open to "Other Bookmarks"? Any idea where the commands to do so are provided?

  2. #2
    Forum Expert
    Join Date
    03-20-2015
    Location
    Primarily UK, sometimes NL
    MS-Off Ver
    Work: Office 365 / Home: Office 2010
    Posts
    2,405

    Re: How do you create a Shortcut to “Other Bookmarks” in Firefox?

    Your post does not comply with Rule 8 of our Forum RULES. Do not crosspost your question on multiple forums without including links here to the other threads on other forums.

    Cross-posting is when you post the same question in other forums on the web. The last thing you want to do is waste people's time working on an issue you have already resolved elsewhere. We prefer that you not cross-post at all, but if you do (and it's unlikely to go unnoticed), you MUST provide a link (copy the url from the address bar in your browser) to the cross-post.

    Expect cross-posted questions without a link to be closed and a message will be posted by the moderator explaining why. We are here to help so help us to help you!

    Read this to understand why we ask you to do this, and then please edit your first post to include links to any and all cross-posts in any other forums (not just this site).
    Regards,
    Aardigspook

    I recently started a new job so am a bit busy and may not reply quickly. Sorry - it's not personal - I will reply eventually.
    If your problem is solved, please go to 'Thread Tools' above your first post and 'Mark this Thread as Solved'.
    If you use commas as your decimal separator (1,23 instead of 1.23) then please replace commas with semi-colons in your formulae.
    You don't need to give me rep if I helped, but a thank-you is nice.

  3. #3
    Registered User
    Join Date
    05-24-2011
    Location
    Cleveland, Ohio
    MS-Off Ver
    Excel 2010
    Posts
    41

    Re: How do you create a Shortcut to “Other Bookmarks” in Firefox?

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    In my cross-post #4, I think NirCmd might not work because of this?

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    batch file - Redirecting command input using < - Stack Overflow . . . [Why can't you put the commands in the .BAT file? Why doesn't that work?]
    Parameters that are provided on the command line are completely different than stdin (where your redirected input goes). This is true for both batch scripts
    as well as .exe programs . . . Some programs are designed to accept the same values via command line arguments or stdin. But that is not the norm.
    That is a feature that is provided by the developer of the program . . . https://stackoverflow.com/questions/12511323/redirecting-command-input-using

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    Standard streams - Wikipedia . . . The three input/output (I/O) connections are called standard input (stdin), standard output (stdout) and standard error (stderr) . . .
    https://en.wikipedia.org/wiki/Standard_streams

  4. #4
    Registered User
    Join Date
    05-24-2011
    Location
    Cleveland, Ohio
    MS-Off Ver
    Excel 2010
    Posts
    41

    Re: How do you create a Shortcut to “Other Bookmarks” in Firefox?

    I have cross-posted in these four other pages. I apologize. I'm excited to get an answer to this quickly. I think my best bet is to use NirCmd in post #4 here:

    1.) The most important Firefox command line options - gHacks Tech News . . . https://www.ghacks.net/2017/10/08/the-most-important-firefox-command-line-options/#comment-4318739

    2.) vba - How do you create a Shortcut to "Other Bookmarks" in Firefox? - Stack Overflow . . . https://stackoverflow.com/questions/47892980/how-do-you-create-a-shortcut-to-other-bookmarks-in-firefox

    3.) How do you create a Shortcut to “Other Bookmarks” in Firefox? · Issue #21 · trlkly/dorando-keyconfig . . . https://github.com/trlkly/dorando-keyconfig/issues/21

    4.) Firefox 57 ignores NirCmd - Windows 10 Forums . . . https://www.tenforums.com/software-apps/100794-firefox-57-ignores-nircmd.html#post1242035

    . . . 10 more characters, I don't know what else to write, here's more than 10, but now it's going to say I need to add 10 more characters

  5. #5
    Registered User
    Join Date
    05-24-2011
    Location
    Cleveland, Ohio
    MS-Off Ver
    Excel 2010
    Posts
    41

    Re: How do you create a Shortcut to “Other Bookmarks” in Firefox?

    I see I also cross-posted here. After I clicked "submit" on this page, it didn't show up, so I thought it didn't get posted, but later in the day, I got an answer:

    How do you create a Shortcut to “Other Bookmarks” in Firefox? . . . https://www.mrexcel.com/forum/excel-...ml#post4973195

  6. #6
    Registered User
    Join Date
    05-24-2011
    Location
    Cleveland, Ohio
    MS-Off Ver
    Excel 2010
    Posts
    41

    Re: How do you create a Shortcut to “Other Bookmarks” in Firefox?

    Here's what I figured out. There's too much to put here, so, I've put it on a 4-page PDF on my Google Docs:

    4 Ways to get to Firefox "Other Bookmarks", from slowest to fastest
    The following are 4 macros that I have in Excel 2010.
    The first two just use VBA.
    The second two use NirCmd.

    https://drive.google.com/open?id=1ec...JiL1k5SNK4HpCt

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Smart way to create a standard Word Report with Excel data (Bookmarks?)
    By Nbisgaard in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-13-2016, 08:36 AM
  2. [SOLVED] Function that will create a shortcut?
    By aphasia in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-04-2014, 07:06 PM
  3. Macro to convert my Firefox 27.0.1 bookmarks to Excel 2010
    By slack7639 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-20-2014, 03:28 PM
  4. Create hyperlink to Firefox search keyword?
    By skateboarder378 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-16-2012, 03:17 PM
  5. Can't properly create hyperlinks with firefox
    By cozzielex in forum Excel General
    Replies: 0
    Last Post: 02-03-2010, 11:13 PM
  6. how to create shortcut
    By bhavtoshsharma in forum Excel General
    Replies: 2
    Last Post: 06-18-2008, 09:33 AM
  7. create a Desktop shortcut
    By akhtar151 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-03-2007, 12:19 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1