Text document popping up on start up titled "allLanguageArray"

My Mac Pro has been getting the following text document that pops up at start up and ever since then tends to freeze up the computer. 
"// we are not using politically correct alphabetical order in English
//    except for English anymore.
// this is now marketing requested "marketing order" for tier 0, 1, and 2.
// tier 0 and 1 languages
// "English", "Japanese", "French", "German", "Spanish", "Italian", "Dutch", "Simplified Chinese"
//    "en", "ja", "fr", "de", "es", "it", "nl", "zh-Hans"
// tier 2 languages
// "Portuguese", "Swedish", "Norwegian", "Danish", "Finnish", "Korean", "Traditional Chinese", Portuguese (Brazil), Portugues (Portugal), Russian, Polish
//    "pt", "sv", "nb", "da", "fi", "ko", "zh-Hant", "pt-BR", "pt-PT", "ru", "pl"
// tier 3 languages
// "Bulgarian", "Ukrainian", "Czech", "Slovak", "Hungarian", "Thai", "Arabic", "Hebrew", "Greek", "Icelandic", "Romanian", "Turkish"
//     "bg", "uk", "cs", "sk", "hu", "th", "ar", "he", "el", "is", "ro", "tr"
    "en", "ja", "fr", "de", "es", "it", "nl",
    "sv", "nb", "da", "fi", "pt", "zh-Hans", "zh-Hant", "ko", "ru", "pl", "pt-PT",
    "bg", "uk", "cs", "sk", "hu", "th", "ar", "he", "el", "is", "ro", "tr", "pt-BR"
Anyone Know why and what this is? 
Mac Pro, Mac OS X (10.5.8)
Processor: 2 x 3 GHz Quad-Core Intel Xeon
Memory: 5 GB 667 MHz DDR2 FB-DIMM

First, go to System Preferences>Users and Groups. Select your user account and you'll see two tabs towards the top left, "Password" and "Login Items". See which Login Items are selected.

Similar Messages

  • How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word.

    How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word in the document. I am teacher. So for example when a student came to word he/she did not know, if he/she hovered the cursor over the word, a defintion or other information would appear.  You can do this in Word using bookmarks/hyperlinks but I can't figure this out in Pages. I can link it to another point in my Pages document but I just need the text to pop up - not take the reader to another location.  THANK YOU!!!!!!

    Have you tried Word for Mac?
    You will need to test if links survive export or printing to .pdf
    Peter

  • Split document when ever page starts with specific text

    Is it possible to split document when ever page starts with specific text

    If you look at your code you will see
    cPath: "/F/temp/"+filename+"_" + i +".pdf"
    which is the Acrobat version of saying
    F:\TEMP\ ... your filename ...
    Clearly won't work unless you change it to use your own preferred path.

  • How to Fill Text in Pop UP Window

    Hi Friends,
    My Requirement is to display Purchase Requisition Header text in POP UP Window in SRM ,  i used RFC_READ_TEXT  function module , data is coming into internal table,  but not able to fill the text in POP up Window, its giving DUMP, Cn any please help me
    Thnx
    Kumar Srini
    my Code :
    DATA lo_nd_header TYPE REF TO if_wd_context_node.
      DATA lo_el_header TYPE REF TO if_wd_context_element.
      DATA ls_header TYPE wd_this->element_header.
    *   navigate from <CONTEXT> to <HEADER> via lead selection
      lo_nd_header = wd_context->get_child_node( name = wd_this->wdctx_header ).
      DATA : lt_rel TYPE TABLE OF bbp_pds_hrel,
             ls_rel TYPE bbp_pds_hrel.
      DATA : ls_guid TYPE crmd_orderadm_h-guid.
      DATA : doc_no TYPE be_object_id.
      DATA lo_COMPONENTCONTROLLER   TYPE REF TO     IG_COMPONENTCONTROLLER .
      TYPES:  BEGIN OF ty_ibiptextln,
               mandt      TYPE mandt,
               tdobject   TYPE tdobject,
               tdname     TYPE tdobname,
               tdid       TYPE tdid,
               tdspras    TYPE tdspras,
               counter(3) TYPE n,
               tdformat   TYPE tdformat,
               tdline     TYPE tdline,
              END OF ty_ibiptextln.
      DATA: lt_ibiptextln TYPE TABLE OF ty_ibiptextln,
            ls_ibiptextln TYPE          ty_ibiptextln.
      DATA : LV_TEXT TYPE STRING,
             LV_DOC_TEXT TYPE STRING.
    *  *****> DATA DECLARATION FOR CALLING POPUP WINDOW
      data lo_window_manager type ref to if_wd_window_manager.
      data lo_api_component  type ref to if_wd_component.
    *  data lo_window         type ref to if_wd_window.
    *   @TODO handle non existant child
    *   IF lo_nd_header IS INITIAL.
    *   ENDIF.
    *   get element via lead selection
      lo_el_header = lo_nd_header->get_element( ).
    *   @TODO handle not set lead selection
      IF lo_el_header IS INITIAL.
      ENDIF.
    *   get all declared attributes
      lo_el_header->get_static_attributes(
        IMPORTING
          static_attributes = ls_header ).
      ls_guid = ls_header-guid.
      CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
        EXPORTING
          i_guid       = ls_guid
        TABLES
          e_header_rel = lt_rel.
      LOOP AT lt_rel INTO ls_rel.
        IF ls_rel-objid_a IS NOT INITIAL.
          doc_no = ls_rel-objid_a.
        ENDIF.
      ENDLOOP.
      IF doc_no IS NOT INITIAL.
        ls_ibiptextln-mandt     = ''.
        ls_ibiptextln-tdobject  = 'EBANH'.
        ls_ibiptextln-tdname    = doc_no.
        ls_ibiptextln-tdid      = 'B01'.
        ls_ibiptextln-tdspras   = sy-langu.
        APPEND ls_ibiptextln TO lt_ibiptextln.
        CALL FUNCTION 'RFC_READ_TEXT' DESTINATION 'TD1CLNT400'
          TABLES
            TEXT_LINES = lt_ibiptextln.
      ENDIF.
    *  ****> Get Refrence of Component Controller .
    lo_COMPONENTCONTROLLER =   wd_this->get_componentcontroller_ctr( ).
    IF lt_ibiptextln IS NOT INITIAL.
        LOOP AT lt_ibiptextln INTO lS_ibiptextln where tdline is NOT INITIAL.
             lv_text = lS_ibiptextln-TDLINE.
             CONCATENATE LV_DOC_TEXT lv_text INTO LV_DOC_TEXT SEPARATED BY space .     " CONCATANATION OF THE PRODUCT DESCRIPTION
        ENDLOOP.
    * ************* CALLING METHOD OF COMPONENT CONTROLLER
    lo_componentcontroller =   wd_this->get_componentcontroller_ctr( ).
    lo_componentcontroller =   wd_this->get_componentcontroller_ctr( ).
      lo_componentcontroller->fill_doc_text(
        lt_doc_text =  lv_text                     " string
    DATA lo_window         TYPE REF TO if_wd_window.
    "_*AT THIS POINT I AM GETTING SHORT DUMP_*
    lo_window         = lo_window_manager->create_window(
                       window_name            = 'ZSRM_WIN'
                       title                  = 'Text Description'
                       message_display_mode   = if_wd_window=>co_msg_display_mode_selected
                       button_kind            = if_wd_window=>co_buttons_close
                       message_type           = if_wd_window=>co_msg_type_none
                       default_button         = if_wd_window=>co_button_close
    else.
        lo_componentcontroller->fill_doc_text(
        lt_doc_text =  'THERE IS NO TEXT FOR THIS Document Number' ).
      lo_window         = lo_window_manager->create_window(
                       window_name            = 'ZSRM_WIN'
                       title                  = 'Text Description'
                       message_display_mode   = if_wd_window=>co_msg_display_mode_selected
                       button_kind            = if_wd_window=>co_buttons_close
                       message_type           = if_wd_window=>co_msg_type_none
                       default_button         = if_wd_window=>co_button_close
      endif.
      lo_window->open( ).

    You haven't created lo_window_manager
    you are missing the following two lines of code:
    lo_api_component  = wd_this->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    Put them just before you get your dump.
    Good luck!

  • How can I extract XML from a text document?

    I have tons of text documents containing useless text and a section of XML. I would like to use either Mac Automator or Apple Script to pull the XML section out and place it in a new document with a .xml extension. How can I do that?
    Here is a sample of the XML section that I need to pull:
    - ---Start ACNS XML
    <?xml version="1.0" encoding="UTF-8"?>
    <Infringement xsi:schemaLocation="http://www.movielabs.com/ACNS/ACNS2v1.xsd" xmlns="http://www.movielabs.com/ACNS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">           <Case>
    <ID>22242387629</ID>
    <Status>OPEN</Status>
    <Severity>Normal</Severity>
    </Case>
    <Complainant>
    <Entity>MPAA Search and Notify</Entity>
    <Contact></Contact>
    <Address></Address>
    <Phone>5555555555</Phone>
    <Email>[email protected]</Email>
    </Complainant>
    <Service_Provider>
    <Entity>Some Place, Somewhere</Entity>
    <Contact></Contact>
    <Address>Some Place, Somewhere  </Address>
    <Phone></Phone>
    <Email>[email protected]</Email>
    </Service_Provider>
    <Source>
    <TimeStamp>2011-12-02T23:41:59.94Z</TimeStamp>
    <IP_Address>127.0.0.1</IP_Address>
    <Port>64153</Port>
    <Type>P2P</Type>
    <SubType BaseType="P2P" Protocol="BitTorrent" />
    <UserName></UserName>
    <Number_Files>1</Number_Files>
    </Source>
    <Content>
    <Item>
    <TimeStamp>2011-12-02T23:41:59.94Z</TimeStamp>
    <AlsoSeen Start="2011-12-02T23:40:00.11Z" End="2011-12-02T23:41:59.94Z"></AlsoSeen>
    <Title>asdfasdf (2011)</Title>
    <Artist></Artist>
    <FileName>asdfasdf (2011) DVDRip XviD-MAXSPEED</FileName>
    <FileSize>1580908467</FileSize>
    <Type>Video</Type>
    <Hash Type="SHA1">8FB7B1F4984AB6E0746B43D2B82D4ED8102984D5</Hash>
    </Item>
    </Content>
    <History></History>
    <Notes></Notes><Type Retraction="false">DMCA</Type>
    <Detection>
    <Asset>
    <OriginalAssetName>asdfasdf (2011)</OriginalAssetName>
    </Asset>
    <ContentMatched Audio="false" Video="true" Text="false" />
    <HashMatched>true</HashMatched>
    <VerificationID>Manual and automated watermark verification</VerificationID>
    </Detection>
    <Verification>
    <VerificationLevel Type="DT">2</VerificationLevel>
    </Verification>
    <TextNotice><![CDATA[12-03-2011

    XML portion always starts with <Infringement and ends with </Infringement>.
    Actually, it doesn't... the XML starts with the <?xml> tag, but that's just me being pedantic
    Given what you've said, though, it's easy to extract the XML data from a given block of text.
    First, read the source data:
    set theText to read file "path:to:the:file"
    Then you can extract the XML via something like:
    set start_tag to "<?xml"
    set end_tag to "</Infringement>"
    set start_of_data to offset of start_tag in theText
    set end_of_data to (offset of end_tag in theText) + (-1 + (length of end_tag))
    set theXML to text start_of_data through end_of_data of theText
    Now you can write that data to a file:
    set theFile to open for access file ((path to desktop as text) & "output.xml" as text) with write permission
    set eof theFile to 0
    write theXML to theFile starting at 0
    close access theFile
    If you have multiple files you can either run this in a loop that iterates over the files, or save the script as a droplet, then drop the files onto the script icon. Let me know if you need help with that, too.

  • How can I export a PDF form and the filled in fields to a text document?

    OK, so I have a situation.  I need people to be able to open a reader-enabled PDF form, fill out the form fields, and then export the filled-out PDF form to a basic text document.  This seems easy since Adobe Reader can save to text.  The problem is, the answers in the form fields do not show in the text file!  Each radio button shows as yes and no, and there is no indication in the text file which one was selected.  In addition, the form fields are not exported next to the questions on the form.  I tried flattening the form in Adobe pro, and that did not work either.
    How can I create a fillable form for Adobe Reader, and then let the user export their answers AND the questions on the form to plain text?

    OK, so I tried this as a starting point, and assigned it to a button on page 3 of the form.
    p=0;
    console.show();
    console.clear();
    for (var j = 0; j < this.getPageNumWords(p);j++) {
          var word = this.getPageNthWord(p,j,false);
          console.println(word);
    This gives me all the words on the first page not in fields, and each word goes on a separate line.  Now, characters in the document such as "&" or ")" cause the rest of the word to go on the next line down.
    Next, I tried this:
    console.show();
    console.clear();
    for (var j = 0; j < this.getPageNthWord(j);j++)
          var word = this.getPageNthWord(j,false);
          console.println(word);
    This only gives me the first word on page 3, the page the button is placed?
    What I need to do is run the code and place words on one line until the code hits a keyword "var cKeyWord1 = “Key1” for example?, then insert the value of field one, Start a new line in the console, restart the code where it left off until it hits the next key word "var cKeyWord2 = “Key2”, insert the value of field two, add a new line, and on and on.
    Is this possible?

  • Named file entity do not load in from xml files(eg., !DOCTYPE PURANA SYSTEM "purana.dtd" [ !ENTITY CHAPTER_1 SYSTEM "./chapter_1.xml" ] ?xml-stylesheet type="text/xsl" href="purana.xsl"? PURANA TITLE /TITLE &CHAPTER_1; /PURANA )

    I create several file name entities in an external DTD.
    It used to work sometimes back but I don't remember now when it begun to fail.
    typical document for eg., is given below:
    <!DOCTYPE PURANA SYSTEM "purana.dtd" [ <!ENTITY CHAPTER_1 SYSTEM "./chapter_1.xml"> ]>
    <?xml-stylesheet type="text/xsl" href="purana.xsl"?> <PURANA>
    <TITLE>
    </TITLE>
    &CHAPTER_1;
    </PURANA>)
    the abbreviation used to work by loading the file using XSL script,
    but now it does not even work when the entity is defined within the XML document itself.

    Too difficult???
    Please helped me.
    Thank you, Theo

  • How to merge multiple XML or Text documents into 1 Word Document?

    Hi all,
    We're looking for a way to merge multiple XML or Text documents into 1 Word document.
    All the XML or Text documents are oriented as a 'Paragraph', meaning smaller pieces of text.
    By selecting some of these XML documents, the system should be able to create a new Word document with all the selected text paragraphs included.
    The Word document can then be edited for applying a correct lay-out and the document is ready.
    Actually, we are trying to do some kind of 'mail merge' but with multiple XML or Text documents!
    Has anybody an idea whether something exist already or give us a direction how to proceed?
    Thanks in advance,
    Pascal Decock

    You use Assembler for this purpose.
    1) Assembler can be accessed through LC Java API. See http://help.adobe.com/en_US/enterpriseplatform/10.0/programLC/help/index.html
    API Quick Starts (Code Examples) > Assembler Service API Quick Starts
    2) Last week I posted on generating and merging PDF's from PostScript. Take a look at the assembly service instance in the .lca. Assembler uses DDX (Document Description XML) to describe document construction. NOTE the .lca was developed with ES 3 (aka ADEP). The .lca It contains the most basic DDX.
    <?xml version="1.0" encoding="UTF-8"?>
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/">
    <PDF result="out.pdf">
      <PDF source="inDoc1"/>
      <PDF source="inDoc2"/>
    </PDF>
    </DDX>
    http://forums.adobe.com/message/4019760#4019760
    DDX Reference at http://help.adobe.com/en_US/livecycle/9.0/ddxRef.pdf
    Steve

  • Why does a text banner pop up while in a text converstaion? only the sound alerted before iOS 6.

    why does a text banner pop up while in a text converstaion? only the sound alerted before iOS 6.

    but that only started with iOS 6. prior, the text tone would sound when you were in a different conversation. I like the banner but it's annoying when I'm already in the text screen.... understand the question?

  • When I control-click a hyperlink in a text document, I get the message "there was a problem sending the command to the program"

    In the last few days I've found that control-clicking a hyperlink in a document, or clicking a link in Thunderbird, does not bring up Firefox. This started I believe after I updated to Firefox 5.0. I'm running Windows 7 64-bit and Firefox has always performed perfectly until now.
    I had also updated Thunderbird which caused my ThunderBrowse extension to be disabled (not compatible) so I had assumed that was the problem in Thunderbird. But since it happens in a text document too, I'm no longer sure.

    Try here >  Mac App Store: "An unknown error occurred (100)" when purchasing

  • I want text to pop up over a link.

    I want text to pop up when a mouse hovers over a link I've created in a PDF using Acrobat 9.  This should help explain the link.  Can someone help me figure out how to do that?  Thank you in advance for the help. 

    Thank you for the answer. I created the first button but when I do so it's right over top of the existing link, which does nothing more than take the person to another page on the document. I've made it transparent but it still appears block the original link.  Anyway past that?  Again, thanks for the help.

  • Text document for After Effect Cs4

    I never open the After Effects CS4 but it is amazing....
    For the beginning, want to try  Animatin Text but couldn't created the Text document.
    when  i created the Text from Photoshop and import to After Effects then it will show " transform" not " Text".
    How can i create the Text document for After Effects....????
    thanks for reading and little help Please

    I do quite a bit of Text Animation in both AE and Premiere Pro, and just create my images in PS. In my case, I am working with SD (Standard Def) DVD Projects in NTSC-land, so I will use the New Image, and then choose the NTSC 720 x 480 Preset, choosing either the Standard 4:3, or Widescreen 16:9 w/ Guides, and then add my various Text Layers, per normal. The layout of my Text Layers will depend on what and how I want to animate my image. Then, I do a Save_As PSD, to be Imported into AE or PrPro. For animations I want the Layers, so I will choose Import_as_a_Sequence in PrPro, so that each Layer is a separate Clip.
    In your case, the New Image Preset might differ, depending on exactly what your Frame Size is, in AE. Plan that out first, so that you match the AE Comp's specs. with your new Image.
    If you are gong to TV, you might want to use the Title Safe and Action Safe Guides in that New Image, as they will help keep your Text within any overscan area for CRT TV's (and still some HD TV's).
    Good luck,
    Hunt

  • Why won't Spotlight find a Text document in Search Results a 2nd time?

    On 10.5.8:
    I can type a search word into Spotlight.  It will show results.  I then open let's say an Appleworks text document from that search.  Then I close that document and retry the same search: Now that same document will not show up in the search results for that exact word and it WILL NEVER show up again in search results.  In other words after a file has been found and opened in search once , it will never sppear in search results again for the same word.
    If you have an idea how to fix this please tell me.  Thank you

    If anyone else has any idea please tell me.  I already tried what is outlined in http://support.apple.com/kb/HT2409 very carefully and it didn't fix it.  I have also "repaired disk permissions" and that didn't work.
    I specifically want to be able to search my Appleworks documents.  Currently I can create an Appleworks document, put "widget" in the document, save it, search for "widget" and it won't even show up in search results so something is seriously amiss.  So I was wrong in the question title, coz it won't even show up one time!
    Baring that does anyone know a search program that works with Mac that I can download and use? 
    The funny thing is that I have already tried about 3 of those and guess what?  It still will not show those Appleworks documents in the search results.  Given that fact, can anyone think of a reason why my Appleworks documents never show up in any type of search results?
    Thank you

  • How to executing serial commands from text document

    I'm looking for some direction on how to read and execute a page of serial commands from a text file.  I have an instrument is controlled by serial communication.  Currently I have been using a state machine to operate the instrument.  The issue is that if I wish to change the sequence of commands I have to go back and rewrite the state machine to change the strings.  I had the idea of being able to just write the string commands to a text file with each line being a discrete command and after selecting the file the VI would execute the text page one line at a time.  I just don't  know where to start and have been unable to find an example to get me started.  This is above my programming level and I could use some direction on where to start.  The one issue I need to be able to address is if the VI executing the page of serial commands I have to have a way to abort the sequence if necessary.  
    Thank you
    Danny
    Danny

    ABCPrograms wrote:
    If you want to process the entire array of commands in a state engine, indeed the better way of keeping track of where you are in the array would be a shift register.
    When you're reading a new line, increase the index with one and put the new index in the shift register.
    That seems overly complicated, unless you want to go back and repeat steps.  But from the description from the OP, this is not desired.  The point of the text document is to easily change the state order.  Autoindexing is by far the simplest way to accomplish this.  If you really want to know what index you are on, just use the i terminal.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Anyone Know difference between pure Text Document and Plain Text Document?

    I am having a **** of a time trying to figure out how to create a "text document" on the Mac. From what I've read, it's not possible to create a pure "text document" with Mac .... only possibly windows.
    I have a text document (created in Textedit in Mac),that can only be saved as either a "plain text document" or a "rich text format (.RTF) formatted file.
    I need to save (or re-create), the text file in a file that will save as a
    "text document".
    In either the <command+I> option, or in a folder window line description, I need to see the text file saved as the wording or a "rich text format (.RTF) .... and not "plain text document" or a "rich text format (.RTF).
    Evidently, the difference between the text files that Apple TextEdit creates, and those that are a pure "text document", have something to do with the hidden carriage return command language at the end of the command lines ... or something like that.
    The text file is being used as a command text file for a modified VTC Training "set-up folder/GUI" that will run on either Mac or Windows.
    I have seen on-line, some mention that using windows "notepad" (texteditor) may be the only way to create a true "text document" labeled file.
    Any suggestions, or knowledge in this area would be greatly appreciated.
    Thanks! -David
    Message was edited by: DavidMac

    The way to preserve an existing "text document" is to import it into OS 9.2 and
    open it up in Apple Simpletext (text edit program).
    Changes can be made to the original "text document" (not an original .rtf or .txt file, which aren't true "text documents" by title description). When changes are made to the original "text document", they are saved in Simpletext as a "text document" (not .rtf or .txt - these are OSX file descriptions).
    The file can be read back by OSX Textedit, or by PC, with no problems. However, if the slightest changes are attempted in OSX on that "text document" (once back from your OS 9.2 changes ... OSX will only be able to save it again as a .rtf or .txt (plain text file) ... not a pure "text document" as made or corrected in OS 9.2.
    I'm glad I still have Apple OSX "Classic" available for these kind of rare changes needed.
    I have spent a few weeks now, trying to figure how to create/modify an existing pure "text document" using a Mac ... without relying on going to any PC text edit programs ... and this method of running it through the old Simpletext program in OS 9 finally worked out to be the answer this evening!
    Message was edited by: DavidMac

Maybe you are looking for

  • Sales order third party

    Hi, In third party sales order pr is generated and then the PO is done using same PR afterwards some how user managed to delete the PR from sales order  schedule lines  now  the issue is i am not able to  see the PR  number in schedule lines .because

  • Can anyone help me get my version of FM 10 updated with the TCS3Update.zip patch?

    I'm trying to get FM 10 working on my new computer, but after installation when I go to open the program I get the "Licensing for this product has expired" message. I downloaded the TCS3Update.zip patch the website recommended to fix this, but when I

  • Problems reinstalling pse 9

    I have had troubles reinstalling pse 9 in my computer. i bought a licence and had this program in my computer. I had to format my computer and i need to reinstal this program. what can i do to download and reinstal this program ? The usual way downlo

  • How do I ungroup threaded messages in Imail?

    I just want each email to be by itself, and not group with the original message.  It is far to confusing and hard to do searches to find email messages.  There should be a basic check mark in the Preferences to turn it on or off.  Please advise how t

  • Does Adobe Elements 13 video capture work with Firewire for DV videotapes?

    I just spent $120 to upgrade to Premiere Elements 13, and it doesn't recognize my Sony DV tape recorder/player.  I was searching on the web and thought I saw somewhere that Premiere Elements 13 dropped firewire support, but I can't relocate the infor