Non-hex character in a hex string error message

Hi everyone,
I encountered n error message in Illustrator "Acrobat PDF File Format is having difficulties. Non-hex character in a hex string." when trying to open a particular file.
File was originally created on a Windows 7 PC, tried opening file on Mac OS 10.7.5, same Illustrator version 18. Also tried opening in PDF, Distiller, but didn't help.
Did tried to change Illustrator Preferences in both Windows and Mac, following the steps in the TecNote:
http://kb2.adobe.com/cps/500/cpsid_50031.html
When trying to open the file from the File > Open menu, with the keys held down, it did not open a blank file window, neither did it created a duplicate copy in the Finder where the file is located.
The file in question had about 15 artboards,  a few embedded images, approx 2.6MB size.
Any suggestions/assistance would be greatly appreciated.
Thank you.

Hi Monika,
The file was .ai file, as mentioned earlier, was created in Illustrator ver 18.
Not emailed, stored in the folder, on the Windows PC, not a server. Last saved few days ago, tried to reopen the file from the same computer, but could no longer opened.
No, Illustrator did not crash, just the error message "Acrobat PDF File Format is having difficulties. Non-hex character in a hex string."

Similar Messages

  • Non-hex character in a hex string

    My Illustrator file will not open in Illustrator and I get the "non-hex character in a hex string" window whenever I try to open it. It does open in Acrobat but nothing else. I can't even save it as a pdf file..
    Is there any way I can get around that or fix it?

    karam,
    The first thing to try is to use File>Place in a new document and see how much, if anything, is saved this way.
    The next thing to try is to repair the file code, which is more difficult. The basics are told in this TechNote, the actual recovery consists of changing/adding/deleting code.
    http://kb2.adobe.com/cps/500/cpsid_50031.html

  • Non PO invoices sent for Approval - getting error message - Tax Jurisdictio

    Hi Experts,
    Our clients have just upgraded from SAP 4.6C to ECC 6.0 and when the Non -PO invoices are sent for approval the user is getting the below error message.
    'Specify a tax jurisdiction key' - Message no. F5566
    Could any one suggest what the reson could be.
    Answers would be suitably rewarded.
    Thanks in advance,
    Manish Singhi
    E- [email protected]

    Hi,
    Can anyone suggest on this.
    Thanks,
    Manish

  • I can't install itunes 10.7 on windows.  Schema.strings error message

    I cannot install itunes 10.7.  All I get is an error message which reads
    Error writing to file: C:\Programme Files\Common Files\Apple\Mobile Device Support\SyncServices\Schemas\Bookmarks.synchschema\Contents\Resources\fi.lproj\ Schema.strings Verify you have access to that directory.
    The schema.strings file is in the location required but I still can't install.

    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • How to Show String Error Message in SAP status bar?

    Hello All,
    I am doing some custom check in SBO_SP_TransactionNotification and Setting
       SET @error = -1
       SET @error_message='Duplicate Web Order ID'
       select @error,  @error_message 
    But in SAP interface it is only showing -1 in status bar, I could not show error_message in status bar. How it could be achieved.
    Thanks in advance

    Hi
    try this
    SET @error = 1
    SET @error_message='Duplicate Web Order ID'
    select @error, @error_message
    Regards
    Arun

  • Non-hex character in hex string after upgrade to Yosemite

    Hi,
    When I try to open some of my files I get an error: "Acrobat PDF File Format is having difficulties. Non-hex character in a hex string". I could open the files before.
    The only thing I've done since I opened the file last was to upgrade to Yosemite. The error occurs on both my Mac Pro (late 2013) and Mac Book Pro with Yosemite. Unfortunately, I have no access to a Mac with Mavericks and CS6 but I will try to fix one to verify that the file works there.
    Affected files  (Created in Illustrator CS6 on Mavericks):
    services.ai
    visual guidelines v.0.4.pdf
    visual guidelines.ai
    Tested steps:
    Open previous versions of the same file from our repository
    Update Illustrator CS6 to latest version
    Download Illustrator CC
    Tried to Place the file into another file (same error)
    Tried to repair file Enable content recovery mode | Illustrator CS2-CS5

    Hi svepdesigncenter,
    How you are accessing those files from your repository?
    There might be chances of getting files corrupted when transferring.
    File may have been sent as ascii when it should have been sent as binary or vice versa.
    In 99% of transfers it's ALWAYS safest to zip an AI or eps file before sending it anywhere.
    Regards,
    Sumit Singh

  • Replace hex character in a string with another hex character

    Hi Guys,
    Heres a problem scenario, hex character 92 looks very much like hex character 27 (apostrophe).
    I need to write a program that can replace all hex character 92 to hex 27 in a string.
    Being a novice on the regular expressions, I would appreciate if somebody can show
    the exact syntax to to perform this replacement.
    Many Thanks
    -Anil

    I don't think you need to use regex to do this:
    String s = something();
    char a = 0x27;
    char b = 0x92;
    s.replace(a,b);
    And don't forget that since Strings are immutable you need:
    s = s.replace(a,b);to do anything useful.

  • Wrong character encoding in error messages

    The Java compiler can be adjusted to source file encoding with the option javac -encoding ...
    The Java runtime can be adjusted to terminal encoding with java -Dfile.encoding=...
    While this appears somehow inconsistent, it works and can be used e.g. when running the tools from Cygwin (the POSIX layer on Windows) which uses UTF-8 by default, while Java, following the Windows mechanism, uses some other character encoding by default (this works more seemlessly on Unix/Linux, by the way).
    Now if I compile UTF-8 source with non-ASCII characters, and there is an error message related to them, the error message printed to the console will not be UTF-8 encoded, resulting in mangled text output.
    (Arguably, source and terminal encoding could be different, but then there is no option available to the compiler to adjust this;
    it does not accept -Dfile.encoding=....)
    Example: Error message looks like this:
    FM.java:1: error: class, interface, or enum expected
    b▒h
    While the string is actually "bäh" in the source.
    This is a bug. Any proper place to actually report a bug?
    Edited by: 994195 on 15-Mar-2013 09:42

    I'll ignore you just blatantly assuming it is a bug because you say so, you did not think to type "java report bug" into Google?

  • HT203128 my itunes keeps crashing with an error message.

    both my windows and itunes are up-to-date. i've checked all the previously suggested methods to solve this issue (completely remove - reinstall itunes, removing QT, etc.) but none helped. any idea? Thanks.
    the error message is usually something like this:
    Problem Event Name:
    APPCRASH
      Application Name:
    iTunes.exe
      Application Version:
    12.1.2.27
      Application Timestamp:
    55236b62
      Fault Module Name:
    KERNELBASE.dll
      Fault Module Version:
    6.3.9600.17415
      Fault Module Timestamp:
    54505737
      Exception Code:
    80000003
      Exception Offset:
    00000000000de002
      OS Version:
    6.3.9600.2.0.0.768.101
      Locale ID:
    1033

    Hello pkiss777,
    I'm sorry to hear you are having this issue with iTunes. If you continue to have issues with iTunes crashing or hanging, you may find the troubleshooting steps outlined in the following article helpful:
    Fix unexpected quits or launch issues in iTunes for Windows - Apple Support
    Sincerely,
    - Brenden

  • Artwork Not Loading - Error Message in Console

    I am having trouble loading Album Artwork. I have tried fetching it via Advanced option in ITUNES both logged in and logged out of the STORE.
    I noticed following error message in console:
    22/10/2009 20:44:20 [0x0-0x5a05a].com.apple.iTunes[697] Thu Oct 22 20:44:20 Tommy-Gargans-Computer.local iTunes[697] <Error>: doClip: empty path.
    Presume this is significant but I am afraid I don't understand it. Any help appreciated.
    Thanks

    I think I have read somewhere this is a "non issue" but I still get the error message in my console messages. Wish they'd fix that. It's hard enough to diagnose problems using console without having messages appear that don't mean anything.

  • Error Message in console  re: com.apple.AddressBook.abd

    I keep getting this error message:
    1/6/10 4:19:41 AM com.apple.launchd.peruser.501[352] (com.apple.AddressBook.abd) The following job tried to hijack the service "com.apple.AddressBook.abd" from this job: [0x0-0x16a16a].com.apple.AddressBook.abd
    Any ideas what may be causing it and how I stop it? I get it about every 10 mins.

    I think I have read somewhere this is a "non issue" but I still get the error message in my console messages. Wish they'd fix that. It's hard enough to diagnose problems using console without having messages appear that don't mean anything.

  • Cmd.-Shift-3 & -4 error message problem

    After having worked all right forever, suddenly when I try to do a screen capture on my MacBook, an error message window is generated which says:
    "Screen capture failed
    The attempt to take a screen capture has failed.
    The error is: 'Unable to create type string.'"
    I have tried numerous things (DiskWarrior, logging out, restarting) to no avail. Anybody know what to do to correct this on a MacBook (early 2009) with Leopard 10.5.8.

    I checked the preference files using Terminal as you suggested, and nothing was reported as corrupted.
    The application "Grab" does work (of which I was unaware or at least about which I'd forgotten!) without apparent problems.
    I deleted the Finder and ScreenCapture plist files and emptied the trash to no avail--trying cmd-shift-4 afterwards still produced the identical error message window.
    I've not yet tried Tony's suggestion of moving all the preference files to an untitled folder and restarting, as I'm in the middle of some things in other programs which I don't yet want to interrupt, but I'll try that next.
    Another thought which just occurred to me: I seem to remember browing some place where a program was downloadable which allowed one to change the format of screen capture files from png files to other formats (pict, jpeg, tiff, etc.) I don't recall either downloading or doing this, or now even the name of the program, but could some program like that have messed up the screen capture function to produce this type of "string" error message?

  • Error message with datagrids

    I have a few datagrids some of which have updateable columns.
    I always receive the error message below (actually MANY times) when
    I click on the datagrid (updateable or non-updateable). After I
    "Dismiss all" error messages everything works normally again until
    i start all over again. I can't figure out the reason so if
    somebody knows, please share with me. Thanks!
    TypeError: Error #1034: Type Coercion failed: cannot convert
    mx.managers::DragManagerImpl@1f17e461 to mx.managers.IDragManager.
    at mx.managers::DragManager$/get
    impl()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager.as:15 2]
    at mx.managers::DragManager$/get
    isDragging()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager .as:187]
    at
    mx.controls.listClasses::ListBase/dragScroll()[C:\autobuild\3.2.0\frameworks\projects\fra mework\src\mx\controls\listClasses\ListBase.as:7154]
    at Function/
    http://adobe.com/AS3/2006/builtin::apply()
    at <anonymous>()
    at SetIntervalTimer/onTimer()
    at flash.utils::Timer/_timerDispatch()
    at flash.utils::Timer/tick()

    "taneojala" <[email protected]> wrote in
    message
    news:gmcjnf$m5g$[email protected]..
    > Ok, I can post the code tomorrow. Anyway, to me it seems
    like a very basic
    > thing. Datasource is an XML object. Grids are in
    separate modules (all
    > acting
    > the same way). Modules are loaded into separate tabs.
    http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf
    Q8

  • Non-hex character in hex string

    I'm getting this messsage when I try to open an Illustrator file:
    "Acrobat PDF file format is having difficulties. Non-hex character in a string."
    I', using illustrator CS6 and I need my file opened..!

    Nobody can know without seeing the file and having more info about your system. Does the file open in Acroibat/ Adobe Reader for instance?
    Mylenium

  • Identify Non English Character in a String

    All,
    We have a requirement to Identify the Non English Characters from the User Key In data and return an error message saying only valid English, Numeric and some special characters are allowed.
    For Example, If the User enters data like "This is a Test data" then the return value should be true. or if he enters something like "My Native Language is inglés" then it should return false. Similarly any Chinese, russian or japansese character entryies should also return false.
    How can we achieve this?
    Thanks,
    Nagarajan.

    Hi Nagarajan,
    You could use Unicode character blocks or simply craft a regular expression that contains all the characters you need. The latter is easy to understand and gives you full control over which characters you want to allow. E.g. I assume you might want something like this:
    if(!"This is a proper input string".matches("[\\s\\w\\p{Punct}]+")) {
      // Issue error message and re-get input string
    The String method matches() takes a regular expression as input parameter. If you haven't dealt with regular expressions before, check out the Java API help for class java.util.regex.Pattern. Here's a short breakdown of the pattern I used:
    <ol>
    <li>The square brackets [] enclose a list of allowed characters; here you can explicitly list all allowed characters.</li>
    <li>You can specify ranges like a-z as a character class, list individual characters like ;:| or utilize predefined character classes (\s for any whitespace character, \w for all letters a-z and A-Z, underscore and 0-9 and the posix class \p for a list of punctuation symbols). For a complete list check Java API help on java.util.regex.Pattern.
    <li>The + at the end indicates that the characters listed can occur once or more.</li>
    </ol>
    There's other ways to achieve what you want, but I think this might be an easy way to start with.
    Cheers, harald

Maybe you are looking for

  • Exchange Sync works for Mail, Calendar, Contacts - but not for Notes

    Hi, I am using an iPhone 3G (16GB). The sync with my account on an Exchange Server (I think 2003) is working just great. Mail, Calendar, Contacts are all in snyc, but there seems to be no way of synchronising the Notes between the iPhone native app a

  • Iam getting error while running the xml report

    Hi, I designed the template by using subtemplate.If I run the concurrent program I am getting error like Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are : American_America.UTF8 Thanks, Bhuvana.

  • Black screen after login, MacBook Pro - 15-inch, Mid 2010

    Processor  2.4 GHz Intel Core i5 Memory  4 GB 1067 MHz DDR3 Graphics  NVIDIA GeForce GT 330M 256 MB Serial Number  W80400EPAGX Software  OS X 10.8 (12A269) (matte screen) I have read all the other threads and my case is the sceen stays black I cannot

  • Double Band Wireless adapter

    Guys., Do I need a Double Band Wireless adapter in order to see or connect to 5GHz broadcasting? Cause i have a WRT610n but I,m not able to see 5ghZ broadcasting, only 2.4ghz, and the wireless card in my laptop is internal and is only g/and auto.....

  • Find difference between two vectors ?

    Hi, I have two vectors, the first contains: v1.add("1"); v1.add("2"); the second: v2.add("1"); Now I want to print out the difference between both. Does anybody have en idea ? Regards Micha