Windows menu entry

I installed LR 3.0 and then 3.2. It was interesting that the second installation also uninstalled the first.....a nice touch. But there is no menu entry made in the Windows Start Menu. Is that normal behavior? It is no big deal. I just created one, but often, the menus get populated with other items at the same time. Does LR not bother with any of that?
Also, I see the entry in the list for the Uninstaller under the control panel, but I use an even better uninstaller called Revo Uninstaller and it does not show an entry for this program. I wonder why???? This is the only program I have that exhibits this behavior.

Windows 7: I have an Adobe Photoshop Lightroom 3.2 link, but not in any folder -- just at the top of the All Programs view.  That's all you need.
Third-party deinstallers are probably scraping the registry in order to find installed components.  I wouldn't worry about it, though it may mean that deinstalling 3.2 cleanly might be a challenge (or it might not.) The Windows installations framework can get confused sometimes, and the usual remedies are sometimes necessary to sort out install/deinstall issues.
You can always re-run the installer if you like.

Similar Messages

  • Window Menu Entry and Keyboard Shortcuts

    I have defined a menu entry that appears in two places in the menu hierarchy
    File->My PlugIn->Info
    and
    Window->My PlugIn->Info
    using a PanelList definition of
    // Asset retrieval panel
    resource PanelList (kMMAssetRetPanelResourceID)
    kMyPaletteID,
    initiallyVisible,
    kMyPanelResourceID,
    kMyPluginID,
    kSDKDefDefaultPaletteZOrder,
    kMyPanelActionID,
    kMyPluginName kSDKDefDelimitMenuPath "Info",
    kMySubMenuPath,
    kMyInfoItemPosition,
    where kMySubMenuPath is "Main" kSDKDefDelimitMenuPath "&File" kSDKDefDelimitMenuPath "MyPlugin".
    Everything works beautifully except that the keyboard shortcut editor uses Window Menu->Info to attach the shortcut to whereas I would like to use our own Action Area where all the other menu entries in the File->MyPlugin menu are. This is similar to the Type->Character and Window->Type & Tables->Character menu entries so I believe it is possible.
    An alternative would be to use Window Menu->My PlugIn: Info in the shortcut editor.
    Does anyone know how to configure either of these?
    Ken, can you show me how the Type->Character and Window->Type & Tables->Character panel is defined?

    It seems like Ken has moved on to pastures new judging by when his last post was (I have been away from InDesign development for quite a while).
    Does anyone else know how to achieve this?
    Is there anyone from Adobe or elsewhere that knows how the Type->Character and Window->Type & Tables->Character panel menus entries are defined?
    Cheers,
    Ian

  • Multiple entries in Finder "Window" menu

    A relative is running 10.4 on an iMac. The "Window" menu in the Finder has multiple entries with the name of her computer (e.g., "Mary's Computer"). There are no windows visible, and clicking on any of the entries or on "Bring All to front" does nothing. She thinks that a new entry appears in the menu every time she starts up.
    I'm trying to help her sort this out. Any suggestions?
    Thanks.

    Drag these two files to the Desktop for safe keeping, then reboot...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.dock.plist
    The other one involves invisible files lik .DS_Store, do you want instructions for ridding them?

  • Mac OS Window Menu

    I'm seeing very erratic behaviour from the Mac OS default
    Window nativemenu.
    To keep the best user experience, I have an AIR app start
    with a hidden window, which immediately opens another application
    window. This is the main user interface. The hidden window creates
    the application menus, and adds an entry to the Window menu. Whilst
    the main user interface window is open the entry on the Window menu
    works perfectly (ie. it triggers events), but once it is closed,
    the entry no longer triggers events - in fact no item on the Window
    menu does. This entry on the Window menu is intended to open the
    main user interface window if closed, or reactivate it if not in
    focus - good UI practice I imagine.
    If I add the menu entry to the File menu however (not a
    default menu in my solution) the events correctly occur, so I guess
    the work around is to create my own Window menu, which I'll try - I
    wanted to notify Adobe of this issue.

    Please see here for a code sample:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=75&catid=697&threadid =1384164&enterthread=y
    It's not quite the same issue, but the effects are the same.
    Nothing from the eventlistener, or perhaps the eventlistener isn't
    set up - is there any way to programmatically check if there is an
    eventlistener on an element, in this case a menu?
    Thanks,
    Henry

  • WAD - adding menu entries with JavaScript - help please!

    Hiya,
    I am completely new to JavaScript and I need some help with adding menu entries into my WAD template. Can anyone please help?
    I want to add functionality into my WAD template to enable users adding results rows on a selected characteristic, at a single mouse click. Currently they need to go to the menu -> properties -> characteristic -> display results -> always -> ok. That's five clicks of a mouse (provided they know were to go).
    I want to add this option to the basic menu so that they can click once only.
    What I have managed to figure out so far using SAP help is the following. I have added a Script Item into my WAD Layout and added the following line of code in the Script Editing window:
    sapbi_addToMenu("Add totals", "alternate_context_menu", "X","CHARACTERISTIC", "", "bottom", "", "")
    It worked fine in that it added an extra item "Add totals" to my menu when I righclick on a characteristic. So far so good. However, I have no idea what function I should be using here, or how to code it. Surely WAD uses some function to perform this action, something that I could reuse? Is there a library somewhere of all the function used in WAD?
    Can anyone please help with the code?
    Many thanks,
    Agata

    Hiya again,
    I have managed to partially solve this problem by using the following code. However it requires me to define on which characteristic the function is performed. In this case I have managed to get it working on 0PROJECT, but I want it to be ANY characteristic which has been right clicked?
    Any ideas how I can pass the characteristic name as a VARIABLE, whose value would be read automatically when menu is triggered?
    /* Add Contextmenu entries */
    sapbi_addToMenu("Add totals", "JS_SET_RESULT_VISIBILITY_R", "X","CHARACTERISTIC", "", "bottom", "", "")
    * Javascript functions that are to be integrated into a web template and that
    * are to be used later in the web application ALWAYS have to have the same function
    * signature, i.e. the parameters that will be passed.
    * @param currentState - a list of parameters that describe the state the web item
    * @param defaultCommandSequence - the initially used sequence of commands that
    *       would have been used instead of the custom
    *       script.
    function JS_SET_RESULT_VISIBILITY_R( currentState, defaultCommandSequence ){
    //Note: information can be extracted using the parameter 'currentState'
    // and 'defaultCommandSequence'. In either case create your own object
    // of type 'sapbi_CommandSequence' that will be sent to the server.
    // To extract specific values of parameters refer to the following
    // snippet:
    //  var key = currentState.getParameter( PARAM_KEY ).getValue();
    //  alert( "Selected key: " + key );
    // ('PARAM_KEY' refers to any parameter's name)
    //Create a new object of type sapbi_CommandSequence
    var commandSequence = new sapbi_CommandSequence();
      * Create a new object of type sapbi_Command with the command named "SET_RESULT_VISIBILITY"
    var commandSET_RESULT_VISIBILITY_1 = new sapbi_Command( "SET_RESULT_VISIBILITY" );
    /* Create parameter TARGET_DATA_PROVIDER_REF_LIST */
    var paramTARGET_DATA_PROVIDER_REF_LIST = new sapbi_Parameter( "TARGET_DATA_PROVIDER_REF_LIST", "" );
    var paramListTARGET_DATA_PROVIDER_REF_LIST = new sapbi_ParameterList();
    // Create parameter TARGET_DATA_PROVIDER_REF
    var paramTARGET_DATA_PROVIDER_REF1 = new sapbi_Parameter( "TARGET_DATA_PROVIDER_REF", "DP_1" );
    paramListTARGET_DATA_PROVIDER_REF_LIST.setParameter( paramTARGET_DATA_PROVIDER_REF1, 1 );
      // End parameter TARGET_DATA_PROVIDER_REF!
    paramTARGET_DATA_PROVIDER_REF_LIST.setChildList( paramListTARGET_DATA_PROVIDER_REF_LIST );
    commandSET_RESULT_VISIBILITY_1.addParameter( paramTARGET_DATA_PROVIDER_REF_LIST );
    /* End parameter TARGET_DATA_PROVIDER_REF_LIST */
    /* Create parameter CHARACTERISTIC */
    var paramCHARACTERISTIC = new sapbi_Parameter( "CHARACTERISTIC", "0PROJECT" );
    commandSET_RESULT_VISIBILITY_1.addParameter( paramCHARACTERISTIC );
    /* End parameter CHARACTERISTIC */
    /* Create parameter RESULT_VISIBILITY */
    var paramRESULT_VISIBILITY = new sapbi_Parameter( "RESULT_VISIBILITY", "VISIBLE" );
    commandSET_RESULT_VISIBILITY_1.addParameter( paramRESULT_VISIBILITY );
    /* End parameter RESULT_VISIBILITY */
    // Add the command to the command sequence
    commandSequence.addCommand( commandSET_RESULT_VISIBILITY_1 );
      * End command commandSET_RESULT_VISIBILITY_1
    //Send the command sequence to the server
        return sapbi_page.sendCommand( commandSequence );

  • MSconfig boot is blank, but still boots. Need to remove a boot menu entry.

    Hello,
    I have three boot menu entries that appear when I restart my pc.  The last one I would like to remove, as it isn't valid anymore.  When I go into msconfig, boot (tab), there isn't any entries in it.  I tried recreating another administrator
    profile, but that didn't help.  I tried using EASYBCD but I get the error message: the boot configuration data store could not be opened. The system cannot find the file specified. I searched for a bcd file, but didn't find any.  Upon reboot it shows
    three entries and does boot to windows, but I would like to remove the third, invalid, entry.
    Thanks,
    Mark

    I have windows 7, MS Dart and windows xp installed.  I uninstalled windows xp over a year ago. I booted into dart and ran startup repair.  It fixed it real good...no entries like before, but this time not starting at all.  missing boot\bcd. 
    I tried putting in windows 7 cd and running repair, but didn't work.  Decided it was time to reload windows 7, as all of my data is on another drive, it has been years since I did it anyway. My cloned/backup drive got into windows, but blue screened and
    did the same thing.  I wonder if I got a virus or possibly a registry cleaning program did this?
    thanks,
    Mark

  • Request and request set as menu entry

    Hello:
    Does somebody know how to define a request as a menu item? I want to execute automatically a request when a user cliks on that menu entry.
    Can this be done also with request set's?
    Thanks in advance

    1. You will need to define a Request Group with your Concurrent Program(s)
    2. Define a Function with the following syntax REQUEST_GROUP_CODE="<Your Request Group defined in step 1>" REQUEST_GROUP_APPL_SHORT_NAME="<Short Name of the Application>" Optionally define a title for the submit request window TITLE="AR:AR_CMGT_SRS_TITLE"

  • [SOLVED] Existing GRUB Win menu entries don't appear

    Hi,
    Just finished a fresh dual boot (Arch-64/Win7-64), dual HDs installation.
    I've installed os-prober prior to installing grub, and indeed a (seemingly) correct menu entry was added (in segment 30-see below).
    Yet after reboot, this entry does NOT appear!
    I've tried adding a respective entry in the 40-custom, (and ran ' grub-mkconfig -o /boot/grub/grub.cfg' afterwards), yet still the same (menu entry appears in grub.cfg yet does NOT appear after reboot!).
    Please advise!
    Thanks!
    my grub.cfg (note existing grub 30 & 40 segments
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 6ee857d9-95d1-47c4-ad47-18b979f49e74
    else
    search --no-floppy --fs-uuid --set=root 6ee857d9-95d1-47c4-ad47-18b979f49e74
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    fi
    terminal_input console
    terminal_output gfxterm
    set timeout=5
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-6ee857d9-95d1 -47c4-ad47-18b979f49e74' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 76af1051-313e-4736-a61c-7c6c8dbaf6ba
    else
    search --no-floppy --fs-uuid --set=root 76af1051-313e-4736-a61c-7c6c8dbaf6ba
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=6ee857d9-95d1-47c4-ad47-18b979f49e74 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    menuentry 'Arch Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kern el-fallback-6ee857d9-95d1-47c4-ad47-18b979f49e74' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 76af1051-313e-4736-a61c-7c6c8dbaf6ba
    else
    search --no-floppy --fs-uuid --set=root 76af1051-313e-4736-a61c-7c6c8dbaf6ba
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=6ee857d9-95d1-47c4-ad47-18b979f49e74 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fallback.img
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6ee857d9-95d1-47c4-ad47-18b979f49e74' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 76af1051-313e-4736-a61c-7c6c8dbaf6ba
    else
    search --no-floppy --fs-uuid --set=root 76af1051-313e-4736-a61c-7c6c8dbaf6ba
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=6ee857d9-95d1-47c4-ad47-18b979f49e74 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fallback.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-6ee857d9-95d1-47c4-ad47-18b979f49e74' {
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows 7 (loader) (on /dev/sdb1)' --class windows --class os $menuentry_id_option 'osprober-chain-67AD726A113E664B' {
    insmod part_msdos
    insmod ntfs
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 67AD726A113E664B
    else
    search --no-floppy --fs-uuid --set=root 67AD726A113E664B
    fi
    chainloader +1
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    # Windows 7
    menuentry "Windows 7" {
    set root=(hd1,1)
    chainloader +1
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    Last edited by mibadt (2013-12-19 03:00:05)

    i think you have a missing "{" to close the submenu.
    ezik

  • Application bar is greyed out under window menu

    Although I can see an application bar on my document, it is "greyed out" under the window menu. Specifically when I click the icon to arrange documents ie - tile vertically/horizontally - everything is greyed out

    Hi,
    Do you have a project open?
    if so double click on a sequence and the timeline should appear. Or start a new project if you don't have one open.
    DM

  • Is there a way to see an organized Window Menu that indicates if a window is minimized?

    Using Firefox 3.6.12 on Mac OS X 10.6.5
    I routinely research using tabbed browsing. Each window holds a collection of tabs related to a research resource or topic. Sometimes I minimize these on the Mac with a Command-M.
    When I look at the Window menu for the application the order seems random and there is no indication of which folders are minimized or open.
    One possibility would be to have a sidebar hierarchy (with search feature) that is sorted by a user's choices (e.g. all maximized windows listed separate from all minimized windows; sort by site/URL in first tab of window).
    Can this also influence Command-` cycling through maximized windows?
    It's probably a different topic but it would be nice to know which tab is taking a lot of processing time (Javascript, Flash, AJAX, etc.) so it could be closed for better overall performance. Similarly, finding the one tab that is outputting audio would be a help sometimes.
    Searches in help forum and add-ons don't seem to respect quoted strings such as "Window menu" so it is very hard to find relevant information or plug ins.
    James Keeline

    Hi!
    thanx alot for the answers, I didn´t noticed that you answered I didn´t get the email that this post was answered, what we needed was to access the oportunity directly whith a URL in the Browser. So you can build a URL and access Siebel with a browser and it will open directly in siebel on the oportunity, I think the Siebel Team solved this some how but I wanted to answer you since I couldn´t see you messages,
    Really apreciate it!!
    Kind Regards!

  • When I don't have the BROWSER menu option turned on, the WINDOW menu options are un-accessable by mouse

    First of all, I would like to clarify which "menu" is un-accessable.
    I'm referring to the menu that regardless of which program, a user can access by either clicking ALT + SPACE or by clicking the top left corner of the window. I'm NOT referring to the FIREFOX menu options, those I am fine with.
    Normally, I can just move my mouse to the top left corner and double click to close a program. I used to be able to do that too with firefox 3.6. However, due to the new design, when I click the top left corner, I get the orange Firefox drop down menu. This is because firefox, due to the new update, no longer has an independent window bar that is the norm across most programs. The only way I can get this independent menu bar is to enable the browser menu bar. This however, adds two entire layers of bars, which defeats one of the purposes of the update, to give more viewing space
    The Chrome browser also has the tab row on top, however, it doesn't have the issue I brought up. When I click the top left corner of the window, the regular WINDOW menu options pop up.
    The reason why this is important to me is due to the fact that I use two monitors. Normally, I can just move my cursor to the top right and close the window without looking for my right hand side monitor, and then double click the top left hand side of my left hand side monitor to close the window. This is because with a 2 monitor set up, the "X" close button is located inconvinently in the middle of my two screens, forcing me to aim for the tiny small red rectangle, which is why I prefere to double click the top left corner; I don't have to aim.
    I have long been a loyal user of firefox. Browsers like Chrome and others have been out ranking firefox for a long time, mozilla is only playing catch up here...
    While I am glad for the update - better speed due to JaegerMonkey, the added hardware acceleration, the tab groups, and more, if the window menu problem is not resolved soon, this update is going to force me to switch browsers.
    I look forward to a fix, or response on how to resolve this issue.
    Many thanks,
    Still a firefox user... for now

    it's possible but there is likely no need to do this. what exactly is wrong with your computer? a simple reinstall of snow leopard on top of your current system will cure many ills and will preserve your data and applications. and many problems can be solved without reinstalling at all.
    but if you insist on doing a wipe and install boot from the SL install DVD and start disk utility from utilities menu at the top. erase your hard drive using the erase tab in disk utility. then quit disk utility and proceed with the install. and if you do reinstall I suggest you back up your data first. otherwise it will be completely wiped when you erase your hard drive. and you should always back up anyway.
    Message was edited by: V.K.

  • Help:  How to add a library item to hide the default Window menu

    Hi,
    In this post: Help: How to add a library item to hide the default Window menu, it described how to create an menu that will hide the default window menu.
    I'd like to know if there a way to put this component into library so that others can directly inherit this menu in other FORMS and how to implement it.
    Jimmy

    Hi,
    I found the solution and the post was not properly phrased. There is no need to add menu into library. All we need is to put the compiled menu into Oracle AS and add the menu name the menu module of the given form.
    Thanks.
    Jimmy

  • How to add a new right-click menu entry in Nautilus file browser?

    I want to add a couple of new context menu entries to Nautilus File Browser.
    So when I e.g. right-click in View Pane on a file "foobar.conf" an menu entry "edit with gedit" should appear (among the other default entries).
    When clicked the file "foobar.conf" should be passed to gedit (and gedit editor opened).
    How can I achieve this?
    Under Ubuntu there are nautilus-actions but when I try to install them in Solaris with
    pkg install nautilus-actions
    then this package is not found.
    How else can I create my own context menues?
    I would appreciate to have one script with all my context menus, which when run add them all in one step.

    To manage selected files or directories, you can use specific Nautilus variables like NAUTILUS_SCRIPT_SELECTED_FILE_PATHS.
    For more details and which variables exist, please read the content of the following URL :
    Nautilus File Manager Scripts: Questions and Answers

  • Why does debugger menu entry not exist in Acrobat 7.1.0

    Today I decided to start using the JavaScript functionality of my Acrobat 7.1.0 (updated a few days ago from 7.0.x). First I searched for some documentation and found the original "Acrobat JavaScript Scripting Guide" for Acrobat 7.0, document release date July 19, 2005. What made me doubt about the quality of my environment is that there are always some features mentioned that do not at all exist in my Acrobat, such as menu entries like "Debugger" under "Advanced - Javascript". The only thing I find there is "define document actions" (menu entry translated from German). Reading other posts in this forum concerning Javascript I searched other places like acrobatusers.com and, checking the tutorials, I saw screenshots of preference screens containing more items than my ones, especially more items in the "debugger" panel of the "Javascript" entry. When searching places on my drive where Acrobat should expect JavaScript files like "Program Files\Adobe\Acrobat 7.0\Acrobat\Javascripts" I remember having read that there should be more files than just "Websearch.js" and "JSByteCodeWin.bin" (as it is in my case; but I'm not sure what actually should be there further).
    So far the only thing I can do to open the console is defining some action related with files (but only unhandy ones like "when closed" or "when saved"). The only way I know to open the JS debugger is defining invalid JS code for some file action and perform this action, then the debugger shows up along with the console, complaining.
    Strolling arround in my Acrobat program subdirectories I found documentation and a runnable named "ExtendedScript Toolkit" that seemed to work well (though I could not try it out seriously as it obviously is quite complicated because it relies on the InDesign object model). Did ExtendedScripting coming along with InDesign spoil my normal JavaScript environment in Acrobat? Or was it the update from Acrobat 7.0.0 to 7.1.0? How can it be that menu entries everybody else is talking about are not at all visible in my installation though I desparately enabled almost everything in my Acrobat preference settings? Are there some paranoid web security defaults making entries disappear in my installation?
    Any suggestions will be greatly appreciated!
    Richard

    Bernd,
    the matrix is for Acrobat 9 only and thus not totally liable. However, as for V9 the topic of scripting or debugging is not even touched in the whole matrix, one might suggest that V7 would also make no differences in that area.
    I am only guessing, but the fact that I do not find any hint about a problem similar to my one might have to do something with the "ExtendedScript Toolkit" I mentioned above. If the behavior of my Acrobat installation had been changed due to installing ExtendedScript, this would be a kind of (intended) bug most users would not complain about, because: ExtendedScript comes along with software like InDesign, and the typical ID user is not the one developing JavaScript under Acrobat.
    Searching Google for ExtendedScript I found the Adobe download area and clicking on the item it says:
    The ExtendScript Toolkit (ESTK) 1.0.3 is a scripting utility included with Adobe® Creative Suite 2 and other Adobe applications. The ESTK is used for creating, editing, and debugging JavaScript to be used for scripting Adobe applications.
    Looking up documentation on ExtendedScript (which was not very easy to find) I noticed some examples about adding a document to the target application by executing the line:
    app.document.add();
    As I am starting the ES toolkit as an own main program, I am getting the error message that this call is not executable for the target application "main", which I can accept. Maybe there is a way connecting Acrobat to ExtendedScript, maybe there is even a way to reanimate "normal" scripting, maybe normal scripting is not even unconscious but only sleeping and can be woken up easily ...
    Maybe the best way to find out is searching for a forum about scripting (albeit extended or normal). Funny, though, that my Acrobat does not at all match the original scripting documentation of Adobe concerning such elementary things like menu entries being present (especially see second attachment: "Erweitert" translates to "Advanced", "Dokument-Aktionen festlegen" to "Define document actions". Where is the "Debugger" entry???).
    If I believe others here in this forum saying that the "Debugger" entry normally is appearing in the Javascript menu. Obviously the Acrobat software contains program code to hide or remove this entry permanently. Furthermore, somebody else, also a member of the Adobe stuff, has written the documentation that does not at all contain any applying description of conditions about hiding the menu entry. What I would appreciate is if Adobe would make those two persons talk to each other about what they are doing. By that, other people like me could save a lot of time.

  • When in Adobe Bridge and trying to create a web photo gallery, under the windows menu and then the workspace menu there is no output option.  Where is it?

    When in Adobe Bridge and trying to create a web photo gallery, under the windows menu and then the workspace menu there is no output option.  Where is it?

    You haven't provided any sensible, meaningful and detailed information about your setup.
    If you gave some sensible, complete and detailed information, someone may be able to help you, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, etc.
    There are no clairvoyants or mind readers here.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • How do I determine why yosemite will no longer shut down?

    This is a new problem, not occurring after installing Yosemite.  Now my iMac will not shutdown it just has that spinning icon that will go on forever unless I hold down the power button.  How do I determine what is causing it?

  • Indexed views using indexes on base table

    Hi all, CREATE VIEW Sales.vOrders WITH SCHEMABINDING AS SELECT SUM(UnitPrice*OrderQty*(1.00-UnitPriceDiscount)) AS Revenue, OrderDate, ProductID, COUNT_BIG(*) AS COUNT FROM Sales.SalesOrderDetail AS od, Sales.SalesOrderHeader AS o WHERE od.SalesOrder

  • Deletion of condition record (vk11) from Database

    Dear, can anybody tell me how to delete condition record completely from database nt delettion flag. regards, Debesh

  • Include files/documents in the calender

    I love my iPad, but to be able to use it fully as the single work-tool for meetings and stuff it should be possible to include files or documents in the calender (i e links to the files) so that everything is easily accesible from the calender when y

  • I imported digital photos but cannot attach to email for send off

    I do not know what happened. I imported digital photos from my Olympus into Iphoto without trouble, but when I try to send as an attachment thru email, the items cannot be opened as photos . I had no trouble in the past. What happened?