Bookmarking in Firefox

Edwin

Well-Known Member
VIP Member
Guru
Messages
1,759
Top of the mornin to ya all:
This isn't really Windows related, but anyway...
Does anyone know how to configure Firefox to 'land' bookmarks to the toolbar by default instead of having to click on the Folder drop down menu to choose?

View attachment 37166
 

My Computers

System One System Two

  • OS
    Windows 7 Home Premium
    Computer type
    PC/Desktop
    System Manufacturer/Model
    HP Pavillion
  • PC2
    Tablet - Windows 10 Home

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
Does anyone know how to configure Firefox to 'land' bookmarks to the toolbar by default instead of having to click on the Folder drop down menu to choose?


I usually just drag that little globe icon next to the address to where I want it. It doesn't get any easier then that.
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise
I think he wants all the bookmarks, open on the Firefox Home page, not elsewhere. Not sure where he would go with that, but maybe the bookmarks Bar?
 

My Computer

System One

  • OS
    Windows 8.1
    Computer type
    PC/Desktop
    Other Info
    Use several different computers during a day, so specs are irrelevant.
I usually just drag that little globe icon next to the address to where I want it. It doesn't get any easier then that.

I knew that! :eek: Thanks for the reminder. :)
 

My Computers

System One System Two

  • OS
    Windows 7 Home Premium
    Computer type
    PC/Desktop
    System Manufacturer/Model
    HP Pavillion
  • PC2
    Tablet - Windows 10 Home
I think he wants all the bookmarks, open on the Firefox Home page, not elsewhere. Not sure where he would go with that, but maybe the bookmarks Bar?

What I was aiming at is this:
When you navigate to a page and want to bookmark it, one click of the bookmark 'star' saves it to the sidebar immediately, two clicks will show the flyout where the 'Name:' will be highlighted, (backspace quickly removes text), however, under 'Folder:' drop down menu you have the options: 'Unsorted', 'Bookmarks Menu', 'Bookmarks Toolbar' and 'Choose'. 'Unsorted Bookmarks' is revealed at the top of the list by default, apparently. I was hoping to make 'Bookmarks Toolbar' the default on the drop down list.
I wanted this to be the actions:
Double click 'star' (to reveal the flyout)►backspace (to eliminate text)►click 'Done' (bookmark on toolbar immediately, no text)
 

My Computers

System One System Two

  • OS
    Windows 7 Home Premium
    Computer type
    PC/Desktop
    System Manufacturer/Model
    HP Pavillion
  • PC2
    Tablet - Windows 10 Home
Check out AutoHotkey_L free scripting language:
AutoHotkey

To make a program that sits in the tray and waits for you to press a hotkey is pretty easy. It has commands to simulate mouse clicks and send keys. You can tell which window to act on using the window class. I believe FF 4+ is MozillaWindowClass.

If you get stuck there's forums to get help. Basically if FF is the active window you would hit the hotkey you made. To make a control-winkey-d hotkey, that only works when FF 4+ is the active window is as simple as:
Code:
#IfWinActive ahk_class MozillaWindowClass
^#d::
  ; Send some keys or click mouse etc..
return
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
Do you mean like mine, for example??

Bookmarks.png
 

My Computer

System One

  • OS
    Windows 8.1
    Computer type
    PC/Desktop
    Other Info
    Use several different computers during a day, so specs are irrelevant.
Back
Top