Can't 'add to favourites' in Adobe Dialog

Hi, I'm having an issue with CS3 functionality and Windows 7. After getting Win7 and installing my CS3 pack on it, I noticed that the Common dialog box in Open and Save As menus (etc.) was changed and so was the list of favourites in the Adobe Dialog which I prefer to use over the OS version.
I've looked up the options for how to change the listings in that menu in the Adobe Dialog to folders more relevant to my needs but I don't seem to be able to execute the changes. If I go into Bridge and drag the folders into the favourites list there, they appear correctly (as well as if I right click and 'remove from favorites'), but when I then go to Photoshop or any other CS3 design program, the favourites list in the Dialog remains as-was. I cannot drag directly from the Bridge contents panel into the Photoshop favourites list; although the arrow/plus-sign-in-a-box icon does appear, dropping doesn't actually add the folder. I also cannot remove from the Photoshop list directly - the right click 'remove from favourites' option is greyed out.
I suspect there must be some kind of lock on the favourites panel in each program, somehow preventing Bridge or anything else from enabling changes, but I don't see one. Version cue is enabled for all of the programs, and the changes I made to the Bridge list remain after closing.
Any ideas on what the issue could be?

As John said, those dialogs have been removed. Apaprently there were notable differences on different platforms (different versions of Windows as well as Mac) and dragging along the code became too much trouble. It's regrettable, but can't be helped.
Mylenium

Similar Messages

  • How can I add hebrew language to Adobe Creative Suite 5.5

    How can I add hebrew language to Adobe Creative Suite 5.5 ?

    Language swaps are only supported for current release versions (CS6). 
    http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l

  • Can you add to favourites on Safari?

    On Safari can you add any web page to the favourites? Please help!

    Tap on Bookmark and save to Favorite (tap to enlarge image)

  • How can I add page numbers using Adobe Reader?

    I am trying to add page numbers to my document only using Adobe Reader.  Is that possible?  Or do I need to use Adobe Acrobat?

    The free Reader can do very little more than reading (opening) PDF files. I'd use Acrobat.

  • Can't add java script to Adobe 7.0 PDF document

    Hi, ran into a small problem using Adobe Pro 7.0. Created a interactive form in Adobe Designer 7.0. Want to add Java script to run when a user selects certain fields on the forms. However, when I try and use the advanced editing tools to gain access to the Java script properties for that object, the toolbar is greyed out. No document security has been configured. Can this be done? Should it be done in Adobe Prof or in Designer? Can't figure out how to add the java script to the forms.
    Any help would be appreciated.
    Thanks Michael

    Once a form is started in LiveCycle Designer, it has to be edited in LiveCycle Designer. There are very few Acrboat features that can be used.

  • How can we add a menu in Adobe Illustrator CS3?

    Hi
    I want to create a new menu in Adobe Illustrator menu structure, and I want to call another application through that menu. After hours of searching in web I came to know that  I have to work with Plugin programming. So I downloaded the adobe illustrator SDK CS3 and started the programming using Visual Studio .NET 2005 with the sample codes provided with the SDK. And I am still  not able to find out the any solution for adding a new menu. The problem is the the documentation provided with the sample code is too short, I am not able to understand the control flow , the functions used in the sample code.
    please help me!
    Sreejesh K V

    Hi,
    Thank you very much for your help
    I am not clear about the following code.
    extern AIErr addMenu( SPInterfaceMessage *message ) {
         AIErr error = kNoErr;
         // Add a menu item to the About SDK Plug-ins menu group.
         SDKAboutPluginsHelper aboutPluginsHelper;
         aboutPluginsHelper.AddAboutPluginsMenuItem(message,
                        kSDKDefAboutSDKCompanyPluginsGroupName,
                        ai::UnicodeString(kSDKDefAboutSDKCompanyPluginsGroupNameString),
                        "Adobe Plugin...",
                        &g->aboutPluginMenu);
         // Add other menus.
         AIMenuItemHandle          throwAwayAIMenu;
         AIPlatformAddMenuItemData throwAwayMenuData;
         AIMenuGroup                    throwAwayMenuGroup;
         char strBuffer[255];
         #define kMenuPlayMenuGroup     "Menu Play Group"
         #define kSDKMenuGroup     "SDK Group"
         // First we create a normal plug-in menu to use a hierarchical root                                   
         throwAwayMenuData.groupName = "Window Utilities";
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 1, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );
         error = sMenu->AddMenuItem( message->d.self, kSDKMenuGroup, &throwAwayMenuData,
                                            0, &throwAwayAIMenu );
         if ( error )
              goto error;
         // Now we declare the menu item a menu group
         sMenu->AddMenuGroupAsSubMenu( kSDKMenuGroup, 0, throwAwayAIMenu, &throwAwayMenuGroup );
         // Now we can add menu items to it.
         throwAwayMenuData.groupName = kSDKMenuGroup;
         *strBuffer = '\0';
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 8, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );     
         error = sMenu->AddMenuItem( message->d.self, "Auto Update 1", &throwAwayMenuData, 0,
                                            &throwAwayAIMenu );
         if ( error )
              goto error;          
         // enabled for paths and no masks in the selection
         error = sMenu->UpdateMenuItemAutomatically( throwAwayAIMenu, kAutoEnableMenuItemAction,
                        kIfPath | kIfGuide, kIfMask,
                        0, 0,
                        0, 0 );      // don't care about other update options
         if ( error )
              goto error;     
         sMenu->AddMenuGroupAsSubMenu( kMenuPlayMenuGroup, 0, throwAwayAIMenu, &throwAwayMenuGroup );
         throwAwayMenuData.groupName = kMenuPlayMenuGroup;
         *strBuffer = '\0';
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 2, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );     
         error = sMenu->AddMenuItem( message->d.self, "Menu Play", &throwAwayMenuData, 0,
                                            &throwAwayAIMenu );
         if ( error )
              goto error;          
         error = sMenu->UpdateMenuItemAutomatically( throwAwayAIMenu, kAutoEnableMenuItemAction,
                        0, 0,      // don't care about what's in artwork
                        kIfGroup, // is selected and
                        kIfTextPath,      // are not selected
                        0, 0 );      // don't care about other update options
         if ( error )
              goto error;     
         Can you give me the sample code to call the functions within the SDK API.
    For example adding an url in the plugin menu, calling another application ( .exe).
    I just tried to do myself but it ended in syntax error because I am not familiar
    With the VC++ programming.
    Thanks
    Sreejesh k v

  • How can I add my software in Adobe's Third-party plug-ins for Adobe Premiere Pro ?

    Hi,
    Our company have a software called Moyea Importer for Adobe Premiere.
    Moyea Importer for Adobe Premiere is a recommended FLV, MPG, RMVB, HD  video import plugin for Adobe Premiere Pro. This plug-in enables users  to import FLV videos with various codec like AVC/H.264, AAC, Screen  Video, Nellymoser, MP3, PCM, and Sorenson H.263. Besides FLV video, the  plug-in allows AVCHD import and HD video import in MTS, M2TS, TP, TS,  and MKV formats.
    Moyea Importer for Adobe Premiere do not convert your video so it keeps  video quality for you. The plug-in automatically detects the Adobe Premiere versions on your  machine and you can choose the versions to install the plug-in. It  currently supports Adobe Premiere Pro 1.0/1.5/2.0/CS3/CS4 and Elements  3.0/4.0/7.0/8.0.
    I notice in Third-party plug-ins for Adobe Premiere Pro this part, Adobe didn't get any such plug-ins. They only have two file support plug-ins and Moyea Importer can fill the blank.
    Now I want to submit this software on Adobe's site but I don't know where to submit or who I should to contact. Any suggestions? I really need your help and I am sure it is really good software.

    Any suggestion? Admin of this board? Who can help me

  • Can i add a download as adobe article

    i want to add this functionality to my site [spam link removed] for articles that readers want to download please suggest any plugin or how to do it

    Just upload your PDF and add a link to it on your website.

  • How can i add a transparent image in adobe premiere 6.5

    Hi all ,
    How can i add a image in adobe premiere 6.5.  I tried to put the image tga and when i import the image to adobe premiere it has white background and it is not transparent ??
    please if any one can help me
    best regards

    I do not have Premiere 6.5 any more on my pc so its my heart and it has been a while.
    Rightclick on the tga and go to video options? transparancy settings. Now you select the track? matte key from the dropdown keymenu and i think the pagepeel has to be selected.

  • Can I add  a second account to Adobe Digital Editions

    I have two adobe reader accounts. One for my family one for personnel use. The computer has my personnel account on it. I want to add the family account to add books to my wifes nook. Can not seem to find out how to do that

    Hi manobird,
    If you used one ID to install ADE, you cannot download an ebook from a site into ADE if you used a different ID.  That's the way the Digital
    Millenium Copyright Act of 2000 was implemented to prevent unauthorized copying of ematerials.  ADE tells you that in its HELP section.  You can't add a second ID to ADE either, for the same reason.
    What you CAN do is to change users, and authorize ADE with the same ID you used when you downloaded the ebook.  You do this by bringing ADE up, then using the CNTLSHIFTD key combination, you will deauthorize ADE.  Close ADE and reopen it, and ADE should ask you to authorize it.  At this point, you can enter the second ID, and ADE will take off from there.  BUT, keep in mind that any other ebooks you downloaded into ADE with the first ID will not be accessible until you go through the same process again and revert to the first ID.
    Hope this helps!

  • When I try to add a new event to iCal a dialog says "you can't add or change events in the Birthday Calendar". How do I cancel this?

    When I try to add a New Event to iCal a dialog box keeps saying "you can't add or change events in the Birthday Calendar". iCal is, however, receiving up-dates from my other devoces via iCloud. Can anyone help unblock this for me please?

    You can not add events to the birthday's calendar. To add birthday's to the birthday calendar you need to add the birthday to a contact in the Contacts app.
    You can set your default calendar here:
    iCal > Preferences > General  > Default Calendar and chose the calendar you want to default to.

  • When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    Hi,
    I would suggest you to uninstall Adobe Reader using the cleaner tool and then re-install the latest version.
    Adobe Cleaner Tool:- Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs.
    Latest version of Adobe Reader:- http://get.adobe.com/reader/
    If you still experience the same issue, please share the following information:-
    - Screenshot of Adobe Reader showing printer options
    - Screenshot of Microsoft Word showing printer options
    - Screenshot of control panel- Control Panel\All Control Panel Items\Devices and Printers
    Regards,
    Nakul 

  • Can i add a second email address to adobe digital edition account

    can i add a second email address to adobe digital editions?

    If you mean you want to add a second email address to the Mac Mail app:
    Open Mail > Preferences > Accounts > Click the plus sign and enter the information
    If you mean you want to add an alias to your iCloud mail account:
    Go to https://www.icloud.com > sign in > Mail > Click the Gear on top right > Preferences > Accounts > Add an Alias (on bottom left)

  • How can I add bookmarks to documents in Adobe Acrobat

    how can I add book marks to a document in Adobe Acrobat

    Open the Bookmarks panel on the left and click the New Bookmark icon in it, or simply press Ctrl+B.

  • Can you add Hyperlinks in Adobe LiveCycle Designer

    Hi,
    Does anyone know if you are able to add hyperlinks to the form which would allow me to jump to another separate pdf file?
    Thanks in advance,
    Trev C.

    Hi,
    Paul has some solutions for this.
    The following tread has two solutions:
    (1) set up invisible objects (like textfields) throughout the form and then script setFocus to those fields.
    (2) If using LC 8.1 you can add hyperlinks.
    http://forums.adobe.com/message/1915856#1915856
    There are some good posts to the forum; try searching specifically the LC Designer ES forum for "hyperlink".
    Sorry, just reread your question. In relation to opening other PDF files from within a form, you are going to come up against a security error. This will require you to have a JavaScript (.js file) in the JavaScript folder within the Acrobat programme folder. This .js file will also have to be deployed to all users' computers.
    The last post in this thread has a solution: http://forums.adobe.com/message/1359932#1359932
    I am not sure if this would suit your requirements, but another solution is to create a Portfolio with the required PDF files inside the portfolio. Then it is easy to create a link between the files using the "Link Tool".
    Good luck,
    Niall

Maybe you are looking for

  • How to populate table in RFC

    How do I populate an abstractlist that is an input to an RFC?  I read the post by Bertram Ganz, but my generated classes look different.  I imported the RFC and the system generated the following: -zbapi_appraisal_create   -zbapi_appraisal_create_inp

  • First line not coming when FCC is used

    Dear All, I am using FCC on sender side and the input file is in UTF-8 format.... i am using FCC with key fields on the sender file adapter... now as the UTF-8 file was having control characters at start the keyfield was not matching the start of fil

  • My iPod 5th Generation charger just stopped working??

    Both my mother and I have iPod 5's and we've only had them maybe 6 months. I've never had any problems with the charger I have which is the white regular one that came with the iPod when I bought it. Today, when I got home from school, I tried to cha

  • Audio input disabled after Lion install (Pro Tools, Edirol)

    Any ideas? Double-checked all input settings. Edirol (analog to digital device) shows up as an option, but no sound can be recorded. I see the same issue in threads involving Pro Tools. Using the latest version of Bias Peak. Same issue using Garage B

  • Can't switch screensaver

    When I open System Preference and then go to Desktop/Screensaver, when i select the screensaver button, it pauses and then the "application quit unexpectedly" window pops up. I reopen it, and it happens again, then I do it a third time and opens but