Checking content of a movieClipLoader

hi, i need to check if there is any content in a
movieClipLoader, and than if its empty than load a new one into it,
and if it has content than wait 2 seconds before loading the new
movie clip into it... does anyone know a way i can check to see if
a movie clip is empty or not?

I might be wrong, but you should be able to just say
if (movieClip) {code....}
I could be wrong, but I think it will return a TRUE or FALSE
based on whether it is empty or not

Similar Messages

  • Is there any performance monitoring tool to check content db size ?

    Hello,
    I have following scenario :
    Check volume and size of content uploaded onto the SharePoint content DB including some form of resource
    details like content types,docs.
    Questions :
    Can anyone please let me know how can we set alert when SharePoint content DB get increased ? Is there any Free Performance Tool is available which can complete the task in the above
    scenario ?
    Please kindly suggest me.
    Thanks and Regards,
    Dipti
    Dipti Chhatrapati

    This may not be a direct answer to your question but one free tool to analyse BLOBS is the Metalogix BLOBulator.
    This at the least will help you look for large objects within your databases
    https://www.metalogix.com/Downloads/StoragePoint-Downloads/StoragePoint-BLOBulator-Tool.aspx
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • OSB: Checking content type of a Business Service response

    Hi,
    I have a Proxy Service <-> Business Service configured as a pass-through only. (including http headers)
    The situation is: Sometimes, the service which my BS access send a fault response as a HTML instead of a fault soap envelop or something related with the provided xsd.
    My PS receives this and send back to the caller, but my customer needs a fault message. The service provider will not modify this behavior, so i need a way to check the content of the response to see if it's is an html and raise an exception.
    It's possible to do this ?

    Wow.
    First of all, ty for your really fast reply.
    Seconde: A valid fault response message is something like this:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="my.foo.namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ http://schemas.xmlsoap.org/soap/envelope/" >
    <soapenv:Body>
    <soapenv:Fault>
    <faultcode>soapenv:Server</faultcode>
    <faultstring>Unknown processing error.</faultstring>
    <detail>
    <ImsException version="6.0" >
    <exception>
    <name>exception.NotAuthorizedException</name>
    <code>700</code>
    <description>
    <![CDATA[Foo is not authorized to perform task.]]></description>
    </exception>
    </ImsException>
    </detail>
    </soapenv:Fault>
    </soapenv:Body>
    </soapenv:Envelope>
    I need to validate the <detail> tag agains my xsd. To do this, how to build the xquery to select this tag ? I need to apply some function on the content to transform the detail string into a structured xml ? It's something like:
    soapenv:Envelope/soapenv:Body/soapenv:Fault/detail
    If you have some links with examples i will appreciate.
    Ty for your help.
    Edited by: GSanches on 10/06/2010 06:27

  • Error while checking content server installation

    hai all,
    I had installed content server 6.30.And installation is successful.I restarted the server also.when i am testing the connection to the content server by using the url-http://hostname:portnumber/ContentServer/ContentServer.dll?serverInfo.
    I am geeting the error ,the page cannot be dusplayed.
    While installing the content server,i used the default port-1090.With the same i am trying to check it.
    Please help me out.
    Thanking you,
    Regards,
    venkat.

    Venkat,
    Did you get this working?
    If so, could you provide your httpd.conf and cs.conf files for comparison
    Thanks in advance for your response.
    Jeff

  • Check content file DiskFileUpload

    Hello,
    I wan't to check the content of my file with the crc32 method from the java.util.zip library. Now I have found some topics about this on the forum but this works with the FileInputStream. I work with the DiskFileUpload from the FileUpload class from apache.org.
    I have looked through and through but I can't figured out. Can anyone give me some advice.
    Here is my code:
    public static Uploaden IB(HttpServletRequest request) {
    // Variabelen
    String Lid_id = null;
    String Rubriek_id = null;
    String Opmerking = null;
      Uploaden uploaden = new Uploaden();
      Properties prop = System.getProperties();
      String pathname = prop.getProperty("java.io.tmpdir");
      if (pathname==null || pathname.length()==0) pathname=".\\";
    try{
    // Maak buffer vrij
      byte[] buffer = new byte[10000000];
      int bytesRead;
      buffer= null;
    // Kijken of de form van Multipart form-data is
      boolean isMultipart = FileUpload.isMultipartContent(request);
    //Database connectie maken
      Class.forName("org.gjt.mm.mysql.Driver");
      Connection con = DriverManager.getConnection(
          "jdbc:mysql://localhost:3306/osso", "root", "root");
    // Maken van een nieuwe file upload handler
      DiskFileUpload upload = new DiskFileUpload();
    //32-bit checksum
      CRC32 crc = new CRC32();
    // Analyseren van de aanvraag
      List items = upload.parseRequest(request, 10000000, 10000000, pathname);
    // Bepalen of het een form field is of niet
      Iterator iter = items.iterator();
      while (iter.hasNext()) {
        FileItem item = (FileItem) iter.next();
        if (item.isFormField()) {
          if (item.getFieldName().equals("Lid_id")) {
            Lid_id = item.getString();
          if (item.getFieldName().equals("rubriek")) {
            Rubriek_id = item.getString();
          if (item.getFieldName().equals("Opmerking")) {
           Opmerking = item.getString();
            else {
    // Load de file up
    /// ********************geen form field dus het object***********************
          if (!item.isFormField()) {
            String fieldName = item.getFieldName();
            File fullFile = new File(item.getName());
            String name = fullFile.getName();
            String contentType = item.getContentType();
            boolean isInMemory = item.isInMemory();
            long sizeInBytes = item.getSize();
    ///////////////************** Wegschrijven naar de database *********************************
             PreparedStatement pstmt = con.prepareStatement(
                     "INSERT INTO bestand (Bestandsnaam, Bestand, Grootte, Lid_id, Contenttype, Rubriek_id, Opmerking) VALUES (?,?,?,?,?,?,?)");
            pstmt.setString(1, name);
            pstmt.setBinaryStream(2, item.getInputStream(), 10000000);
            pstmt.setLong(3, sizeInBytes);
            pstmt.setString(4, Lid_id);
            pstmt.setString(5, contentType);
            pstmt.setString(6, Rubriek_id);
            pstmt.setString(7, Opmerking);
            pstmt.executeUpdate();can anyone please tell me what to do?
    Regards,
    Henk

    magaupe wrote:How can I check the content of a .txt file?
    I need to verify if the file is empty or not.Try this,
    new File("d:/YourFile.txt").size();* If the file size is zero , then there is no content
    * Other something is there in the file....
    Can...Can...If We Try.....!

  • XPath in receiver determination: Check content of elements that exist 0..n

    Hi all,
    I have a simple requirement in a receiver determination. In the structure of the XML message, there is a node "STATUS" with an element STATUS_CODE. This STATUS node can appear 0 or  9999 times.
    I want to check if there is ANY STATUS with STATUS_CODE = "0", and if so, the message should be sent to a certain receiver. How to to that?
    Will that be the solution: (//STATUS/STATUS_CODE = 0)?
    Thanks,
    CHRIS

    > So it seems to me that the operator != can't be used to check a 1...n element? What might be the reason for this?
    I am not sure how != works, it is not documented well.
    I suppose NE means: does not exist.
    So if any node STATUS_CODE with value 1 exists, then the result is false.
    If you want an existence check if this, you should apply this:
    //STATUS [STATUS_CODE != "1"]  EX
    See also:
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/ab/13bf7191e73a4fb3560e767a2525fd/frameset.htm
    (scroll to the bottom)
    /people/shabarish.vijayakumar/blog/2006/06/07/customise-your-xpath-expressions-in-receiver-determination

  • Checking Contents of Shopping Cart using Liquid

    Using Liquid is it possible to check what items are in the shopping cart? If so can someone point me in the right direction?
    Basically what I am looking to achieve is when a page loads check to see if certain items are in the shopping cart. If they are in the shopping cart I do something otherwise I do something else. If I can check quantities, even better.
    I am still working to grasp everything liquid. =>

    Hi Lynda,
    Take a look at this guide - Reference guide - e-Commerce related - it also supports the "on-the-fly" cart update Robert mentioned.
    Let me know how this works.
    Thanks,
    Mihai
    PS: On the cart.html page you can insert
    <pre>{{cart | json}}</pre>
    to see what other cart properties you can access (like the individual products and so on).
    At the moment though there are few fields that are "numeric", so this means that you can't apply mathematical operations to most of them. This will be fixed in the future, see Bug: Liquid math filters don't work with module data

  • When I check the content in a test server I get this: ssl_error_bad_cert_domain and the option to accept, but in a iframe I get the same error but theres not op

    I work in an international company and we have a server farm with 54 servers, so I need check content in all of them for 118 countries, I created a little application to do this and the problem is this:
    When I check the url in the main window I get: "Error: ssl_error_bad_cert_domain" but there is "add exception" option and the problem ends there. But my application loads the pages within an iframe and when I try to load them the error appears but there is not any option to continue.
    Could you tell me please which option of the configuration (about:config) I should change to avoid this, because adding an certificate for every country for every server (6372 certificates) it's not an option for me.
    *Note: The error appears because the dns of such servers have several subdomains and the certificate is not valid for the resultant url.

    Facebook uses such servers to store additional content media files and maybe CSS and JavaScript files.
    Reload web page(s) and bypass the cache.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • DMS content server error

    Hello SAP Experts!
    I have following error when exeuting test program for checking content server RSCMST:
    HTTP error: 500 Internal Server Error
    It is appearing continuosly every day. Only solution I have found now is restaring Server when DMS is installed. Sometimes it takes 2 or 3 reboots to make it available back again.
    Of course this is related with problems that people cannot check in documents on DMS server.
    thanks for any suggestions!
    Michal

    hi.,
    pls check..
    Click Start, point to Programs, point to Administrative Tools, and then click Internet Information Services.
    2. In the console tree, click Default Web Site. In the display pane, right-click Localstart.asp, and then click Properties.
    3. On the File Security tab, click Edit under Anonymous access and authentication control.
    4. On the Authentication Methods property page, click to clear Anonymous access.
    or
    restart the server.
    award point if useful

  • Print Line items twice in Check F110_Prenum

    Hi Experts,
    I need to print the Line items of the Payemnt advice, twice on the same page...
    Type   Window Content
    [Main] 1-10 Lines
    [Var]  Voided/Actual Check
    [Var]  <b>1-10 Lines</b> (Not printing)
    [Main] 11-20 Lines
    [Var]  Voided/Actual Check
    [Var]  <b>11-20 Lines</b>(Not printing)...........
    and so on....
    The problem is only that i am not able to print the lower (duplicate)line items...
    Pls suggest some technique....
    I have tried modifying the RFFOUS_C also... but the values  can be seen in debug mode only (not on Print Preview)
    I have already written this problem, sut still havent recieved any legible solution... Is this problem really so tough.. i wonder...
    Pls ask me if u need some more details....
    Thanks all in advance... all the helpful posts would be awarded points accordingly..
    Regards,
    Abhishek

    Yup ! There is a blank space at bottom which needs to be filled up with the content of main window on the same page...
    The last window name is 'FILE' and in this window we have a element called 'COPY'. Now what i did is i modified RFFOUS_C        to get all the itemlines in a particular itab say I_REGUP. In the Prog itself.. after the formular prints all the check contents and the loop for all the elements in main is done, i copy the REGUP to my I_REGUP.
    Now after this i Open a new form as
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
                ARCHIVE_INDEX  = TOA_DARA
                ARCHIVE_PARAMS = ARC_PARAMS
                FORM           = T042E-ZFORN
                DEVICE         = 'PRINTER'
                LANGUAGE       = T001-SPRAS
                OPTIONS        = ITCPO
                DIALOG         = FLG_DIALOG
           IMPORTING
                RESULT         = ITCPP
           EXCEPTIONS
                FORM           = 1.
      IF SY-SUBRC EQ 1.              "abend:
        IF SY-BATCH EQ SPACE.        "form is not active
          MESSAGE A069 WITH T042E-ZFORN.
        ELSE.
          MESSAGE S069 WITH T042E-ZFORN.
          MESSAGE S094.
          STOP.
        ENDIF.
      ENDIF.
      LOOP AT I_REGUP.
        W_REGUP = I_REGUP.
        CALL FUNCTION 'WRITE_FORM'
             EXPORTING
                  WINDOW   = 'FILE'
                  ELEMENT  = 'COPY'
                  FUNCTION = 'APPEND'
             EXCEPTIONS
                  WINDOW   = 1
                  ELEMENT  = 2.
      ENDLOOP.
      CALL FUNCTION 'CLOSE_FORM'.
    After Executing what i find is, when i activate the debugger for the layout form... i can see all the values coming at that instance.. but id doent appear in the print preview...
    Hope u mast have got the scenario... else i can mail u the code copy and print preview for ur better view...
    Thanks for ur help !!
    Regards,
    Abhishek

  • Check on teens

    I have basic phones I want to find a way to check content of my teens messeges

    You mean text messages that they send and receive? Ask them for the phones and look at them. That's the only way.

  • Unsupported response content type "text/html", must be: "tex

    Hi Gurus,
    I'm trying to access a WebService (http://200.68.11.21/WebServices/RecibeMsgSoapISP.wsdl), but I've been facing the following problem below. Could anybody help me?
    //****************************** MY CODE
    FileInputStream file = new FileInputStream("c:\\EXE\\deuda2.xml");
    byte[] bytes = new byte[file.available()];
    file.read(bytes);
    String xml = new String(bytes);
    System.out.println("Xml:\n" + xml);
    URL endPoint =
    new URL(
    "http://200.68.11.21/WebServices/RecibeMsgSoapISP.wsdl");
    Call call = new Call();
    SOAPTransport m_httpConnection =
    new org.apache.soap.transport.http.SOAPHTTPConnection();
    call.setSOAPTransport(m_httpConnection);
    call.setTargetObjectURI("urn:RecibeMsgSoapIsp");
    call.setMethodName("RecibeM2TGR");
    call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
    //SOAPTransport st = new SOAPHTTPConnection();
    //call.setSOAPTransport(st);
    Vector params = new Vector();
    params.addElement(new Parameter("StrXml", String.class, xml, null));
    call.setParams(params);
    //call.setHeader();
    Response response = call.invoke(endPoint, "");
    Parameter result = response.getReturnValue();
    System.out.println("result:" + result);
    //****************************** MY EXCEPTION
    [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type "text/html", must be: "text/xml". Response was:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    <html dir=ltr>
    <head>
    <style> a:link               {font:8pt/11pt verdana; color:FF0000} a:visited          {font:8pt/11pt verdana; color:#4e4e4e}
    </style>
    <META NAME="ROBOTS" CONTENT="NOINDEX">
    <title>No se puede mostrar la p&aacute;gina</title>
    <META HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252">
    </head>
    <script>
    function Homepage(){
    <!--
    // in real bits, urls get returned to our script like this:
    // res://shdocvw.dll/http_404.htm#http://www.DocURL.com/bar.htm
         //For testing use DocURL = "res://shdocvw.dll/http_404.htm#https://www.microsoft.com/bar.htm"
         DocURL=document.URL;
         //this is where the http or https will be, as found by searching for :// but skipping the res://
         protocolIndex=DocURL.indexOf("://",4);
         //this finds the ending slash for the domain server
         serverIndex=DocURL.indexOf("/",protocolIndex + 3);
         //for the href, we need a valid URL to the domain. We search for the # symbol to find the begining
         //of the true URL, and add 1 to skip it - this is the BeginURL value. We use serverIndex as the end marker.
         //urlresult=DocURL.substring(protocolIndex - 4,serverIndex);
         BeginURL=DocURL.indexOf("#",1) + 1;
         urlresult=DocURL.substring(BeginURL,serverIndex);
         //for display, we need to skip after http://, and go to the next slash
         displayresult=DocURL.substring(protocolIndex + 3 ,serverIndex);
         InsertElementAnchor(urlresult, displayresult);
    function HtmlEncode(text)
    return text.replace(/&/g, &apos;&amp&apos;).replace(/&apos;/g, &apos;&quot;&apos;).replace(/</g, &apos;&lt;&apos;).replace(/>/g, &apos;&gt;&apos;);
    function TagAttrib(name, value)
    return &apos; &apos;+name+&apos;="&apos;+HtmlEncode(value)+&apos;"&apos;;
    function PrintTag(tagName, needCloseTag, attrib, inner){
    document.write( &apos;<&apos; + tagName + attrib + &apos;>&apos; + HtmlEncode(inner) );
    if (needCloseTag) document.write( &apos;</&apos; + tagName +&apos;>&apos; );
    function URI(href)
    IEVer = window.navigator.appVersion;
    IEVer = IEVer.substr( IEVer.indexOf(&apos;MSIE&apos;) + 5, 3 );
    return (IEVer.charAt(1)==&apos;.&apos; && IEVer >= &apos;5.5&apos;) ?
    encodeURI(href) :
    escape(href).replace(/%3A/g, &apos;:&apos;).replace(/%3B/g, &apos;;&apos;);
    function InsertElementAnchor(href, text)
    PrintTag(&apos;A&apos;, true, TagAttrib(&apos;HREF&apos;, URI(href)), text);
    //-->
    </script>
    <body bgcolor="FFFFFF">
    <table width="410" cellpadding="3" cellspacing="5">
    <tr>
    <td align="left" valign="middle" width="360">
         <h1 style="COLOR:000000; FONT: 13pt/15pt verdana"><!--Problem-->No se puede mostrar la p&aacute;gina</h1>
    </td>
    </tr>
    <tr>
    <td width="400" colspan="2"> <font style="COLOR:000000; FONT: 8pt/11pt verdana">No se puede mostrar la p&aacute;gina que est&aacute; buscando porque la direcci&oacute;n de la p&aacute;gina es incorrecta.</font> </td>
    </tr>
    <tr>
    <td width="400" colspan="2"> <font style="COLOR:000000; FONT: 8pt/11pt verdana">
         <hr color="#C0C0C0" noshade>
    <p>Pruebe lo siguiente:</p>
         <ul>
    <li>Si escribi&oacute; la direcci&oacute;n de la p&aacute;gina en la barra de direcciones, compruebe que la ha escrito correctamente.<br>
    </li>
    <li>Abra la p&aacute;gina principal
    <script>
         <!--
         if (!((window.navigator.userAgent.indexOf("MSIE") > 0) && (window.navigator.appVersion.charAt(0) == "2")))
              Homepage();
         //-->
         </script>
         y busque v&iacute;nculos a la informaci&oacute;n que desee.</li>
    </ul>
    <h2 style="COLOR:000000; FONT: 8pt/11pt verdana">HTTP 405 &ndash; Resource not allowed<br> Servicios de Internet Information Server</h2>
         <hr color="#C0C0C0" noshade>
         <p>Informaci&oacute;n t&eacute;cnica (para personal de soporte)</p>
    <ul>
    <li>M&aacute;s informaci&oacute;n:<br> Soporte t&eacute;cnico de Microsoft
    </li>
    </ul>
    </font></td>
    </tr>
    </table>
    </body>
    </html>
         at org.apache.soap.rpc.Call.getEnvelopeString(Call.java:208)
         at org.apache.soap.rpc.Call.invoke(Call.java:255)
         at test.Test.main(Test.java:42)
    Best regards,
    George

    Is this statement that causes the exception? "Response response = call.invoke(endPoint, "");"
    If so you might be able to catch the SOAPException and interogate the response variable - surround the call with a try, catch block and within the catch you can get the MimeHeaders and check "Content-Type" If it's "text/html" then you know it not a SOAP message so don't use the SOAP api calls.
    It sounds like the web service is offline and the web server is trying to send you an HTML error page which of course is not a SOAP message and so a SOAPException is thrown.

  • Issue while playing the content of Azure Media Services after deleting the channel.

    Hi,
    We are having the issue while playing the content of Azure Media Services after deleting the channel.
    Please find detail scenarios below:
    We have done live streaming of an event using Azure Media Services, event was around 5-6 hrs. After completion of event channel was deleted, when we checked content data
    it was only 1hr. Content has only last 1 hr. recording, we are unable to get full recoding.
    We divided event into two parts to avoid above issue. After completion of 1st part which was of 2 hrs., we stopped the streaming and deleted the channel. New channel was
    created and streaming was started for 2<sup>nd</sup> part, after completion of event channel was deleted. Now we are unable to play the content data for 1st part but able to play the 2nd part of event through content publish URL.
    We have done streaming of 3 hrs. event on 18th April with same process and full recoding was available. 
    Can you let me know what might be the issue?

    Hi,
    Please refer to Justin’s blog and see if it helps:
    http://www.justinkobel.com/post/2012/04/30/SharePoint-2010-Claims%E2%80%93Operation-is-not-valid-due-to-the-current-state-of-the-object.aspx
    As suggested by Alex, please provide more information about your process of changing password.
    Here is an article for updating passwords on SharePoint 2010:
    http://blogs.technet.com/b/seanearp/archive/2011/01/25/updating-passwords-on-sharepoint-2010.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • After using modify/contents some frames go out of stage dimension

    Hello,
    I have a question to all you animators out there.
    I work in after effects and sometimes do some simple illustrations/animations in flash - where I usually switch the bg colour to gray
    as not to see the stage rectangular as it's distracting to me. Then when I have my drawings and a few different frames done I go to
    modify/ choose bg colour to white and check contents to frame all the content inside the document - then I want to export it to swf
    so I can use it in after effects.
    At this point all seems fine, all the frames are in place, however I noticed that frequently when I reopen my flash documet after having done this some frames are outside
    the white stage box (usually later frames, the 1st is in place).
    How do you deal with this?

    Hi all,
    Sorry for the slow response - as I'm sure you can understand, running lots of exports takes a few days and so it's taken me a while to test your suggestions properly.
    The render completes using the media encoder without crashing (MPEG2 Blu-ray and H.264 Blue Ray both worked), however the picture quality has really blurred:
    Original:
    MPEG2 Blu-Ray
    I also ran it in H.264 Blur-ray and this also appeared blurry. Apologies for lack of a screenshot, I deleted the export to conserve disk space.
    This is very similar to the problems I had under File => Export => Movie, which went away after I tweeked the export settings to match as closely as possible the footage (however Premiere then crashed when I tried to export the entire movie rather than just a clip).
    Working settings under File => Export which crashed Premiere but prevented the blurriness:
    Export
    Video and audio
    Entire Sequence
    Filetype
    QuickTime
    Video Settings
    Compressor: H.264
    Frame size: 1280h 720v (1.000)
    Frame rate: 29.97 frames/second
    Pixel Aspect Ratio: Square Pixels (1.0)
    Fields: No Fields (Progressive Scan)
    Audio Settings
    Compressor: Uncompressed
    Sample rate: 48000 samples/second
    Channels: Stereo
    Sample type: 16-bit
    Settings under Adobe Media Encoder
    Any thoughts what I'm doing wrong? This is starting to get really frustrating and I'm genuinely wondering if Premiere is suitable for what I'm trying to do. I've another project a month late in getting started because I want to get Premiere to export this so I know I'm not going to run into the same problems again - but I really don't know what else to try? Any ideas?

  • In Design CS5 Spell check skipping text boxes

    I'm running Mac OSX 10.5.8 on my MacBook.
    I am working on a menu with a number of text boxes.  When I do spell check it seems to only check the box where the cursor is located.  I have tried doing Cmd+A ( to select all the boxes on a page) and it doesn't seem to help.
    I have dynamic spelling enabled, but there are words I know spellcheck dislikes that don't have red lines beneath them.
    I have all the preferences checked and Language:English:USA is in place.  Case sensitive is also checked.
    Any ideas?  I'm nervous I'm going to miss a spelling error which will doubtless subject me to endless ribbing from my coworkers.  However, selecting the actual words in each individual text box will take forever.
    Thanks!

    jeminky wrote:
    That's what I thought, but it didn't seem to be doing so.  There are a number of words I haven't added to my dictionary purposefully - such as bleu - because, while I use them a lot when doing menus, I'd hate to have the word "blue" misspelled in another doc and miss it.
    You can create a character style with the language property, such as French, and any other specific properties you like. ID uses the specified [EDIT] language's ]/EDIT] dictionary when spell-checking content, so "bleu" tagged with the French character style will pass the checker, but "bleu" tagged by default as your default language, like the overwhelming preponderance of your text, will be detected as an error.
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices.
    Message was edited by: peter at knowhowpro

Maybe you are looking for

  • Java.lang.NoSuchMethodException in RPC style WS in WL6.1

    Hi, I am facing some veered exception in the RPC style WS. The SS-EJB that I used as the web service is working fine when I directly try to access the EJB. When I wrote a client I get the following exception on the server side. <Jan 30, 2002 11:41:54

  • Strange behavior of Spry Accordion in IE

    Hi there, I am using DW CS3 and I inserted a spry Accordion in the html page. I added about 15 or so panels to the accordion. It works fine in Firefox but in IE 6 when I click on a panel that is some where in the middle or at the bottom of the page,

  • Download is stuck after 53.25MB, won't progress

    Well, I bought Mountain Lion and it started to download at a good pace but stop at 53.25MB and it won't continue downloading. I did cancel the download and tried again, same result, it stops at 53.25MB... Servers overloaded? Any ideas? Thanks,

  • How do I repeat a command in numbers?

    Excel has the capability to repeat and undo a command.  It appears Numbers can only undo a command (CMD-z).  Does Numbers have the capbility to repeat a command?

  • Where is the iOS6 developer console in Xcode?

    Hi! I've signed up for the developer program and downloaded Xcode Version 4.5 (4G108j) so I have iOS6 running in the simulator but I can't see how to get the new console so I can dubug an Xcode app in a similar fashion to the Safari Developer console