Getting rid of batch processing javascript console popup

So i don't know much javascript but i am doing some relatively simple commands here...
i thought that before whenever i would execute javascript from the batch processing window it would just go through all of the files.... but now it prompts me with the javascript editor for every single file it goes through.
this cannot happen as i am running this on over 1000 pdfs and i must let it run without a user present...
does anyone know how to get rid of the window from popping up? or why it is popping up?
the code i am executing is the following:
/* Extract pages to folder */
// Regular expression used to acquire the base name of file
var re = /\.pdf$/i;
// filename is the base name of the file Acrobat is working on
var filename = this.documentFileName.replace(re,"");
try {for (var i = 0; i < this.numPages; i++)
this.extractPages({
nStart: i,
cPath: filename+"$" + i +"_" + this.numPages + "$.pdf"
} catch (e) { console.println("Aborted: " + e) }
any help is much appreciated

hmm that didnt work either....
what is so wierd to me is i am pretty sure that a couple of days ago i tried using the exact same script and it went through fine... but now it is doing this...
i dont know what could have changed...

Similar Messages

  • Can you Send for Shared Review in Batch Processing JavaScript?

    Hello! I am new to javascript and Acrobat 9 Pro. I have multiple documents emailed to me in a day and need to send/track each one individually. Can this be done using the Batch Processing javascript as a Shared Review?
    I have tried adding a button to the "Add-On" toolbar and start a shared review but can't automate manual key entries for the dialog windows that opens for  a Shared Review.
    What I am looking for is a js file to add a button to execute Send for Shared Review, Select multiple files dialog window, open the standard dialog windows for Shared Reviews one time and then do the same to all other selected files.
    Can you please help, and maybe supply some javascript examples?

    Please repost in the Acrobat Scripting forum.

  • How do I remove, get rid of, take away "Updates Available" popup box?

    I have wanted to get rid of this popup box that opens on my screen everyday even though I am not updating my software for many months and I have not seen a solution. The only way I have seen to get rid of it is to every single day press "later" then "remind me tomorrow," which is the last thing I want it to do. What happened to the days when Apple users had some say in what they see on the screen? I am a 20 year Mac user and many things are not as user friendly as they used to be 10 years ago, including iTunes and managing this popup, choosing colors for folders and icons in itunes and finder windows, navigating iTunes  and so on. Wondering if others have these questions, concerns. Thank you. I have 10.9.5 OS and don't want to upgrade for a while.

    '''Try the Firefox SafeMode''' to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode#w_safe-mode-window_2 Troubleshoot Firefox issues using Firefox SafeMode]
    When in Safe Mode... <br />
    * The status of plug-ins is not affected.
    * Custom preferences are not affected.
    * All extensions are disabled.
    * The default theme is used, without a persona.
    * userChrome.css and userContent.css are ignored.
    * The default toolbar layout is used.
    * The JIT Javascript compiler is disabled.
    * Hardware acceleration is disabled.
    * You can open the Firefox 15.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes <br />
    Or it might be caused by Hardware Acceleration.
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

  • How do i get rid of low disk space message popup HP tools drive E on pavilion g7-1219wm notebook pc

    How do i get rid of low disk space message ( you are running out of disk space on Hp_Tools (E popup HP tools drive E on pavilion g7-1219wm notebook pc.  It is very annoying.  I am i school and I have noticed it since downloading different assignments from my college black boards.

    Thanks Banhien for your quick response.  However my system shows no backup schedule to disable.  I do have a 'Manage Space" link and a Turn on schedule link and change settings link along with Restore options with 3 options-' restore all user files- select another backup to restore files from and recover system settings on your computer.   If I click on 'Manage Space link',  it gives me the option to 'Select how disk space is used by Windows back up'- then there are two options:  'data file backup'-which indicates i can free up space by deleting file backups, and the other option is 'system image' which is greyed out.  Upon clicking on the option (view backups) under 'data file backup option'- it shows the current data file backups on my hp_tools (e the date of the file is displayed and the amount of usage- it gives me the option to delete- should I click the delete button?
    banhien wrote:
    Hi,
    Please try:
    Click Start, type "Backup and Restore," and press Enter.  This brings up Windows Backup which is a little different than system protection.
    In the middle of the Window you should see that the backup is on a schedule.  Disable this.
    Save your changes.
    Delete the backup folder on the E:
    Reboot notebook and verify that this resolves the issue.
    Regards.

  • Accidently installed NoScript, can't get rid of it and JavaScript has been disabled even though it says it's enabled - help!

    I accidently installed NoScript when trying to remove adverts/pop-ups. Now it's causing problems on various sites I regularly use and I can't get rid of it. It doesn't show up on Tools/Add- ons so I can disable and JavaScript has been disabled, even though it shows as 'Enabled'.
    Help would be appreciated.

    The usual method for uninstalling extensions and themes is by using the Add-ons manager for your Mozilla application, as follows.
    # Click "Tools -> Add-ons
    # Click on the Extensions or Themes button on the top.
    # Click on the extension or theme you want to uninstall.
    # Click Uninstall.
    # Restart your Mozilla application.

  • How do I get rid of this unwanted and inappropriate popup?

    I have written my own windows installer in C++ using Visual Studio 2010.  It works fine.  I recently added code to it so that the application installed by the installer is included in the Control Panel's "Uninstall Programs" list
    and have wired everything up in my installer to perform the uninstall operation when passed the /U command line switch.  So far everything works fine.
    I put a confirmation popup into the uninstallation code in the installer which comes up in the beginning when uninstall is selected within the "Uninstall Programs" control panel applet.  It's simply a Yes/No Message Box asking for a confirmation
    of the uninstallation.  If I click 'Yes' to confirm the uninstallation request, everything works perfectly.
    The problem occurs when I click 'No.'   If I click 'No', I get a popup stating that "This program might not have uninstalled correctly."
    Does anyone know how I can prevent this 'Program Compatibility' dialog box from being issued by Windows (8.1) ?
    Thanks in advance for any light you can provide.
    Charles S. Cotton

    Ok, this does turn out to be a windows version compatibility issue.  Once corrected, the problem disappears.
    When an application is compiled by Visual Studio 2010 without an explicit compatibility manifest specified, it defaults to a compatibility level of Windows Vista.
    The compatibility level can be seen for all running programs in resmon.exe, CPU tab.  Once there, right click any one of the column headers and choose "Select columns..."  Add the "Operating System Context" column.
    Before adding the explicit manifest file, my installer program, compiled using Visual Studio 2010, showed an "Operating System Context" of "Windows Vista."
    To add an explicit manifest file to the project, I first created a file that I called "Compatibility.manifest" (you may call it anything you wish) and put the following xml into the file (without the START and END indicators, shown below).  I
    put the file into my 'Res' project subfolder:
    <!-- START of Compatibility.manifest file -->
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
            <application>
                <!--The ID's below indicates application support for Windows 7, 8.0 and 8.1, in order. -->
                <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
                <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
                <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
            </application>
        </compatibility>
    </assembly>
    <!-- END of Compatibility.manifest file -->
    I included the supportedOS entries for Windows 7, 8.0 and 8.1, which appears to be necessary so that the application will work in all three of the OS's.
    In the Properties Dialog for the Project, I added Compatibility.manifest to the project as shown here:
    Note that the file pathname is relative to the project root (where the .vcxproj file resides).
    After compiling, I tested the installer (both install and uninstall options through the Control Panel uninstall programs applet) for Windows 7, 8.1 and X (10).  Windows X doesn't seem to mind that the highest compatibility level is for Windows 8.1. 
    When I discover what the compatibility GUID is for Windows X, I'll add that to Compatibility.manifest.
    I provide this detail hoping that it may help someone else.
    Charles S. Cotton

  • Os 10.6.8 software update installed "new ' Java script. Safari 5.1.7 stops on startup says there's a problem How do I get rid of the Java/javascript and what version would work?

    Here's the report:
    THANKS  
    Process:         Safari [705]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.7 (6534.57.2)
    Build Info:      WebBrowser-75345702~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [123]
    Date/Time:       2013-01-10 20:31:17.053 -0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          259210 sec
    Crashes Since Last Report:           38
    Per-App Crashes Since Last Report:   35
    Anonymous UUID:                      A78B734B-10CA-4E64-8496-6B8B6E8B8E90
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Symbol not found: __ZN3JSC6JSCell11getCallDataERNS_8CallDataE
      Referenced from: /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
      Expected in: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    in /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1.7 (6534.57.2) <2208AB17-7F39-5DC1-AE9F-7946DEE3CA0B> /Applications/Safari.app/Contents/MacOS/Safari
           0x100004000 -        0x100836fe7  com.apple.Safari.framework 6534 (6534.57.2) <596F6CCF-D815-1727-8E58-8B8EE0E44753> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
           0x100b5e000 -        0x100e81fe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <99973578-D474-3664-1388-61CB47E9D6E9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x100f10000 -        0x1010cefff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0B4ABA92-C1F0-4548-A157-0CFD65561DA5> /usr/lib/libicucore.A.dylib
           0x10113d000 -        0x10114cfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x101155000 -        0x101259ff7  com.apple.PubSub 1.0.5 (65.28) <11D77223-EAAE-0199-1F99-0D28680559CE> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
           0x1012c8000 -        0x101551ff7  com.apple.security 6.1.2 (55002) <772E1B13-8271-02F8-B1FE-023592A7AED7> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x101649000 -        0x101692ff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x1016c4000 -        0x1016d5fff  SyndicationUI ??? (???) <1DBD7D2A-56A1-BDFA-4742-04B2F42FDF2D> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
           0x1016e4000 -        0x101885fe7  com.apple.WebKit 6534.57 (6534.57.2) <B99EF91E-676F-79A0-FADC-A72C1E14536E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10196f000 -        0x101b19fff  com.apple.WebKit2 7534.51 (7534.51.22) <DCE49986-D892-33DB-8B2C-1393F0CF108C> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x101c42000 -        0x101db9fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x101ed2000 -        0x102154fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x1022cc000 -        0x10248bfff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <2C39859A-043D-0EB0-D412-EC2B5714B869> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
           0x1024f7000 -        0x102575ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
           0x1025b3000 -        0x10264dfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x102676000 -        0x102737fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x102774000 -        0x1027beff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x1027e8000 -        0x102813ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
           0x10281e000 -        0x102934ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
           0x10295d000 -        0x1029b3fe7  libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x1029c1000 -        0x1029c6fff  libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x1029cb000 -        0x1029ecfe7  libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x1029f5000 -        0x1029f7fff  libRadiance.dylib ??? (???) <61631C08-60CC-D122-4832-EA59824E0025> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
           0x1029fb000 -        0x102a22ff7  libJPEG.dylib ??? (???) <472D4A31-C1F3-57FD-6453-6621C48B95BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x102a2a000 -        0x102aecfe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x102be3000 -        0x102c1dfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
           0x102c2c000 -        0x102c4dfff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
           0x102c57000 -        0x102d8cfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x102e06000 -        0x102e37fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x102e3e000 -        0x102e87fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x102e96000 -        0x102fb0fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x102fd1000 -        0x102fd4ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x102fd9000 -        0x102fdefff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x102fe3000 -        0x102fe4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x102fe9000 -        0x103009fff  com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x103013000 -        0x10407dfef  com.apple.WebCore 6534.57 (6534.57.2) <9BE3BFB2-D520-CD10-E4A1-3C2AF322A097> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8001afff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8001b000 -     0x7fff8002cff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff80505000 -     0x7fff80508ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff80572000 -     0x7fff80581fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff80588000 -     0x7fff80605fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8071e000 -     0x7fff80724ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff80c27000 -     0x7fff80c33fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff80c5b000 -     0x7fff80c9efef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff80f2c000 -     0x7fff80f62ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff80f63000 -     0x7fff8101cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff81567000 -     0x7fff81617fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8169f000 -     0x7fff816e0fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff81a30000 -     0x7fff81a77ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff81e04000 -     0x7fff81e0ffff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff81e10000 -     0x7fff81e65ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff81e82000 -     0x7fff81ed1ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff821fc000 -     0x7fff8227bfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff82506000 -     0x7fff825bbfe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff825bc000 -     0x7fff828bafff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff828bb000 -     0x7fff8290eff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff82972000 -     0x7fff8306eff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff831e1000 -     0x7fff83515fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff83516000 -     0x7fff83517ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff83518000 -     0x7fff8351eff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8351f000 -     0x7fff8359bff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8359c000 -     0x7fff835ddfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff835de000 -     0x7fff835deff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff83860000 -     0x7fff83885ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff84a84000 -     0x7fff84a99ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff84aea000 -     0x7fff84aeaff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff84af3000 -     0x7fff84c12fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84cd3000 -     0x7fff84ce5fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff84ebc000 -     0x7fff84ef7fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff84ef8000 -     0x7fff84f44fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff857c7000 -     0x7fff857ddfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff857de000 -     0x7fff857e3ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff857e4000 -     0x7fff857f3fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff857f4000 -     0x7fff857f4ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff85c15000 -     0x7fff8660fff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff86801000 -     0x7fff86891fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff868ef000 -     0x7fff86917fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff86918000 -     0x7fff86982fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff86983000 -     0x7fff8698afff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff86a28000 -     0x7fff86a70ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff86a71000 -     0x7fff86a7fff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff86a8b000 -     0x7fff86b10ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86b11000 -     0x7fff86beefff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff86c90000 -     0x7fff86d1cfef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff86ded000 -     0x7fff86e01fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff86e04000 -     0x7fff86f42fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86f43000 -     0x7fff86f43ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86ffd000 -     0x7fff86ffdff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff87025000 -     0x7fff870f9fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff870fa000 -     0x7fff870faff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8712b000 -     0x7fff8712efff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff874c2000 -     0x7fff874e5fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff874e6000 -     0x7fff874ecff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff874ed000 -     0x7fff875aafff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8762b000 -     0x7fff87636ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff87776000 -     0x7fff87777fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff877d2000 -     0x7fff87832fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87841000 -     0x7fff87843fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff87852000 -     0x7fff87856ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff87857000 -     0x7fff87a18fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87a19000 -     0x7fff87a32fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff87a33000 -     0x7fff87e76fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff87f87000 -     0x7fff87f87ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff87f88000 -     0x7fff87f93fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff88008000 -     0x7fff8801efef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff881e0000 -     0x7fff88296ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff882f8000 -     0x7fff883ddfef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff884a9000 -     0x7fff88cb3fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff88df9000 -     0x7fff88e36ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff88e67000 -     0x7fff88e7bff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff88ebc000 -     0x7fff88ed7ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff88ed8000 -     0x7fff89275fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8977d000 -     0x7fff8981dfff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.30f1
    Graphics: ATI Radeon HD 2600 Pro, ATI Radeon HD 2600 Pro, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD3200AAJS-40VWA1, 298.09 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-875
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa400000 / 3
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0xfa440000 / 5
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa430000 / 4
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa432000 / 6
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa200000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 5

    CSS:
    #navigation {margin-top: -3px;}
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How to get rid of the process of reset to factor setting?

    I have reset my iphone 4s to factory settings and its still in process from almost 10 hours,it is just showing a white round loading thing.So plz can anyone tell is everything is ok and how much time it gona take???

    Did you check your security software settings, to make sure iTunes can contact Apple during the setup?
    iTunes for Windows: Troubleshooting security software issues
    Did you try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again?
    Did you try to remove the ipsw firmware file and restore, to make iTunes download a new copy from Apple?
    Those files are located here:
    Rename, move, or delete the iOS software file (.ipsw)
    iTunes uses "ipsw" files to restore your iPod or iPhone. If those files are unusable, then try deleting them, renaming them, or moving the file to a different directory. This will cause iTunes to download a new copy of the IPSW. When a restore issue is specific to a user, it is likely due to an unusable .ipsw file. If removing the .ipsw file does not resolve a user-specific restore issue, then the issue is caused by other user-specific security software settings or iTunes preferences. Creating a new user will also cause new .ipsw restore files to be downloaded in the new user. You can find the ".ipsw" files in these locations:
    Windows 7 and Vista
    iPhone
    C:\Users\[username]\AppData\Roaming\Apple Computer\iTunes\iPhone Software Updates
    iPad
    C:\Users\[username]\AppData\Roaming\Apple Computer\iTunes\iPad Software Updates
    iPod touch
    C:\Users\[username]\AppData\Roaming\Apple Computer\iTunes\iPod Software Updates
    Note: If you don't see the AppData folder, you may need to show hidden files.
    copied from iTunes: Specific update-and-restore error messages and advanced troubleshooting

  • How can I get rid of the media key onscreen popups?

    Hey,
    I am finding the giant popup symbols for play, pause, volume, fast forwards etc. quite annoying. Is there any way to eliminate these because I use iTunes to play recordings while transcribing interviews, but I don't want the popup to appear everytime I press a media key. I've looked in keyboard settings and iTunes settings but can't find any option to hide them.
    Cheers,
    N

    I'm rrunning a Mac Mini, Snow leopard and this is with iTunes open in the background. I don't want to turn off the media key commands, just want the onscreen popup to go away.
    Cheers,
    N

  • Can someone tell me how to how to get rid of powered by kong games popup that appears each time I use my firefox browser.this started about 1 or 2 weeks ago.Tx

    The above mentioned popups that include the message
    just suddenly appeared recently as above though I do not recall adding any programs recently. I may have accidentally restored a program or two that had been sitting in my recycle bin, though i never got these popups before and have had my current pc for slightly over 3 years.These popups always say brought to you by kong games and typically read things" like call computer support 1-855-465-3840" or " 19 Epic Selfie Fails" and lead to websites such as suchhappy.com".Thank you

    Try these steps:
    * [[Refresh Firefox - reset add-ons and settings]]
    * [[Troubleshoot Firefox issues caused by malware]]

  • How do I get rid of survey popups

    I am using windows 7. For the last few weeks, almost every time I click on a website I get a survey popup. I've tried all the normal ways to get rid of them, but still they popup. I've downloaded Spybot and Malwarebytes, and still no good. How can I stop them?

    Because you are answering a question with another question. As most know, you are just fishing for an endless supply of things that the original writer probably doesn't know anyway. You are not being helpful, you are just stringing out the conversation. Want to know how irritating this can be? Just watch politicians doing EXACTLY that when asked a question on television! The endless NOT answering makes for time wasting. You don't know, so stop pretending. There is a commonality about this particular irritant which allows it to pick up the name from any site visited and insert it into it's psuedo 'Survey'. I don't have the answer any more than you do, but i'm not pretending that I have any solution - I don't.. Neither do you.

  • Deployment: How to get rid of certificate import pop up in Reader XI

    I want to deploy XI to our machines, but before I do so, I have to be sure, there are no pop ups confusing the users.
    There is a pop up asking me to import older certificates and I can select between "Import" and "Default" - which is weird enough.
    How do I suppress this pop up?
    I searched in forum and got a hint about bAskBeforeInstalling but after I looked into this a little more, someone from Adobe Stuff said, this has nothing to do with the pop up.
    Also I couldn't find an easy option in the customization wizard.
    So: how do I suppress the pop up?

    I'm on the same road, trying to get rid of the "Adobe Reader Security" popup.
    bAskBeforeInstalling and bLoadSettingsFromURL couldn't hide the popup for me either.
    What does work is to rename or copy the addressbook.acrodata file, located in %appdata%\Adobe\Acrobat\10.0\Security. But that has to be done for all userprofiles on all machine imho. (copy from the 10.0 to the 11.0 folder, before opening Reader XI).
    The Files and Folder feature from the Customization wizard can do file operations, but probably not in all userprofiles?
    We need to script this, because the Adobe Customization WIzard cannot help us out here right?

  • How to get rid of "Certificate cannot be trusted" msg with Radius

    I am quite new to using RADIUS to have people log in to our wireless lan with their OD username/pass. When I first tried, everyone got a "The certificate cannot be trusted..." message after supplying u/p on login. Click Continue, get IP-address. I thought that if I bought a Verisign certificate, that message would go away on the clients, but it didn't. Hwo can I set it up so that it goes away? The explanation in the message box is either "...because the root certificate is missing" or else "... because there are no explisit trust settings".
    Lars

    I'm on the same road, trying to get rid of the "Adobe Reader Security" popup.
    bAskBeforeInstalling and bLoadSettingsFromURL couldn't hide the popup for me either.
    What does work is to rename or copy the addressbook.acrodata file, located in %appdata%\Adobe\Acrobat\10.0\Security. But that has to be done for all userprofiles on all machine imho. (copy from the 10.0 to the 11.0 folder, before opening Reader XI).
    The Files and Folder feature from the Customization wizard can do file operations, but probably not in all userprofiles?
    We need to script this, because the Adobe Customization WIzard cannot help us out here right?

  • Getting rid of old addresses...

    How do I get rid of old email addresses that popup when starting to type a name in the address line. Every time one of these old addresses pops up, it's from the "auto complete" feature even though the address is no longer in my Contacts List.

    Wow, that works great. The list looks like it has everyone I've ever emailed for the past 2 years. I guess the only ones I really care about deleting are people I regularly email that have changed their addresses from whatever to whatever.
    Thanks for the tip!!!

  • Javascript console chinese signs

    hey all,
    i develop application with 3d scenes in pdf. i updated the adobe reader to the newest one on yesterday and if i now get any errors on the javascript console they look like chinese oder japanese signs.
    like this
    anyone an idea?

    hey ok,
    so first: i tested it with the two consoles (the javascript console and the reader console) and both do it so.
    to the second: i wilful made some errors in my code, just to show you what the console output is... sure if i make no mistakes in my code no signs will come. the curious thing is that the code, which cause the error, will be displayed in the reader 9 as a readable text and in the reader x in such chinese signs.

Maybe you are looking for