How to disable script debug? Alt key brings debugger window.

Here is detailed problem description:
http://forums.adobe.com/message/2678671
In short.
When batch is being processed in background (photoshop window is inactive) pressing the Alt key brings the debugger window (ExtendScript Toolkit - Fit Image.jsx).
Steps to repro:
1. Create some action (must include Fit Image script from File->Automate)
2. Apply this action to a folder.
3. Switch to another window (not photoshop)
4. Hold the Alt key for a little why.
Current workaround:
1. Do not do anything while processing batch. Just sit and look at the screen several hours.
or
2. Process batches under separate user (use WinKey+L to switch).
Another (related) problem. When batch is being processed (in background) the Esc key doesn't work at all! Just switch to some application where you can use the Esc key, hit Esc - and it won't work!
OS: Windows XP
Photoshop CS4, CS3

But why do you need the Alt key when PS window is not active?
Nobody did, as far as I know. You only needed it when a script is launched from in PS and then only when PS had focus. I have no clue why they were looking at the Alt key when PS didn't have focus. Instead of fixing what I would consider a bug, the removed a very useful feature.
The only case I could see it being useful is if you were running a script in Bridge and that calls a script in PS and you wanted the debugger to fire up when the PS script was launched. That's a rare enough situation that inserting a debugger; call in the PS script would be a reasonable alternative and is the one I use. Unfortunately, it doesn't always work.

Similar Messages

  • How to activate script debugging in Adobe Livecycle designer

    Friends,
    I would like to know how to activate script debugging in the Adobe Livecycle designer. I need to debug the scripts written in the script editor.
    Thanks and Regards.

    Syntax checking is available in designer from version 8.1 onwards.
    If you want to enable in Adobe Reader then go to Edit --> Preferences --> JavaScript --> Enable the option Show console on Errors on messages.
    Apart from it the alternative way to debug the scripts is to use xfa.host.messageBox and check the values.
    Chintan

  • How to disable the archive logs in SAP IDES(Windows) using SQL Server

    can any body tell us How to disable the archive logs in SAP IDES(Windows 2003) using SQL Server 2000.SP4.?

    Hi,
    Unfortunately, SQL Server does not have the option to turn off transaction logging. You can set the recovery mode to SIMPLE, instead of FULL. This will result in the transaction log being truncated on checkpoint.
    http://support.microsoft.com/kb/873235 - check this microsoft article
    This will help in reduction of the size of the transcation log.
    - Regards, Dibya

  • How to disable maximize button of the java.awt.Window ????

    How to disable maximize button of the java.awt.Window !!!!
    Help needed

    How to spam the forum with the same fuqin question. Please get lost.

  • How fix problem of the Alt Key, when used with with the Clone stamp, generating an overlay image?

    I am using CS5.   When I try to  use  the Clone Stamp  or Healing Brush Tools, pressing the Alt key generates an extraneous image which overlays the
    the image  which is being worked on  prevents these tools from functioning by sliding at around  when  the ALT tool is pressed. Does any one elso have this odd problem? How can it be fixed?
    Thanks,
    JackIsaac 

    . Yes this was the problem.  As a novice, I would have spent hours and hours figuring this out.  Many thanks.

  • How to Disable a PARTICULAR action key?

    Hi,
    I know how to turn off action keys from BIOS. What i want to is just disable the help action of the F1key. I basically want it o have no fuction (so that it would perform the assigned function for the game) like the f5 key on my Envy 15t. I use the f1 key in games, since every time i press it it opens up the help, i want to disable it. However, i do not want to disable the rest and want to be able use them without having to press the FN key. 
    I am not sure if there is a solution to this problem but i would still love to hear some suggestions.
    Thank You.

    Hi,
    If just for Windows XP: you should be able to disable the help stuff by disabling the Help and Support service. (start->type services.msc->press enter).
    And for Windows 7 (Vista could be the same):
       http://www.sevenforums.com/customization/171360-there-way-totally-disabling-f1-hotkey.html
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to disable F1 to F12 keys in Web Browser when SWF file is in focus

    Hi all,
    Im running / loading a swf file in IE. I want to disable the
    function keys ( F1- F12 keys) in IE as I have defined special
    functions for these keys in my swf / flash file.Im using a
    javascript code to do this and the javascript code is working
    correctly.But the problem starts when the swf file is in focus,
    when swf file is in focus and if I press the F3 key the search of
    IE opens, but I have defined a special function in my swf file for
    this key, here the IE is overriding and it's taking the precedence
    in the event handling this is what I want to disable.So that I can
    catch the event in SWF file or get the Key code and run the my
    function defined for the key.
    Thanks.

    apollothethird wrote:
    When testing my applets on a Linux Web site I’m finding that I have to totally exit the browser, then open up a new browser session to see the updates on my applets. Yes. Applets can be horrible for caching. I am surprised that exiting and restarting the browser works. I usually clear the cache in the Java Console.
    ..The refresh button on the browser won’t show the new version of the jar file program. I find this consistent with Firefox, MS Internet Explorer, and Google Chrome.
    Is there some type of browser option that will allow the next jar version to be run without having to exit out of the browser to see it?
    No, but if the Java Console is open, it is pretty easy to force a refresh of the classes.
    As an aside, for a more general solution for your end users, look to launch the app. using [Java Web Start|http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp] . Updates are reliable and automatic.
    Thanks in advance for any comments on this.No worries (in advance).
    Note that my reply would have been sooner, except that I felt compelled to get that matter of the link in your post dealt with, before commenting.

  • How to disable detection of ESCAPE key in JDialog?

    Hi,
    I've implemented a non-modal JDialog, and to be sure the user doesn't close it I call setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE)However, the user can always close it by pressing the ESCAPE key.
    Key binding does not work as the dialog is not a JComponent, and a KeyListener seems not to work.
    Is there a way to catch the ESCAPE key?
    Thanks in advance for any hint.

    However, the user can always close it by pressing the ESCAPE key.Is this a new feature in JDK1.5 or JDK6?
    The escape key is not supported by default in JDK1.4.2 so I'm surprised that its turned on by default in later versions.
    This is how I add the funtionality in JDK1.4.2:
    Action escapeAction = new AbstractAction()
         public void actionPerformed(ActionEvent e)
              System.out.println("escape");
              setVisible( false );
    KeyStroke escapeKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0, false);
    getRootPane().getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT)
         .put(escapeKeyStroke, "escape");
    getRootPane().getActionMap().put("escape", escapeAction);So, presumably you could override the default behaviour by using a dummy Action.

  • Anyone know how to disable the "caps lock" key?

    I'm a klutz typist who needs to look at the keys when I type, and I often hit the caps lock key by mistake and have to go back and retype a lot. There used to be in the real old days a freeware utility to do this, but I don't know how to do it today.
    PowerBook G4 Titanium 400   Mac OS X (10.3.9)  

    Hi, Starratt, and welcome to Apple Discussions. Here are some links to possible solutions:
    http://mkaz.com/archives/86
    http://forums.macosxhints.com/archive/index.php/t-10186.html
    http://forums.cnet.com/5208-6142_102-0.html?forumID=97&threadID=199678&messageID =2150130

  • How to disable the Super User menu - (Right click windows icon menu) - Server 2012 R2 - RDS

    Greetings all,
    Can anyone please advise how to remove the Administrator / Super User menu that appears when you right click the Windows Icon (old start button) in Server 2012 R2 - for RDS users. I have searched and been able to disable access to each of these menu items (Control
    Panel, Event Viewer, Run, etc). But I am searching for a way to completely remove the menu. This menu also appears when you use Win-X shortcut.
    Hope someone can help.
    Terry

    Hi Terry,
    You can try following points, might helpful in your case. Go to 
    C:\Users\Default\AppData\Local\Microsoft\Windows 
    there you will see file called WinX 
    Right click this file and copy then go to
    C:\Users\YOUR_USERNAME\AppData\Local\Microsoft\Windows 
    then paste the file into the folder.
    NOTE: replace YOUR_USERNAME with your actual username. 
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to disable Java Plugin on a few thousand Windows PCs?

    We have installed Sun Java 2 SE Runtime Environment 1.4.0 on all our Windows NT4/2000 Workstations. The installation was performed by InstallShield Silent as described on the following page: http://java.sun.com/j2se/1.4/docs/guide/plugin/developer_guide/silent.html
    Now we want to change the following Java Plugin setting to disable the plugin for the Internet Explorer:
    "Control Panel / Java Plugin 1.4.0 / Browser Tab / Microsoft Internet Explorer" = disabled
    Because this we have to do this on a few thousand PCs we cannot do it manually. We are looking for a possibility to do this by a unattended or silent setup. Does Sun recommend a special procedure for doing this? Or does someone know the necessary registry or file changes? We've tracked the changes but we couldn't find a working solution.
    (We are using Microsoft SMS for software distribution and have the tools to make registry or file changes.)
    Thank you and regards
    Sven

    I Remembered that the JRE is simply doing a re-direct on the MSJVM key using "Treat As. So I did a MS Sysdiff to capture the changes. OFF.DMP and ON.DMP were created. OFF.dmp shows that there are basically 4 registry changes. I created the following cmd file to delete the 4 registry keys: Watch out for the word wraps....
    echo off
    REG DEL "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\JAVA_SUN" /FORCE
    REG DEL "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\SUN_JAVA_2" /FORCE
    REG DEL "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{08B0E5C0-4FCB-11CF-AAA5-00401C608501}\TreatAs" /FORCE
    REG DEL "HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.4.0\UseJava2IExplorer" /FORCE
    REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\JAVA_SUN"
    IF %ERRORLEVEL% NEQ 0 ECHO Successfull!
    REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\SUN_JAVA_2"
    IF %ERRORLEVEL% NEQ 0 ECHO Successfull!
    REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{08B0E5C0-4FCB-11CF-AAA5-00401C608501}\TreatAs"
    IF %ERRORLEVEL% NEQ 0 ECHO Successfull!
    REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.4.0\UseJava2IExplorer"
    IF %ERRORLEVEL% NEQ 0 ECHO Successfull!
    This successfully works by removing the registry entries and therefore not redirecting IE to use the JRE. Then the NEQ or "not equal to" can be used to verify it and log your errors and report back to you as you so desire. OK, use EQU to find out if it fails because it is found.... We do this kind of thing as admin but user rights seem to work. If you wanted to you could create the OFF.DIF file and run sysdiff /apply /m OFF.DIF. Remember not to change anything but the uncheck & apply so you don't capture MRU and other user keys. I digress... Here are the complete ON.DMP and OFF.DMP text files line compressed for space.
    ; Dump of sysdiff package OFF.dif
    ; File created with sysdiff version 40007
    ; TotalDiffCount: 5
    C:\WINNT\Profiles\userid\.java
    SFN: C:\WINNT\Profiles\userid\JAVA~1
    Add/change jpicerts140 (SFN: JPICER~1)
    Add/change jpihttpscerts140 (SFN: JPIHTT~1)
    Add/change properties140 (SFN: PROPER~1)
    HKLM\SOFTWARE\Classes\CLSID\{08B0E5C0-4FCB-11CF-AAA5-00401C608501}\TreatAs
    (delete key)
    HKLM\SOFTWARE\JavaSoft\Java Plug-in\1.4.0
    UseJava2IExplorer: REG_DWORD 0x0
    HKLM\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\JAVA_SUN
    (delete key)
    HKLM\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\JAVA_SUN\SELECT
    (delete key)
    HKLM\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\SUN_JAVA_2
    End of dump of OFF.dif
    ; Dump of sysdiff package ON.dif
    ; File created with sysdiff version 40007
    ; TotalDiffCount: 6
    C:\WINNT\Profiles\userid\.java
    SFN: C:\WINNT\Profiles\userid\JAVA~1
    Add/change jpicerts140 (SFN: JPICER~1)
    Add/change jpihttpscerts140 (SFN: JPIHTT~1)
    Add/change properties140 (SFN: PROPER~1)
    HKLM\SOFTWARE\Classes\CLSID\{08B0E5C0-4FCB-11CF-AAA5-00401C608501}\TreatAs
    : REG_SZ/REG_EXPAND_SZ {CAFEEFAC-0014-0000-0000-ABCDEFFEDCBB}
    HKLM\SOFTWARE\JavaSoft\Java Plug-in\1.4.0
    UseJava2IExplorer: REG_DWORD 0x1
    HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{08B0E5C0-4FCB-11CF-AAA5-00401C608500}
    KeyFileName: REG_SZ/REG_EXPAND_SZ C:\Program Files\Java\j2re1.4.0\bin\ActPanel.dll
    HKLM\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\JAVA_SUN
    Bitmap: REG_SZ/REG_EXPAND_SZ C:\Program Files\Java\j2re1.4.0\bin\ActPanel.dll,1000
    Text: REG_SZ/REG_EXPAND_SZ Java (Sun)
    Type: REG_SZ/REG_EXPAND_SZ group
    HKLM\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\JAVA_SUN\SELECT
    CheckedValue: REG_DWORD 0x1
    DefaultValue: REG_DWORD 0x1
    HKeyRoot: REG_DWORD 0x80000002
    RegPath: REG_SZ/REG_EXPAND_SZ Software\JavaSoft\Java Plug-in\1.4.0
    Text: REG_SZ/REG_EXPAND_SZ Use Java 2 v1.4.0 for <applet> (requires restart)
    Type: REG_SZ/REG_EXPAND_SZ checkbox
    UncheckedValue: REG_DWORD 0x0
    ValueName: REG_SZ/REG_EXPAND_SZ UseJava2IExplorer
    HKCU\Software\Microsoft\Java VM
    EnableJavaConsole: REG_DWORD 0x0
    End of dump of ON.dif
    Try it on Win 2000, it should work.
    I'll check back in a a couple of days in case you have a question. Hope this helps, Gary.

  • How to disable horisontal scrolling on magic mouse in windows 7?

    Pls help. It's very difficult to work.

    I use MagicMouse on iMac with Windows 7 running (installed through BootCamp). Got sick of annoying horizontal scrolling. The solution described above has helped me to disable it. Here is what I've done in steps:
    1) go to http://www.autohotkey.com/ and download an app (a script editor).
    2) Install and run the program - please note that it will not open as it runs in the background
    3) Rightclick on the desktop -> choose "New" -> "AutoHotkey Script" (a new script file will be created on the desktop) -> name it as you wish (e.g. "Mouse_HScroll")
    4) Rightclick on the file you've just created and choose "Edit Script" from the menu.
    5) Add these three lines below existing text in the file:
    WheelLeft::return
    WheelRight::return
    #MaxHotkeysPerInterval 5000
    6) Save file
    7) Run "Convert .ahk to .exe" program from the package installed earlier and browse the file you've just created, hit ">Convert<" -> .exe file should be created. Run this file -> the scrolling should be disabled now.
    7) You may wish to move this file to Start/"Autorun" folder, so it would be launched automatically each time you reboot your Mac/PC.
    Hope this helps! Good Luck

  • How to disable airplane power mode completely on T440p Windows 7 64?

    Hi!
    I have updated Windows 7 64 and latest Lenovo Power Manager 6.66.3
    My computer continuously switches to airplane power mode while being conneted to AC power source.
    *Despite* being disabled in the power manager ir still does it and being connected to AC power discharges the battery (also when the lid is closed it goes standby etc.).
    I don't need it! I need my notebook run at full performance while it is connected to the AC power, no matter if I type keys/move mouse or not, is battery fully charged or not.
    Please help me achieving this.
    Thank you in advance/

    Hi!
    Yes, I would happily do that, but without Lenovo power manager my screen goes dim frequently. So even when I have power management in Windows set to not save power on anything, it still flickers and i think it is something wrong with Lenovo BIOS or similar. Lenovo power manager took those screen flickers away, but brought that airplane mode that simply cannot be disabled.

  • How to disable elasticity property of list view in Windows Phone 8.1..?

    Hi,
    I am using the ListView control of Windows Phone 8.1. I am using data binding to populate the list items. It works fine. But I am able to pull the list down from the top( ie..When we pull down the list, fist item comes down and  the background color
    can be seen, and when released it goes back to normal view). As of I understand this is the default behavior of ListView. 
         How can I change this behavior..?
         It should not be rigid but scroll should end where the list item ends, not more than that...
        In shot I don't require any  elasticity property for the List 

    Use a custom control.
    Windows Phone/Windows Store

  • How to disable adobe flash in chrome and use windows adobe X

    I keep getting "shockwave flash has crashed" and was told to disable flash player in chrome, but when I do that, videos won't play. I DO have Adobe X installed but chrome won't use it. However, just having it seems to cause a conflict. I have Windows 7 office and Adobe flash player 17 Active X. thanks.

    I'm loading CS5 (upgraded from CS3). It's the computer OS that I've had to remove it from before - and it doesn't appear in the Startup folder, unlike in Windows XP's system. (Or in the Control Panel, although there is a "Color Management" folder that lists color profiles I've downloaded from Epson when I downloaded my printer drivers for Windows 7).
    So I guess Windows 7 doesn't include it, and I am free to do my calibration. Adobe's tech support phone line is closed for the weekend so I am turning to you forum experts. There must be someone out there who has encountered this in setting up a new computer system and loading PS onto it. Thanks for the input from both you and John.

Maybe you are looking for

  • I can't print my Yahoo! Email message

    When I clicked print to print email message the print box would appear as usual to choose your printer and the number of copies, but it would disappear in an instant (about 1 second) and I'm unable to click the print button. I tried switching my brow

  • Libros y Audiolibros en Español--cannot upgrade, and cannot purchase audiobooks.

    Two major problems with this App. One, I cannot successfully purchase an audiobook through the app. I can download a free text-only book, but there are no free audiobooks that I've found. When I try to purchase an audiobook, it goes through the Black

  • ORA-00979: not a GROUP BY expression in Oracle11g R2

    hi, I am working in Oracle 9i Environement. I want to update Our production database from Oracle 9i to Oracle11g R2. Note :- Oracle 9i & 11g R2 are different systems. We follow the migration through import & Export Commands from Production database t

  • CRM Target Groups and Product Segments - BW and BPS settings

    Hi gurus, I have some questions regarding the CRM Target Groups and Product Segments as it relates to BW and BPS planning layouts. 1. When a target group is created in CRM, is it supposed to also be create master data entry for the object 0TGGRP_ID i

  • New to Java Please, I want to understand..

    Hi, Here is what I am trying to do. I have a *.csv file that I want to put into an arraylist and the see the results on the screen. I get the code to compile but I don't understand the run-time error that is generated. Below is the code I am using pl