Text not found in CS and CS4... (updated)

I just received a file (a flyer design) that I wanted to translate into a different language using the same fonts and basic design elements than the original one... So I just wanted to rewrite and maybe size the original texts using the same settings and fonts as the original version.
However, Illustrator CS did not recognize the text as text, but instead, shows each letter in the text as a separate object. (At the file name on the top, it says "converted")
I checked with CS4 and it is still the same case: no text recognized and file name on top says "converted"... I'm just downloading the trial CS5 to see if it is a compatibility issue, but in the meantime, I would like someone to help me and tell me if I am on the right track here...
Thank you...
Update... The same in CS5 as well, so it is not a compatibility issue... Is it possible that they used fonts that are not present in my system?... Again> Illustrator does not recognize text as text, so I cannot edit it using the keyboard... And I dont want to mess with the letters one by one...

One of them is .ai.ps (postscript) the other one is an .ai file...
I actually did some research in these topics and am now thinking that the texts were outlined so I would have to ask the guys who created the original version to send me a "text editable" one... Could that be my answer? I'm pretty green to this thing..
On the other hand, CS5 still puts (Converted) next to the file name on the top... No error messages when opening the files...

Similar Messages

  • I have Windows 8 on a Dell laptop, i upgraded to 8.1 When i download iTunes, when i click finish, awindow pops up that says," Application support not found, uninstall iTunes and download again,Error 2" After 3times,it still says same thing.

    Hello Community, I hope ya'll can help me. I have a Dell Laptop with a 32-bit Operating System, running Windows 8 with Media Center. I Upgraded to Windows 8.1 recently. Some of my Apps I had with Win. 8 were not compatible with 8.1. This next is my problem, When I install iTunes everything downloads fine until I click finish. @ windows pop up, 1 after the other. The 1st one says, " Application Apple Support not found, Uninstall iTunes and try download again. "  Then a second window says, " Error 2 ",  "The iTunes Application cannot run without the Apple Support ...."  What is this "Error 2" and is there a fix for this? I appreciate everyones knowledge in helping me come to a solution. as I aint no hi-tech redneck!    Thank you,  Bob Bryan

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it, which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if one component, such as Apple Application Support, won't install normally.
    tt2

  • Node text not found in SPRO

    Hi All,
    In SPRO transaction Time Management-->Web Applications->leave request(new)-> node text not found
    I am not able to find all the three subnodes under the node leave request (new)
    It is displayed as node text not found .whenever we execute these nodes it gives out an error as "there are no executable transactions assigned to this node".
    These nodes are available in the development server but not available on test server.we have already activated the BC sets through SCPR20 and found the activation log successful for all EA-IMG, EA-AKH,EA-MENU.
    Also activated the switch EA-HR.and ours is not an upgraded system(.4.7)
    Please Help to the earliest possible as it is very urgent for us.
    Points guaranteed.
    Regards,
    Jyothi.R

    Hi Julian
    Did you check whether all the upgrade program ran successfully? Also can you please let me know when exactly you get the message ?
    Thanks
    Debraj Roy

  • ReferenceError: Error #1069: Property DSPriority not found on String and there is no default value.

    Hi All
                      This is the Error where i got from my sample chatting application...
    ReferenceError: Error #1069: Property DSPriority not found on String and there is no default value.
    at mx.messaging::Producer/handlePriority()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messagi ng\Producer.as:190]
    at mx.messaging::Producer/internalSend()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messaging \Producer.as:169]
    at mx.messaging::AbstractProducer/send()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messaging \AbstractProducer.as:561]
    at SampleMessagin/sendMessage()[D:\FlexJavaPrograms\SampleMessagin\src\SampleMessagin.mxml:2 9]
    at SampleMessagin/___SampleMessagin_Button2_click()[D:\FlexJavaPrograms\SampleMessagin\src\S ampleMessagin.mxml:74]
                        this is the code
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
          currentState="{st}"
          creationComplete="consumer.subscribe()">
    <fx:Script>
      <![CDATA[
       import mx.messaging.events.MessageEvent;
       import mx.messaging.messages.AsyncMessage;
       import mx.messaging.messages.IMessage;
       import mx.modules.IModule;
       import mx.states.State;
       [Bindable]
       public var st:String="";
       public function changeStateHandler(event:Event):void
        st = "Login"
       //send message throug this method
       protected function sendMessage():void
        var msg:IMessage = new AsyncMessage();
        msg.headers = uname.text;
        msg.body = sendText.text;
        producer.send(msg);
        sendText.text = " ";
      //message  Handler  
       protected function consumer_messageHandler(event:MessageEvent):void
        // TODO Auto-generated method stub
        var resp:IMessage = event as IMessage;
        dispText.text = resp.headers.toString()+" :: "+resp.body.toString()+"\n";
      ]]>
    </fx:Script>
    <fx:Declarations>
      <s:Producer id="producer"
         destination="chat"/>
      <s:Consumer id="consumer"
         destination="chat"
         message="consumer_messageHandler(event)"/>
      </fx:Declarations>
    <s:states>
      <s:State name="State1"/>
      <s:State name="Login"/>
    </s:states>
    <s:Panel x="246" y="137" width="366" height="200" title="Login Here" includeIn="State1">
      <mx:HBox horizontalCenter="2" verticalCenter="-30">
       <s:Label text="Enter UR Name"/>
       <s:TextInput id="uname"/>
       <s:Button id="login" label="Login" click="changeStateHandler(event)"/>
      </mx:HBox>
    </s:Panel>
    <s:Panel includeIn="Login" x="327" y="78" width="353" height="369"  title="Welcome:{uname.text}">
      <s:TextArea x="6" y="11" height="222" width="335" id="dispText"/>
      <s:TextArea x="10" y="241" height="85" width="258" id="sendText"/>
      <s:Button x="276" y="241" label="Send" height="76" click="sendMessage()"/>
    </s:Panel>
    </s:Application>
    and my messaging-config.xml is as follows
                 <?xml version="1.0" encoding="UTF-8"?>
    <service id="message-service"
        class="flex.messaging.services.MessageService">
        <adapters>
            <adapter-definition id="actionscript" class="flex.messaging.services.messaging.adapters.ActionScriptAdapter" default="true" />
            <!-- <adapter-definition id="jms" class="flex.messaging.services.messaging.adapters.JMSAdapter"/> -->
        </adapters>
        <default-channels>
            <channel ref="my-polling-amf"/>
        </default-channels>
        <destination id="chat"/>
    </service>
                      can any one help me what is the error present here.............
                         why it is showing error .. am i wrote anything wrong in this code .. please help me....

    I'm not the expert on this topic, but I think this line:
    msg.headers = uname.text;
    ...is throwing the error. Look into how to properly construct the headers for the message. They should be in name/value pairs.

  • Node text not found in Settings for BI Content

    Hi gurus,
    We have installed BI_CONT 704 SPS07 in a NW 7.01 system. In SPRO tx, all nodes for "Settings for BI Content" appears with the text "Node text not found".
    Could you help me, please?
    Best Regards

    Hello,
    First of all I would look in SLG1 at the log. If that isn't enough then see if you can reproduce it on a test system by running SWN_SELSEN manually.
    regards
    Rick Bakker
    hanabi technology
    PS And there you see another reason not to use obsolete programs like RSWUWLML2.

  • Text Not Found. Message Number: ZJV 001 Variable: CPZZZZ ZZZ 3303001 Accoun

    All!
    We are currently posting payroll results to our accounting system and everything is working fine just untill last week.
    There were a few simulations over the weekend and the following error occrued.
    Text Not Found. Message Number: ZJV 001 Variable: CPZZZZ ZZZ 3303001 Account
    Could some one throw some light on what exactly this error is referring to..and the content we are missing here.
    Thanks & Regards,
    Vikram. B

    Dear Vikram,
    I don't think this message is SAP standard, the number start with Z* which make me think that it is custom made.
    I could not find similar message in our system.
    Please check your user exit/Badi's or custom modification if any.
    Best regards
    Sarah

  • MDIS ValueX XML Structure, element TEXT not found in xml schema

    When you extract ECC Contract through MECCM using port ERP Contract Data Transmission, if your mapping isn't correct 2 exception types are created: StructuralX or ValueX (and ImportX but I haven't seen this type of exception yet).
    Anyone noticed that the structure of the XML messages are actually different? The XSD for structuralX files are the same as the files placed in the "ready" folder, where as the XSD for the valueX files are DIFFERENT, and contain a tag called <TEXT>.
    This raises an issue when we're trying to handle exceptions in Import Manager using the type Port.  We get error "Logon Error: Source file does not conform to XML Schema. Element <TEXT> not found in xml schema".
    We can process exceptions in the structuralX folder, but not in the valuex folder because the xml file structure in the valuex folder is different.
    Just wondering if anyone else has had this issue or has resolved it.  We will open message with SAP.
    Thanks.

    Hello
    What is your MDM version ?
    this issue happened in old MDM 7.1 versions but was fixed in SP-2 unless you mapped Clone fields and in this case the fix is a bit later.
    In MDM 7.1 the latest builds of SP-2 and SP-3 should have the fix for all issues. But if you use MDM 5.5 then some issues regarding XSD conversion for exception where not addressed due to technical issues.
    The workaround for MDM 5.5 (If you use a late build of SP-6 Patch-4 or SP-6 Patch-5)  is to use the original file to fix the exception and not the file in the exception folder.
    Please notice that when you have Structural exception then all the Source XML file will go to the Exception folder.
    But in case of Value Exception - The source XML file will be dropped in the archive folder and another XML file containing VXR's (Virtual Extended Records) will be dropped in the exception folder, Therefore will have a different structure.
    Hope it helps.
    Thanks.
    Best Regards.
    Yaron.

  • Verrrrryy Slloooow at search: text not found

    Hi, when i use the upper left quick-search-box (does that thing have a name?) and i hit a "text not found" it first displays a rectangular box over the textbox after 10 seconds (or something like that) the litte popup "Text not found" come's in.
    See images http://soffitta.cuijpers.it/shareimg/57997e1ed2020ff59e00c4f71f0ebf6a.png
    and http://soffitta.cuijpers.it/shareimg/4536ec106831af9ccf829f9a5667edf2.png
    It happens also when the search-text appears somewhere on the page before the cursor position.... This is very annoying because i use this search method a lot..
    btw i'm using 3.1 on osx (in oracle-look because the osx look keeps crashing :(....)
    Thanks in advance!

    Had the "Text not found" message a couple of times and was unable to dismiss it all together.
    Searching another text would display another popup message on top of the other. This last one could be dismissed, but the first one remained.
    Had to restart sqldev :-(
    Hope it's the same issue and that it gets bugged/fixed,
    K.

  • Unable to load ITUNES onto PC HP, windows 7 Home Version.  Error message reads "Application Application Support not found".  "Unistall and reload".  I have done that 4 times on Explorer and Firefox without success.  Help??

    Unable to load ITUNES onto PC HP, windows 7 Home Version.  Error message reads "Application Application Support not found".  "Uninstall and reload".  I have done that 4 times on Explorer and Firefox without success.  Help??

    I had gotten a similar problem, except with "provider services", i believe, but i solved it by copying sqlite3.dll from E:\Program Files\Common Files\Apple\Apple Application Support to E:\Program Files\Common Files\Apple\Mobile Device Support. doing that solved my first problem, but now i have been getting the error described in this topic (unable to load dataclass info... etc.). i tried reinstalling itunes (i already had 9.1.1, and thats what i reinstalled) by using the method described on apples site (using the "remove programs" tool in the control panel) and then downloading and installing itunes. when i opened it again, i still got the same error, and just now i got an error saying "the instruction at "0x00aadb6b" referenced memory at "0x00000008". the memory could not be read" it gave me the option to cancel and debug, or to press ok and terminate the program. I tried pressing cancel, and the popup went away but nothing else happened. a minute later the popup was back, so i pressed ok and itunes quit. Upon opening Itunes again, i got the very same error. sorry for the long post, but its really been bugging me. thanks for any help you might give, and if you need anymore info, feel free to contact me.

  • CS6 photoshop not found after downloading and putting in serial number

    CS6 photoshop not found after downloading and putting in valid serial number. Only extended version shows up as available. How do I just download CS6 photoshop only??
    Thanks!

    Nowhere during the installation does it give me the option to select the previous version I purchased! This is a new install on a new computer because my other computer no longer works. There is no option for me to select CS6 PS (NON EXTENDED) on the download from Adobe! When I install it only installs the extended version and tells me my serial number is valid but not for the extended. When you provided the link to the page that has the downloads, all that loads is the extended version. Can you please give me a link to the CS6 (not extended) so I can get back to work? I also was able to get the hard drive out of my computer that no longer works and put it on my new computer I'm trying to install CS6 on and the installer gave me NO OPTIONS to enter my old serial#.
    This is beyond frustrating!!!! I have a computer go out on me, and have to buy a new computer, then when I try to install CS6 PS it will not install. In the meantime I'm trying to keep my small business going to stay in business. I can't call any one from adobe. All I can do is send emails to get this resolved and wait.
    Please please help me!

  • Urgent 2nd request CS6 photoshop not found after downloading and putting in valid serial #

    CS6 photoshop not found after downloading and putting in valid serial number. Only extended version shows up as available. How do I just download CS6 photoshop only?? only the CS6 PS extended version shows up as downloaded.
    I have no idea how this forum works or weather or not this has been posted let alone answered. Can someone from Adobe please help me asap
    Thanks!

    check your duplicate post.  there are two responses.

  • When click itunes a message says: AppleMobileDeviceHelper.exe - Entry Point Not Found ... and it still doesn't recognize my iphone or ipad.

    When click itunes a message says: AppleMobileDeviceHelper.exe - Entry Point Not Found ... and it still doesn't recognize my iphone or ipad.

    Hello ckkeith65
    If you are having issues with AppleMobileDeviceHelper.exe then you would need to uninstall iTunes and its associated software in the order listed in the article below and then reinstall iTunes, as it is part of the installer file.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Regards,
    -Norm G.

  • Error: Document not found. (WWC-46000) while updating a form whit blob items

    Hi all,
    I have to manage a table-based form. The table has a BLOB field that allows NULL.
    The blob field of the form is hidden.
    When I try to INSERT all works well but when I attempt to UPDATE I get "Error: Document not found. (WWC-46000)".
    Have you some suggestions ?
    Thanks,
    Antonino
    p.s. Oracle Portal 3.0.7.6.2 / NT

    I have the same problem. I have one form to insert file (works fine), and another form to update that record, but not the file. The fields of the file (blob and mime type) are not on the form at all, and getting the message WWC-46000.

  • Adobe Flash update "Not Found" ?? since my update to Froyo

    After the system update to Android 2.2, appbrain keeps telling me that Adobe Flash is ready for update, but when I try to install it says "Not Found".  What is messed up?  Other than needing a new Swype beta, this is the only 'whoops' I have experienced.  I like being able to turn phone either way and have the browser recognise it. 

    @GL17oxford... Flash 10.1 comes pre-installed with 2.2 upgrade. However, you are correct that there is an Flash Player 10.1 update on the market which for some reason does not show up on the DROID Incredible immediately after the upgrade. The update on the market is a fix release which solves some issues with performance and will show up in the market eventually. It did for me a few days ago. Just keep going back to Android Market and search for "Flash Player 10.1". And beware that you only install the one that is published by Adobe Systems. Another way to search would be : pub:"Adobe Systems". Hope this helps...Cheers!

  • When I turn on my PC, I get the message "Apple Sync Notifier.exe-entry point not found.  Then I cannot update my apps.  what to do?

    When I turn on my PC computer I get a small window pop-up that says "Apple Sync Notifier.exe-Entry Point Not found"  This message will not allow me to update my I-phone apps.  What can I do to remedy the problem??

    Try removing iTunes & all of its components, as described here, then reinstalling:
    http://support.apple.com/kb/HT1925

Maybe you are looking for