Error: missing ] after element list Source File: javascript:%20[object%20XULElement] Line: 1, Column: 9 Source Code: [object XULElement]

Can you help me out in letting me know what this means and how I can fix this? I found it in my tools menu under error console. It was listed as a warning, but then there was a option to highlight and evaluate the original warning message that was listed as
Warning: Expected color but found 'null'. Error in parsing value for 'background-color'. Declaration dropped.
Source File: http://www.msn.com/
When I cut and pasted message in the code evaluate box and pressed enter the warring message became an error then stated:
Error: missing ; before statement
Source File: javascript:%20Warning:%20Expected%20color%20but%20found%20'null'.%20%20Error%20in%20parsing%20value%20for%20'background-color'.%20%20Declaration%20dropped.%20Source%20File:%20http://www.msn.com/%20Line:%200
Line: 1, Column: 10
Source Code:
Warning: Expected color but found 'null'. Error in parsing value for 'background-color'. Declaration dropped. Source File: http://www.msn.com/ Line: 0
I am writing to ask for guidance on what to do and how to fix this.
I current have Firefox as my default browser. I have IE 9 and Windows 7 home ed on my HP lap top that has AOL preloaded into it as the mail provider. I am a beginner user and when I got the computer my cousin set up Mozilla and Firefox as a search browser and I like it.
I also have norton security

I think, the problem is with the order (in configuration file) of path to search headers:
     /opt/oracle/product/10g/10.2.0/precomp/admin/pcscfg.cfg
          sys_include=(/usr/include,/opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/include)
          include
          include=(/usr/include)
          include=(/opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/include)
In the filesys:
     ./usr/include/sys:
     -r--r--r-- 1 bin bin 17786 Aug 13 2007 types.h
     ./opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/include/sys:
     -rw-r--r-- 1 root system 18288 Mar 22 2008 types.h
     mode_t came from:
     #include <sys/types.h>
sys/types.h:
     * POSIX Extensions
     typedef unsigned int uint_t;
     typedef unsigned long ulong_t;
     * POSIX and XOPEN Declarations
     #if defined(_LP64) || defined(_I32LPx)
     typedef uint_t mode_t; /* file attribute type */
     #else
     typedef ulong_t mode_t; /* (historical version) */
     #endif

Similar Messages

  • Here is the problem: Error: missing ; before statement Source File: javascript:%20Acrobat%20Plug-in Line: 1, Column: 1 Source Code: Acrobat Plug-in What do I do to correct?

    How do I correct this error that occurs when viewing oublic information documents on the Iowa DNR's web site?

    Corrected file header
    * Modal Dialog Box
    * copyright 8th July 2006 by Stephen Chapman
    * http://javascript.about.com/
    * permission to use this Javascript on your web page is granted
    * provided that all of the code in this script (including these
    * comments) is used without any alteration
    **/

  • Spry Validation Textarea Widget "error: missing ) after argument list"

    Hi all,
    I'm trying to apply validation on textarea in one of my forms but it keeps giving me the same error msg in Firefox "missing ) after argument list". Funny thing is that the line witch initiate the textarea object is one on one from the Spry Framework Documentation!
    Here is fragment of the form code:
    <label id="cContentCont">
         <span class="cFormTag">Comment: <span id="charCounter"></span></span>
         <textarea name="comContent" id="comContent"></textarea>
         <span class="textfieldRequiredMsg"></span>
    </label>
    Here is the code that initialize this object:
    var sprytextarea1    = new Spry.Widget.ValidationTextarea("cContentCont" {maxChars:100, counterType:"chars_remaining", counterId:"charCounter"} ) ;
    I have also 2 other text inputs befor that element and they are working just fine befor i initiate that particular textarea!
    I can't see an error or missing argument in this line, please if somebody encounter the same problem and have solution I be glade to share his experience!
    Thanks !

    Your code is missing a comma after "chars_remaining" as in
    var sprytextarea1 = new Spry.Widget.ValidationTextarea("cContentCont", {maxChars:100, counterType:"chars_remaining", counterId:"charCounter"});
    Hope this helps,
    Ben

  • *REC Error - missing ) after argument list

    Hi all,
    Please note the following code
    *XDIM_MEMBERSET P_ACCOUNT = 50100010.FOB.FC
    *XDIM_MEMBERSET P_PCA = <ALL>
    *XDIM_MEMBERSET P_CUSTOMER = P_DUMMY
    *XDIM_MEMBERSET P_MONTH AS %DUMMY_MONTH%= 2011_DUMMY_MONTH
    *XDIM_MEMBERSET P_MONTH AS %MONTHS% = BAS(2011.TOTAL)
    *XDIM_MEMBERSET P_BUDGET_MODEL AS %BUDGET_MODELS% = BAS(2011.TOTAL)
    *XDIM_MEMBERSET P_VERSION AS %VERSION% = 10
    *LOOKUP COLMOBIL01
    *DIM P_CURR_FROM="%P_BUDGET_MODEL%.CURR_FOB"
    *DIM P_EXCH_RATE_TYPE="%P_BUDGET_MODEL%.EXCH_RATE_FOB"
    *DIM P_CURR_TO="ILS"
    *DIM P_ACCOUNT="P_DUMMY"
    *DIM P_PCA="9999999999"
    *DIM MEASURES="PERIODIC"
    *FOR %S_MONTH% = %MONTHS%
    *DIM LK_%S_MONTH%:P_MONTH="%S_MONTH%"
    *NEXT
    *ENDLOOKUP
    *WHEN P_ACCOUNT
    *IS 50100010.FOB.FC
    *FOR %S_MODEL% = %BUDGET_MODELS%
    *FOR %S_MONTH% = %MONTHS%
    *REC(EXPRESSION=%VALUE%*LOOKUP(LK_%S_MONTH%), P_ACCOUNT=50100010.FOB.ILS)
    *NEXT
    *NEXT
    *ENDWHEN
    When I validate it, I receive a message:
    LINE 0 syntax error: " missing ) after argument list"
    When I delete the *REC line, the validation is OK.
    Any idea why do I get this message?

    Hi Gersh,
    I am sorry if I have not been lear. The script passed validation. The "." is not in the name of the variable but in the values of the dimension. My Budget models IDs were YYYY.MODEL1. I have an attribute called MODEL_NOYEAR, which includes the characters to the right of the ".". When I used it and only inside the LOOKUP added the year it worked fine.
    My Time dimension has the same issue, It is defined as YYYY.MM. Again, in your last proposed script, you have cycled over a property, which only includes the period number. This gave me the idea.
    I know that the REC needs the ( without spaces. Took me one night to find this out....:(
    Now, after I have passed validation a new challenge arrived.
    Basically each Budget Model has 2 properties. One is the Exchange Rate Type and the other is the currency of purchase. The LOOKUP should be accessing another application based on the Month and the two properties of the model.
    It suddenly struck me that the script is not good since the lookup is not bringing the values.
    I have tried the following versions:
    1. Straight forward version - use the name of the propery of the calling dimension. Did not work.
    *DIM L_%SMDL%_%SMNTH%:P_CURR_FROM = P_BUDGET_MODEL.CURR_FOB
    2. Use the value of the calling dimension "." the propery name. Did not work
    *DIM L_%SMDL%_%SMNTH%:P_CURR_FROM = 2011_%SMDL%.CURR_FOB
    3. I have created a variable that should hold the value and then used it. Did not work.
    *LOOKUP COLMOBIL01
    *DIM P_CURR_TO="ILS"
    *DIM P_ACCOUNT="P_DUMMY"
    *DIM P_PCA="9999999999"
    *DIM MEASURES="PERIODIC"
    *FOR %SMDL% = %BUDGET_MODELS%
    *FOR %SMNTH% = %MONTHS%
    *DIM L_%SMDL%_%SMNTH%:P_CURR_FROM = %CF%
    *DIM L_%SMDL%_%SMNTH%:P_EXCH_RATE_TYPE = %ERF%
    *DIM L_%SMDL%_%SMNTH%:P_MONTH="%BY%.%SMNTH%"
    *NEXT
    *NEXT
    *ENDLOOKUP
    *WHEN P_ACCOUNT
    *IS 50100010.FOB.FC
    *FOR %SMDL% = %BUDGET_MODELS%
    *FOR %SMNTH% = %MONTHS%
    *SELECT(%CF%, CURR_FOB, P_BUDGET_MODEL, "ID = 2011_%SMDL%")
    *SELECT(%ERF%, EXCH_RATE_FOB, P_BUDGET_MODEL, "ID = 2011_%SMDL%")
    *BEGIN
    *REC(EXPRESSION=%VALUE%*LOOKUP(L_%SMDL%_%SMNTH%), P_ACCOUNT=50100010.FOB.ILS)
    *END
    *NEXT
    *NEXT
    *ENDWHEN
    I can not escape the feeling that somehow I do not understand the way the BPC is handling the data and how and when it calculates variables and defines them.
    Any idea how do I perform the lookup based on the property values?
    Thanks,
    Avihay

  • This message always appears: [JavaScript Application] "Error: missing } after function body" Please, i need help with this.

    A window appears with this message : [JavaScript Applicaction] Error: missing } after function body.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Exception: Oracle Parser Error: Empty Global Elements List

    Hello and Thanks in advance for any help.
    I created a synchronous process bpel. I made a partnerlink callout to an external bpel process. This partnerlink references the wsdl locally as opposed to directly referencing the process on the server. After I created the invoke and the input variable, I went back to the invoke, clicked on the "flashlight explorer" to see the elements in the input type and I get an "Empty Global Elements List" error. I have not attempted any assigns and all schemas are present in the directory. I have also tried deleting the parnerlink, invoke, and the input variable created in the invoke and then recreating all of the above.
    I am using JDev 10.1.3.3.0
    Any suggestions?

    Oracle has opened a bug on this issue.
    Although a pain in the butt you should be able to code the assigns by hand. I've been able to use the invoke wizard and bore down into the structures (clink on the client flashlight and keep going) to capture the query elements

  • Error -54 after upgrading itunes - library file cannot be saved

    after uploading newest itunes software, i got error -54  that the itunes library file cannot be saved. an unknown error occurred. why should i care adn what should i do?

    I just called Apple Support and I think they helped me, but I'm still waiting to see if the error message returns. I was experiencing the same problem. Whenever I started iTunes, I would get the -48 error message. Everything else was working fine. Apple Support instructed me to delete some files from a folder and restart my pc. I did this and it seems to have worked. The folder is on my C:/ drive. Using Windows Explorer, I went to my C:/ drive and then opened the following folders in this order: "Documents and Settings", "Administrator", "Application Data", "Apple Computer", "iTunes", "iPod Software Updates". Inside the iPod Software Updates folder, I found four files which I deleted. I then emptied my trash can and restarted my pc. After I restarted my pc and opened iTunes, the error message did not come up. So it looks like my problem has been solved. Just some minor glitch having to do with the last update. I should mention that I did just get an iPod Classic 80 gig which replaced my 30 gig iPod Photo which just died.

  • When i add a background image to form and it gives me such kind of issues so i have deleted the resource file in the solution explorer and then when i reopened my projectt it again gives errors of missing root element of InvalidResx.file amd of XMl.

    I have already go to properties then resources and try to remove resource option but it was't working.so help me by giving another technique to solve this issue.

    I have already go to properties then resources and try to remove resource option but it was't working.so help me by giving another technique to solve this issue.
    Hello,
    It will be more specific if you could share the screenshot of that error with us.
    In addition, if this issue is mainly related to the BackGroundimage property, you could consider using the following suggestion.
    We could click our project to expand the nodes and click "InitializeComponent()" to navigate to its desiginer code.
    Then check whether there is a line which has " Me.BackgroundImage =", remove that line and then remove the resource file with the following step.
    Project property->Resources->Switch "Files" or "Images" to see where you have setted for that image file, find it and remove it.
    Then save all your changes to see whether it's OK.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Save and Close goes to error page after modifying List in Infopath

    Hi,
    I have a list in Sharepoint 2013 which I have modified using Infopath 2013. After modification, If i open the list in Sharepoint site, i am not able to Save or Close the list. It gives "The webpage cannot be found" error.
    Regards, Shreyas R S

    Hi,
    The new feature Minimal Download Strategy is activated on your site. Can you please deactivate
    this feature and see?
    It
    is  available under Site Actions -> Manager Site Features
    15/start.aspx# -
    This is due to MDS feature enabled on lyour iste.
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Missing Premier Elements 10 .exe file on Adobe site

    I am reinstalling Premier Elements 10 on a new PC and the .exe file appears to be missing on the Adobe download page. 
    Any ideas on how to install would be great!
    Regards,
    Chris

    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 10:
    http://prodesigntools.com/photoshop-elements-10-direct-download-links-pse-premiere-pre.htm l

  • Error: missing ck-log-system-start file

    Hi,
    I'm on a fully updated Arch_X86-64/KDE system that works fine.
    I occasionally check by boot log (journalctl -b) , and found the following error:
    Failed at step EXEC spawning /usr/sbin/ck-log-system-start: No such file or directory
    As said, my system works fine.
    Should I fix it?
    If Y, by creating the missing file (using touch) or otherwise.
    Please advise!
    Thnaks

    Thanks Karol,
    Here's the requested output:
    # systemctl status ck-log-system-start
    ck-log-system-start.service
    Loaded: not-found (Reason: No such file or directory)
    Active: inactive (dead)
    As indicated by the following console-kit isn't running either.
    # systemctl --failed
    UNIT LOAD ACTIVE SUB DESCRIPTION
    console-kit-daemon.service loaded failed failed Console Manager
    console-kit-log-system-start.service loaded failed failed Console System Startup Logging

  • JNDI names missing after deployement of .ear files

    I am trying to take an app that is currently in 1 ear file and split it into 2
    ear files for 2 weblogic server instances. When I split the ear and deploy, deployment
    seems to work fine but JNDI names never show up. When I deploy as one ear, all
    JNDI names show up fine. The jars and wars inside the ears are exactly the same
    build artifacts for either configuration. The original application.xml from 1
    ear is split into 2 ears appropriately.
    Any ideas?

    Try completely closing out of iBooks: from the Home screen double tap the Home button, once the multitask bar appears swipe up on the iBooks icon to close out of iBooks. Now restart the iPad and see if this might help resolve the issue.
    Alternatively instead of a restart you could perform a Reset once you close iBooks.
    Reset: hold down the Home and Sleep/Wake button at the same time for ~10sec, ignore the Slide to Power Off, the iPad will then Reset, Note: No data is lost during a Reset.

  • Resource Configuration Files  - LSX-00320: missing required elements in al

    Hi,
    I have completed the following steps to configure resource:
    1. Create Directory ELEVENG_XML.
    2. Create Folder
    DECLARE
    res BOOLEAN;
    BEGIN
    res:=DBMS_XDB.createFolder('/cm/');
    END;
    3. Create Resource for a file app_rc.xml'.
    DECLARE
    XMLdoc XMLType;
    BEGIN
    XMLdoc:=(XMLTYPE(bfilename('ELEVENG_XML','app_rc.xml'),NLS_CHARSET_ID('AL32UTF8')));
    IF(DBMS_XDB.CREATERESOURCE('/cm/app_rc.xml', XMLdoc))
    THEN
    DBMS_OUTPUT.PUT_LINE('Resource is created');
    ELSE
    DBMS_OUTPUT.PUT_LINE('Cannot create resource');
    END IF;
    COMMIT;
    END;
    Error is :
    ORA-31154: invalid XML document
    ORA-19202: Error occurred in XML processing
    LSX-00320: missing required elements in <all>
    ORA-06512: at "XDB.DBMS_XDB", line 192
    ORA-06512: at line 5
    My xml file app_rc.xml is
    <ResConfig xmlns="http://xmlns.oracle.com/xdb/XDBResConfig.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.oracle.com/xdb/XDBResConfig.xsd
    http://xmlns.oracle.com/xdb/XDBResConfig.xsd">
    <defaultChildConfig>
    <configuration>
    <pre-condition>
    <existsNode>
    <XPath>/Resource[ContentType="xml"]</XPath>
    </existsNode>
    </pre-condition>
    <path>/cm/app_rc.xml</path>
    <!--<resolvedpath/>-->
    <!--<oid/>-->
    </configuration>
    </defaultChildConfig>
    </ResConfig>
    As per the the schema only XPATH is needed for <existsNode>, but still throws the error LSX-00320: missing required elements in <all>.
    How can we solve this? Is there any error in the ResConfig xml file?
    Regards
    Raji

    Validate your app_rc.xml file against the XMLSchema XDBResConfig.xsd
    Your xml file is missing
      <!-- resource configuration element  -->
      <complexType name = "ResConfig">
        <all>
          <element name="defaultChildConfig" type="rescfg:defaultConfig" minOccurs="0"  maxOccurs="1"/>
          <element name="defaultChildACL" type="rescfg:defaultACL" minOccurs="0" maxOccurs="1"/>
          <element name="event-listeners" type = "rescfg:event-listeners" minOccurs="0" maxOccurs="1"/>
          <element name="XLinkConfig" type="rescfg:xlink-config" minOccurs="0" maxOccurs="1"/>
          <element name="XIncludeConfig" type="rescfg:xinclude-config" minOccurs="0" maxOccurs="1"/>
          <element name="SectionConfig" type="rescfg:section-config" minOccurs="0" maxOccurs="1"/>
          <element name="ContentFormat" type="rescfg:content-format" minOccurs="0" maxOccurs="1"/>
          <!-- application data -->
          <element name="applicationData" minOccurs="0" maxOccurs="1" >
             <complexType>
               <sequence>
                 <any namespace="##other" maxOccurs="unbounded" processContents="lax"/>
               </sequence>
             </complexType>
         </element>
        </all>The important XML Schemata can be found in the last sections in the Oracle XMLDB Developers Guide for your version of the database
    Edited by: Marco Gralike on Jan 6, 2009 10:35 PM

  • DNSService error and self expanding console.log file

    Just like misskool, I had a problem with self-expanding console.log files. As suggested by roam, I erased the com.apple.iTunes.plist file to fix the issue. Unfortunately, 2 days after, the same problem started again. I noticed it happened soon after I tried (without success) to establish a mac OS 10.3.9 to mac OS 10.4.9 wireless network - either that or the re-activation of AppleTalk on my iBook. The error message in the console.log file is a repeated one-liner :
    DNSServiceProcessResult() returned an error! -65537
    The original advice from roam worked until I tried to network my two macs. In his idea, iTunes was the probable origin of the problem. Is it ?

    The mDNS error message was associated with an iTunes update, though that is not to say it is caused by iTunes though it may well have. The error is from the mDNS service, a system wide network service, which looks for available services on the network.
    I don't know what is causing this error but it has been known about since 2005, evidenced by this thread. It is a highly technical discussion,
    http://lists.apple.com/archives/Bonjour-dev/2005/Jul/msg00023.html
    which talks about the error occurring when two ethernet interfaces are active, but does not err when only with one. It is possible this observation is linked to your experience trying to network two Macs.
    Click on the Next Threads on that page to read more.
    Another thing to note is that the error code given is general and undescriptive, where one poster writes " Normally when you see that error it means that mDNSResponder (mdnsd) crashed." ... but there is no specific meaning given to the error code as to why it did.
    So it's a bug but I cannot explain why it occurs or what role the iTunes update played in bringing it to the fore.
    If it continues to be a problem with the same error message printing in the console, open Activity Monitor and mDNS should be active there and kill that mDNS Process.
    As i have no iTunes updated, and do not want to try and create this error, I'll leave it up to you to try and determine some causes and effects regarding the renegade process of mDNS.

  • Pdf portfolio source file name and date in file details

    Is it possible to import the source file name and extension as well as the source file created date in the portfolio file details?  Need to document source to portfolio in working with 3rd parties that will only have the original source.  Need to document what was converted into pdf as not all files in a directory will successfully convert to pdf.  Sometimes need to convert 100's of files.  Manual entry is inefficient.  the file names and modified dates are displayed on the Combine Files dialog.  is there a way to capture the detail on that page?

    I don't need the detail of when the pdf was added to the portfolio.  I
    need know which dwg or jpg or word file was converted and the original
    created date of that file for control of information.
    That is impossible; sorry. For some *very specific* types of conversion to PDF the pdfx:SourceModified XMP tag will be set to show the last-modification date of the source file (for example DOCX files converted using MS Word), but there will never be a human-readable record of the source filename or its creation date unless you have manually added them as document XMP properties after conversion (this is what the "Custom Properties" dialog is for). To embed source data automatically would raise no end of privacy and security problems for customers, who most certainly do NOT want their recipients seeing details of internal documents.
    Without writing a plugin there's no access to the internal workflow of the Combine Files dialog, so you cannot use a script to read the names and dates of the files *before* conversion and store them automatically in the new PDF Portfolio's Fields array.

Maybe you are looking for

  • Need help with JOB_OPEN, JOB_SUBMIT and JOB_CLOSE

    I am calling a standard Report which popups list of sessions. Out of which, i select one session and the data belonging to that session is deleted from data base. I need to perform the above task using a single report which consists of  JOB_OPEN, JOB

  • Artwork guide marks showing on PDF - how to remove

    Hi, We've uploaded some PDF files to our website and when viewed using Firefox 21.0 the artwork crop marks are visible. There is no problem when viewed on IE, just Firefox - within the actual browser window. Can someone please advice what setting on

  • Suddenly prints images in reverse or negative or polarized

    I've never witnessed an issue like this before. Suddenly my machine is printing graphics with colors inverted, like a photo negative. It doesn't always happen, which is blowing my mind. If I open an image in Preview.app and print, it prints in revers

  • No capital A when first letter of word.

    I Cant get the shift A to give me a letter when A is the first letter of a sentence. I have to use the cap lock key, and this is only on one of my accounts, any ideas?

  • How to make a menu for HD content (not BD)

    I am a newbie on this forum and I am not sure where to post: I am a middle-aged woman with blond (grey) hair (**** happens) BUT I have been 'playing around' with computers since 1977. I have been editing video and audio since the 90's and mainly as a