Cant get OCR scanned files to open in Appleworks.

Hey all you smart cookies out there, I have a friend who has a HP 1350 all in one on an older G4 system, (10.4.7) the unit works fine, except that whenever a document is scanned into the OCR software (readiris9) and told to open in Appleworks, the document is scanned, readiris opens and converts the document into text, loads appleworks then nothing happens, I have tried telling readiris to create the file to the system rather then opening with AW directly but AW refuses to open it, MSword however has no issues.
so is it an incompatability between readiris and AW or do i need a plugin or something?
Thanks for your help

Hello,
Hmm.. try these tips... if that doesn't work, please let us
know and give us your OS.
Sami
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=622&threadid =1219281&highlight_key=y&keyword1=illustrator

Similar Messages

  • I can't get my pdf files to open

    I cant get my pdf files to open and my hp device manager sttes it is not support so I cant use my printer.

    putterhole12 wrote:
    (1)
    I cant get my pdf files to open
    (2)
    my hp device manager sttes it is not support so I cant use my printer.
    Issues (1) and (2) are not likely to be connected.
    (1) What happens when you double-click on a PDF file?
    (2) What is the exact error message?
    Additional question: What version of Mac OS X are you using? v10.7 (Lion) by any chance?

  • Getting Message as "File not open", when I ran background Job

    Hi,
    I developed a Migration Program, Which reads the data from Application serever and procced with further process in back ground mode.
    Same program is workind fine in Development System in Back ground mode (SY-BATCH = 'X', Scheduled a batch Job). So I transported to Quality system.
    Now When I run the program in background mode (SY-BATCH = 'X', Scheduled a batch Job), getting Message as "File is not Open" at Quality system. So I debugged the Batch job  through "JDBG", and found file opening and reading the content sucessfully.
    But its not working without debugging mode and getting message as "File not open".
    Is there any Authorizations required for background mode (without debugging).
    So can you please help me on this how to solve this issue.

    Try this code:
    DATA: PATH_NAME(80) TYPE C,
            LV_FILENAME TYPE STRING.
      DATA: LW_XSTRING         TYPE XSTRING,
            X_LEN             TYPE I.
      DATA: FILE_AUTH_ERR TYPE REF TO CX_SY_FILE_AUTHORITY,
            FILE_OPEN_ERR TYPE REF TO CX_SY_FILE_OPEN,
            FILE_OPEN_MODE_ERR TYPE REF TO CX_SY_FILE_OPEN_MODE,
            FILE_CLOSE_ERR TYPE REF TO CX_SY_FILE_CLOSE,
            FILE_CONVERSION_ERR TYPE REF TO CX_SY_CONVERSION_CODEPAGE,
            FILE_TOO_MANY_ERR TYPE REF TO CX_SY_TOO_MANY_FILES,
            MESS TYPE STRING,
            W_TEXT TYPE STRING.
      DATA: L_RC TYPE INT4.
    concatenate pathname lv_filename into lv_filename.
    TRY.
          OPEN DATASET LV_FILENAME FOR INPUT IN BINARY MODE MESSAGE MESS.
        CATCH CX_SY_FILE_OPEN_MODE INTO FILE_OPEN_MODE_ERR.
          W_TEXT = FILE_OPEN_MODE_ERR->GET_TEXT( ).
          L_RC = 1.
        CATCH CX_SY_FILE_AUTHORITY INTO FILE_AUTH_ERR.
          W_TEXT = FILE_AUTH_ERR->GET_TEXT( ).
          L_RC = 2.
        CATCH CX_SY_CONVERSION_CODEPAGE INTO FILE_CONVERSION_ERR.
          L_RC = 3.
          W_TEXT = FILE_CONVERSION_ERR->GET_TEXT( ).
        CATCH CX_SY_TOO_MANY_FILES INTO FILE_TOO_MANY_ERR.
          L_RC = 4.
          W_TEXT = FILE_TOO_MANY_ERR->GET_TEXT( ).
        CATCH CX_SY_FILE_OPEN INTO FILE_OPEN_ERR.  "File already open
          L_RC = 5.
          W_TEXT = FILE_OPEN_ERR->GET_TEXT( ).
      ENDTRY.
      IF L_RC = 0.
        L_RC = SY-SUBRC.
      ENDIF.
      IF L_RC <> 0 OR SY-SUBRC NE 0.
    Issue Error message in open file.
       CONCATENATE MESS 'Open dataset failed'  w_text INTO MESS SEPARATED BY SPACE.
       message Exx(yyy) with mess.
          ELSE.        "file exists and can be opened
      ENDIF.

  • How do i get my mp3 file to open in garageband?

    how do i get my mp3 file to open in garageband?

    PsychSlinger wrote:
    how do i get import my mp3 file to open in garageband?
    http://www.bulletsandbones.com/GB/GBFAQ.html#importaudio
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Just downloaded latest updates to Camera Raw for use with my new Sony RX100 M3 but still can't get the RAW files to open. Any suggestions?

    Just downloaded latest updates to Camera Raw for use with my new Sony RX100 M3 but still can't get the RAW files to open. Any suggestions?

    Never mind, I finally got it working, thanks!

  • Cant get list of files from a folder (even though the folder and files are created with the same app)

    Ok so each character rolled with my app gets saved as an html file in a folder i create on the sdcard called RpgApp
    the code to do this is 
    private async Task saveToHtmlCharacter(string name)
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder sdcard = (await externalDevices.GetFoldersAsync()).FirstOrDefault(); //Windows.Storage.ApplicationData.Current.LocalFolder;
    var dataFolder = await sdcard.CreateFolderAsync("RpgApp",
    CreationCollisionOption.OpenIfExists);
    var file = await dataFolder.CreateFileAsync(name+".html",
    CreationCollisionOption.ReplaceExisting);
    using (StreamWriter writer = new StreamWriter(await file.OpenStreamForWriteAsync()))
    writer.WriteLine("<html><head><title>Character File for " + z.charNameFirst + " " + z.charNameSecond + "</title></head><body>");
    //trimed for the post
    now this as i say works perfectly and i can confirm that the files show up in the "RpgApp"folder
    now the next step is to have the app read the names of each of those html files and create a seperate button for each one named for the filename and with the filename as content (later i will link them up to load the html file they are named for in a webbrowser
    panal)
    here is the code that *should* do that
    private async Task readFiles()
    z.test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    IReadOnlyList<StorageFile> fileList = await folder.GetFilesAsync();
    //z.test.Add("dummy");
    foreach (StorageFile file in fileList)
    z.test.Add(file.Name);
    public async void buttonTest()
    await readFiles();
    CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher;
    await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    foreach (string name in z.test)
    Button button1 = new Button();
    button1.Height = 75;
    button1.Content = name;
    button1.Name = name;
    testStackPanal.Children.Add(button1);
    now i say should as what i get is an error of "A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.ni.dll" (2 of them in fact one after another)
    more detailed error is at http://pastebin.com/3hBaZLQ9
    now i went through checking line after line to find the error and line that causes it is:
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    in the readFiles method
    i checked to make sure the case is right etc and its spot on, that IS the folder name, and remember my app creates that folder and creates the files that are inside that folder (and only files my app creates are in that folder) so it should have access
    im 100% stuck its taken me all day to get the files to save and now i cant get them to list correctly
    I have tested the button creation function with fake list data and that worked fine, as i say the error is when i tell it to look at the folder it created
    all help most greatfully recieved

    this was actually solved for me on another forum thread 
    async Task<bool> continueToReadAllFiles(StorageFolder folder)
    if (folder == null)
    return false;
    if (folder.Name.Equals("RpgApp", StringComparison.CurrentCultureIgnoreCase))
    var files = await folder.GetFilesAsync();
    foreach (var file in files)
    test.Add(file.Name);
    return false;
    var folders = await folder.GetFoldersAsync();
    foreach (var child in folders)
    if (!await continueToReadAllFiles(child))
    return false;
    return true;
    public async void buttonTest()
    test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    var folders = await externalDevices.GetFoldersAsync();
    foreach (var folder in folders)
    if (!await continueToReadAllFiles(folder))
    break;
    //.... commented out
    ...now i say solved this is more a workaround...but it works.
    I would love to know why we cant just scan the RpgApp folder instead of having to scan the whole dc card and disregard all thats not in the RpgApp folder

  • I cant get any pop ups to open? i have allowed sites and still cant get anything, so turned off and still cant enlarge pictures etc thru a pop window

    i have firefox version 3.6.10, and until about a week ago, i had no problems clicking on pictures (example: on ebay) to enlarge them in a new pop window. i have tried disabling the pop up blocker completely, even though i had ebay as an "allow" site on my pop up blocker when it was enabled.
    cant get any pop up to go through. in the lower left hand corner of the window, when i click on a link that should open a pop up window, all it shows is "javascript:;" and nothing happens
    i have updated to the newest version of java and deleted older version.. still having issues

    Ouch, tough spot, but offhand I'd say some memory may have gone bad, or maybe just needs re-seating after all this time.
    Not much you can do, but try this anyway...
    PRAM reset, CMD+Option+p+r...
    http://support.apple.com/kb/ht1379
    In fact, do 3 in a row, takes a bit of time.

  • Suddenly... I can't get my DNG files to open from LR5 to CS6.  What to do?

    I am running Windows 8.  As of this morning, I can't get my files to open for external editing from LR5 to CS6.  No extenal editing at all actually.  Have checked forums and it's not addressed.

    You need Lightroom 5.3 or newer in order to work with the NEF files. You can convert your files to DNG and use them with what you have now. Your choice. In order to have Lightroom 5.3 (might as well go to 5.7) you will have to purchase an upgrade.

  • Cant get Safari or Firefox to open youtube website anyone else having this problem?

    I can't get safari or firefox to open youtube website, keeps saying server not available and it has been doing it for a month. Anyone having this problem?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    You can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue you can open Firefox in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • I cant get the firefox browser to open

    I'll preface this by stating I have looked at several similar issues and none of the common fixes worked. My problem is that my Firefox browser will not open, PERIOD. All I get is the loading icon over my cursor, and then it simply goes away and nothing happens. I click on internet explorer (which I hate) and it opens immediately. I have tried the following suggested solutions. I restarted my computer, didn't work. I uninstalled and reinstalled Firefox, didn't work. I deleted processes from my task manager, didn't work. I started Firefox in safe mode, it wont open and thus didn't work. I am honestly out of ideas. This problem started occurring the evening of December 10, 2014. I am using the most recent version of Firefox. My computer is a Sony Vaio with windows 7. I have Norton as my anti-virus software (don't know if that info helps or not). In case it wasn't obvious, I cant open my Firefox browser, so any solutions that require me to open Firefox as a first step, will not work. Any help would be appreciated, but please do not suggest that I do one of the things I have already tried, unless there is a common step that most people miss when doing so. Thank you and I apologize if this comes across as rude, I'm just beyond frustrated right now.

    hello hunterm322, since this can sometimes be caused by malware active on a system, please run a scan with different security tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes], [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] & [http://www.microsoft.com/security/scanner/default.aspx microsoft safety scanner].
    [[Troubleshoot Firefox issues caused by malware]]

  • How can I get an RTF file to open properly in MS Word?

    I'm using Coldfusion 8 and trying get it to export to Microsoft Word an RTF file  that was also created in Word, and is stored on the server. The problem is that when Word opens from the browser, it displays the RTF code for the document as if I'd opened the file in a text editor. The extension is ".rtf", and I've tried using ".doc" and ".docx" but nothing works. And even though Word opens it with an rtf extension, if I do a "Save As", it wants to save the file as an .htm file. I've also tried changing the content-type to "application/msword" but this didn't work. Also if I use OpenOffice instead of MS Word it still doesn't work. My code is below, if anyone could tell me what I'm doing wrong it would be very appreciated.
    <cfset formFile = "test.rtf">
    <cfset pathToRTF =  GetDirectoryFromPath(GetCurrentTemplatePath()) & formFile />
        <!---<cfset rtfForm = FileRead(pathToRTF) />--->
        <cffile
                action="read"
                file="#pathToRTF#"
                variable="rtfForm"
                >
    <cfcontent type="application/rtf">
    <cfheader name="Content-Type" value="application/rtf">
    <CFHEADER NAME="Content-Disposition" VALUE="filename=test.rtf">
    <cfoutput>
        #rtfForm#
    </cfoutput>

    What kind of local files are you trying to open and what kind of content is on the pages?
    Are that files that you've saved from the internet?

  • How do I get all my files to open up in Cs5 not Cs3? File plugin problem

    Keep getting error messages about plug-ins when trying to open up an InDesign file that wants to open up in Cs3 When I thought it should be opened up with Cs5.  It says that the worldready.rpln, dynamicdocuments.rpln, and conditonaltext.rpln are missing.  When I say just ignore then it gives me a really long list of things it is missing.  It says things like assignments.rpln, text.rpln, spread.rpln, master page.rpln, image.rpln, text attribbutes.rpn, generic page items.rpn.  I can't seem to change what opens the program either. I got the programs to open up in Cs5 if I went to open and then browse but then it couldn't recognize any of my fonts and put them to defaults.  I just had reinstalled everything to a new computer after my old computer crashed and I wondered if perhaps that had did something. Are there some type of setttings or plugs in I need to download or change?

    To change the program that .indd files default to when opened in OSX, right click on the .indd file > Open With > Other.
    Then navigate to the version of InDesign that you want to open them with (I have CS6 installed but its the same for CS5). Make sure you have "Always Open With" selected.

  • I cannot get my pdf files to open can you help me with my problem?

    My pdf files will not open can you help me?

    I don't know if we can help you. This is almost certainly the wrong forum, but perhaps we can help you there too. Let's start with some questions
    1. What software (app) are you using to try to open the PDF files, including version number if you know it?
    2. If you are using a browser, what is it?
    3. Are you on Mac or Windows?
    4. Is the PDF file on your hard drive (own computer), on a web site, or somewhere else?
    5. What EXACTLY happens when you try to open the PDF? If you get a message, what is the message IN FULL?
    Please answer all questions carefully.

  • I cant get the tunes store to open,can anyone help me?

    I can get Itunes to open,but when I try to get to the store it freezes and will not open,can anyone help me,,I would appreciate it greatly..

    It was copied over when you synced your iPod. Ignore it, or you can manually put music on your iPod via playlist. The following discusses iPod manual mode.
    http://docs.info.apple.com/article.html?artnum=61148
    Apple should not allow 'Music Video' smart playlist to be copied to iPod Nano's. It throws a wrench into the mix. ;-D
    Apple, anyone home!!

  • File renaming using lightroom3....  cant get a unique file number?

    I am new to lightroom 3 and i'm in the process of building a catalog of all my photos . To start of on the right foot i thought i'd implement a numbering system with a unique number starting with #00001 followed by date.    I have tried various ways to renumber the pictures in my catalog using the library menu 'rename' etc..    I select a group of files from a folder and then rename using the 'custom feature' from the 'library'.    No matter which way i edit the custom feature, the numbering begins with  #000001 +(date behind) for each folder that i'm renaming from.  I don't want different pictures beginning with #00001 in each folder.   I want all pictures to have unique numbers starting with #000001 ever onwards.      Would be grateful if someone knows the trick!

    If you and a sequence number that will start from 1 and will increment itself automatically spanning multiple import sessions, you need the following file name template:
    <image#>_<date(date_format)>
    With this template if you import, say, 100 images in the first batch, they will be numbered from 1 to 100. The next day imports will contine from 101 upwards.
    Note1: This variable is limited to 5 characters, so it will only go from 00001 to 99999. You cannot get 0000001 (six numbers).
    Note2: This image# is bugged in LR 3.0, so you'll have to wait for LR 3.1 to get corrected or use LR 2.7 meanwhile.
    If you want to simply apply a new file name scheme to all files in your catalog, not caring about future imports, use the following template:
    <sequence#>_<date(date_format)>
    and set the starting number to 1 in the Rename dialog.

Maybe you are looking for

  • How to view broadcast tv on Touchsmart with internal tuner

    I would like to watch digital over-the-air tv on my Touchsmart420 using the built-in ATSC tuner. I have connected a tv antenna to the computer. In Media Center I get a message saying that no tv signal is detected. Do I need a special kind of tv anten

  • Photoshop text opened in InDesign looks aweful

    I must being doing something very wrong: creating a book cover (using iPad display dimensions) in Photoshop, adding Monotype Corsiva title/author text onto an artist's .jpeg (150 ppi). It looks fine in Photoshop but when I save and place into InDesig

  • FTP Adapter : java.lang.NullPointerException

    Hi, I am getting a java.lang.NullPointerException when I try to use the FTP Adapter. The message monitor for the Adapter shows this: 2006-02-27 16:48:57 Success File adapter receiver channel OMAF_PO_FTPS_Rcvr: start processing: party " ", service "OM

  • How Do I Include all my Music and Videos?

    I use a mid 2012 Mac Pro; run Mavericks; iTunes 12.1.2.27.  I have some of my music and videos on iTunes; I have other music and videos playing on VLC; and I some videos on some other player.  How can I play all my videos and all my music on iTunes?

  • Why black and white photo changed back color after exported?

    The photo I took shows up in black and white but after I exported the photo, none are black and white.  Why is that? I can see it as black and white while on the iphone.