Favorites menu extension

Anyone already used the Macromedia extension "Favorites menu
for dreamweaver mx 2004"? If there was only one extension to choose
from i would choose this one - so helpful when you have a big site
with frequent page updates. Unfortunately DW8 doesn't seem to have
the feature built-in and there is no DW8-compatible extension too
Any ideas?

Hi,
I was using myself this extension a lot, so I decided to make
my own.
Almost the same, except that, while I was at it, I added a
few features.
You can find it here :
http://www.flashxpress.net/images/r_dream/anglais/favorites/index.html
(Windows only)
If you try it, let me know how it works for you.
Thanks.
"Liquor" <[email protected]> a écrit
dans le message de news:
eqq3hb$51$[email protected]..
> Anyone already used the Macromedia extension "Favorites
menu for dreamweaver
> mx
> 2004"? If there was only one extension to choose from i
would choose this
> one -
> so helpful when you have a big site with frequent page
updates. Unfortunately
> DW8 doesn't seem to have the feature built-in and there
is no DW8-compatible
> extension too :(
> Any ideas?
>

Similar Messages

  • I no longer have a tool bar, or Google tool bar or an address bar. The only thing I have up thee is my favorites menu bar. I have no way of going to a web site unless it is in my favorites menu bar.

    The only thing at the top of the page is my favorites menu tool bar. I have no Google tool bar I have no address tool bar. There isn't a place to type in a web address. The only way I got here was opening Internet Explorer. No Tools or help menu. I even did a system restore to 5 days ago. Didn't help. Please help. I don't want to switch to IE.
    == This happened ==
    Every time Firefox opened
    == I right clicked in the tool bar area and it gives me the choice of removing different tool bars or adding them. I removed one just to see which one it was. OOPS not a good idea. When I right click now the same menu doesn't come up.

    Hit the '''Alt''' key to show the Menu bar, then open View > Toolbars and select Menu bar & Navigation bar, so so they have a check-mark.

  • I just stepped over from explorer to firefox and al my saved favorites from explorer are vanished. How can I get back these favorites? Besides that I can´t find a favorite menu in my firefoxbrowser wich I like to work with.

    I just stepped over from explorer to firefox and al my saved favorites from explorer are vanished. How can I get back these favorites? Besides that I can´t find a favorite menu in my firefoxbrowser wich I like to work with

    In the device sync pages select Photos on the top at the right.
    Un tick Sync Photos
    Apply

  • Is it possible to add UNC paths to the favorites menu with a batch script?

    Hi all,
    at present the office I work in uses mapped drives, this works well for people in our office but one people talk with the other offices things go south as they have no idea what a t drives is. So I would like to move my users away from the mapped drive and
    add the folder locations to the favorites menu.
    Short of making the shortcuts and asking each person to copy them in to the folder location there must be a way to write a script to do this? I have looked at using mklink but that failed. 
    This is the code I used 
    mklink /d %userprofile%\Favorites\tech \\brisfp01\Tech 
    Any other ideas? 
    Thanks

    it is called an "Internet Shortcut"
    $Shell = New-Object -ComObject WScript.Shell
    $shortcut = $Shell.CreateShortcut($FullPath)
    $shortcut.TargetPath = $Url
    $shortcut.Save()
    Look in Gallery for more examples.
    ¯\_(ツ)_/¯

  • Favorites menu was on my homepage and is now gone. How do I get it back

    On my homepage, Firefox. I had a favorites menu on the left hand side. Now it is gone. I can get my bookmarks from toolbar but really liked it on the screen for easier access. Hw do I get it back?

    Version 1.5.0.12 is an extremely old version of Firefox, so these instructions may not be correct. Go to '''View > Sidebar''' and select '''Bookmarks'''. That should open the Bookmarks sidebar.
    Is there any reason why you haven't updated to the latest version of Firefox? 1.5 is not being updated with security patches, and updates are free. See [[Upgrading from Firefox 1]]

  • HT2476 FAVORITES menu ... How do I remove/delete from the menu?

    I accidentally dragged a folder into my FAVORITES menu ... How do I remove/delete from the menu?

    Do you mean in Finder?
    Right-click (CTRL-click) > Remove from Sidebar
    -or-
    Hold down COMMAND and drag it out of the window

  • Multi Modul - Menu Extension

    I'm working on a multi modul scout application as described in https://www.eclipse.org/forums/index.php/t/243162/
    Actually I'm facing a problem with Menu Extensions.
    Lets assume we have a "Masterdata modul" which treats for example customers. Within this masterdata module I have a customer table page and on this customer table page a menu which enables some actions to work on the selected customer.
    Now I have an additional "order module" which has a dependency to the "Masterdata modul". Within this "order module" I like to add an action "Create new order" to the menu on the above described customer tale page. In plain Eclipse, this would be done with menu extensions. How can I do this with Scout?
    TIA
    Rene

    Sorry for the delay. It took me a long time to figure out how it works.
    Luna Version
    Your PersonsTablePage (in the core) needs to be from type: AbstractExtensiblePageWithTable.
    Beside this, nothing else is required.
    The Menu "Create New Order" is defined in the Extension. It is from type AbstractMenu (exactly as you would do directly in the Table).
    The binding is done in the plugin.xml file: You can define an extension to the extension point "org.eclipse.scout.rt.extension.client.menus". Define an menuContribution (the menu) for the PersonsTablePage.
    If you open plugin.xml, the XML looks like this:
    <extension
    point="org.eclipse.scout.rt.extension.client.menus">
    <menuContribution
    active="true"
    class="myext.client.CreateNewOrderMenu">
    <page
    class="mycore.client.pages.PersonsTablePage">
    </page>
    </menuContribution>
    </extension>
    You can register:
    * menuContribution
    * menuModification
    * menuRemoval
    Few remarks:
    * We consider the community support for the Luna release over (SR2 will be published by the end of the week).
    * We had several troubles with this pattern. This is why we developed something new for mars. If you are starting a project now, you might consider using the Mars Version (for example 4.2 is a non-official intermediary release, preparing the mars version coming up next June. Mars Version will be 5.0).
    * We do not know yet how long we want to support this pattern. On the long term, we will only invest in the extensibility pattern introduced with mars.
    Mars Version
    You have probably seen the wiki page: Scout Extensibility concept
    The extension looks like this:
    public class PersonsTableExtension extends AbstractTableExtension<PersonsTablePage.Table> {
    public PersonsTableExtension(Table owner) {
    super(owner);
    @Order(2000.0)
    public class CreateNewOrderMenu extends AbstractMenu {
    @Override
    protected String getConfiguredText() {
    return TEXTS.get("CreateNewOrder");
    @Override
    protected void execAction() throws ProcessingException {
    MessageBox.showOkMessage("Simulation", "Info on the person", getOwner().getFirstNameColumn().getSelectedValue() + " " + getOwner().getLastNameColumn().getSelectedValue());
    For the moment, we have an equinox startup problem. We need to ensure that the extension bundle is loaded soon enough. The current workaround is to add the extension bundle "myext.client" in the osgi.bundles parameter (in config.ini):
    osgi.bundles=org.eclipse.equinox.common@2\:start,org.eclipse.update.configurator@3\:start,org.eclipse.core.runtime@start,myext.client@4\:start
    I will discuss this with my coworker and come up with a better idea.
    .

  • Rename 'Organize Entries' in 'Portal Favorites' menu

    I like to rename standard text  'Organize Entries' in Portal Favorites menu to something else. Does anyone have any suggestions to this problem?
    Thanks,
    Thomas

    Hi Morten,
    Please refer to the following link:
    Deletion of favorites from enterprise portal of BW reports
    In that read the reply given by veronica haze.
    Hope this will help you.
    Regards,
    Jithin

  • Menu Extension Recommendation for OS X?

    Can anyone recommend a good menu extension for Dreamweaver MX
    2004 in OSX with 2 level submenu cababilities?

    There are USB adapters that can connect to the Imagewriter as that link tells you. I suggest reading that link more thoroughly.
    You might find a Parallel dot matrix printer that works with Keyspan's USB Parallel printer adapter

  • Favorites menu not available in firebox

    ''locking as a duplicate of this - https://support.mozilla.com/en-US/questions/872499''
    favorites menu not available in firebox

    Firefox use the term Bookmarks, instead of favourites/favorites.
    Firefox also has several advanced features see also
    * [[how do i use bookmarks?]]
    * [[what are tab groups?]]
    The blue text above are clickable links, the articles themselves also have other links within them.

  • How do I remove dead shortcuts from the finder favorites menu?

    I just bought a new Macbook Pro with Lion OS to replace my old macbook running snow leopard.  To transfer my old data, I use the migration assistant and time machine backup.  For the most part everything went smoothly.  However, now when I open finder, there is a dead shortcut on the favorites menu.  On my old laptop, it linked to a folder on my bootcamp partition, but I don't have a partion on my new computer.  I am unable to move or delete the shortcut from the list.  It's cluttering up my finder sidebar and I would love to get rid of it. 
    Any suggestions?

    yamkirschenbaum wrote:
    Thanks, but I've tried that.  It works for removing other shortcuts, but not for the shortcut to the bootcamp partition.
    It worked after all ?

  • PFCG Roles in Favorite menu

    Hi,
    I just learned how to create PFCG roles in R/3.
    Is it possible to place these roles in the favorite menu?
    I hope someone can help me with this one
    tnx
    hans

    Hi,
    " Is it possible to import transactions into a role from somebody's sap Favorites menu"
    I did not understand.
    There are two things
    1. Is it Favourite menu of user transaction(From user/SAP transaction menu)
    2. favourite menu section in PFCG, these are favourite roles but not transactions.
    In second case you can copy role and make new role. But if you are asking for options of making a role based on the transaction  in favourite list of user, there is no such option given by SAP, but you have to do manually if you have access to favourite section of user(I think this is somthing violating security policy).

  • Error while executing from the Favorites Menu

    Hi Experts,
    I am getting error while Excuting the Favorite from SAP Menu Screen ( SAP Easy Access ) ..
    After clicking , one Internet Explorer screen is appearing .. And after few seconds, I am getting the error.
    The detail is as follows :
    The system is trying to execute the program/display the file
    http://dbcibwp:8100/sap/bw/BEx?cmd=ldoc&infocube=ZMTOWN&query=ZMTOWNS_SALE_AC_PL&sap-language=EN
    ATTENTION : The object that will be executed could not be determined !Do you want to grant access to this file ?
    There was a problem sending the command to the program ..
    Please suggest
    Thanks,
    Sanjana

    Hi Durgesh,
    If I am running the same query through RRMX . There is no problem. In transaction RSRT, Its running fine.  
    Can you tell me , how to check the Query in "DBCIBWP"  where it is located exactly ??
    Thanks,
    Sanjana

  • Finding the setup files for the help utility favorites menu and MAX configuration

    I have LabVIEW 2011 installed on my laptop, or it might be more accurate to say that I did have it installed until my computer crashed a few days ago and I am now trying to restore my information back into a new computer with a complete new install!  So, one of the things that I would like to do is to find the file that contains the "favorites" information in the help menu so that I can copy the file into the correct place so that the newly installed LabVIEW will populate the help file utility with the previous listing of the favorites in the help utility. Does anyone know where this file is installed and what it's name is? Also, it would seem that there is another file which I would sure know about for the configuration af the devices and tasks that were setup in MAX. So, does anyone know where this file is located so that I can have MAX configured the same as I originally had configured before my computer crashed?

    Hi Cuthbert,
    To be able to recover your MAX configuration you should try to follow the process of removing MAX Database Corruption.
    You can look for the path where the folders are in the computer that crashed and then copy those to the new computer.
    Regards,
    steve.bm
    AE | NI

  • How do I link my Favorites in 'My Computer' to the Favorites Menu in Mozilla Firefox?

    I do not have a back-up to restore them from, but they are all in 'My Computer'.

    There's a great addon that takes care of that for you: http://www.iosart.com/firefox/plainoldfavorites/
    I've been using "Plain Old Favorites" through about the last 6 versions of Firefox ... since something like 3.6.12. It works great. You can access your computer favorites directly from the Firefox strip menu item, 'Favorites'.
    Barb
    ~~I'm using Firefox 4.0.1 on top of Windows XP Professional.

Maybe you are looking for

  • Can only print one page at a time

    Using Adobe Reader 9.4.2 Operating system Arch Linux Printer Brother DCP-115C When trying to print more than one page at a time in a PDF document, Adobe Reader appears to create the print the print job appears in my print queue the printer says 'Rece

  • How to get the column name and table name from xml file

    I have one XML file, I generated xsd file from that xml file but the problem is i dont know table name and column name. So my question is how can I retrieve the data from that xml file?

  • Problem with WRT160NV2, both wired and wireless...

    I bought a WRT160NV2 Refurbed from CompUSA about 2 weeks ago, and since then I've been having some problems. It's not every site, but there are a few sites (three or four I've noticed)  that load very, very, very slowly. It happens using wired or wir

  • Changing the printer cartridges for a HP laserjet 2840

    Having a problem with the wheel not going to the next cartridge...there is a message on the display saying "incorrect yellow" but the yellow cartridge has been taken out and it will not go to the next slot. I am out of warranty and need my printer ca

  • Documentation for Idoc view

    Hi All , i have created a idoc view from basic type DELVRY03 . But i  am not able to get the Documentation for this . I have tried we63 but it does not provide documentation for Idoc views . Regards Saurabh