Getting some errors in console of the tomcat for struts web application

hi
am getting following error while deploying my struts app
my struts-config file is as followsl
<struts-config>
<form-beans>
<form-bean name="myForm" type="MyForm" />
</form-beans>
<action-mappings>
<action path="/hello"
               input="/login.jsp"
               name="myForm"
               type="MyAction"
               scope="request"
               validate="true" >
               <forward name="success" path="/success.jsp" />
               <forward name="failure" path="/failure.jsp" />
     </action>
</action-mappings>
<message-resources parameter="ApplicationResources" />
</struts-config>
SEVERE: Parse Error at line 1 column 15: Document is invalid: no grammar found.
org.xml.sax.SAXParseException: Document is invalid: no grammar found.
     at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.error(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl$NSContentDispatcher.scanRootElementHook(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.struts.action.ActionServlet.parseModuleConfigFile(ActionServlet.java:708)
     at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:670)
     at org.apache.struts.action.ActionServlet.init(ActionServlet.java:329)
     at javax.servlet.GenericServlet.init(GenericServlet.java:211)
     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
     at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
     at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3917)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4201)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
     at java.lang.reflect.Method.invoke(Unknown Source)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
Sep 24, 2007 12:56:33 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 1 column 15: Document root element "struts-config", must match DOCTYPE root "null".
org.xml.sax.SAXParseException: Document root element "struts-config", must match DOCTYPE root "null".
     at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.error(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl$NSContentDispatcher.scanRootElementHook(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.struts.action.ActionServlet.parseModuleConfigFile(ActionServlet.java:708)
     at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:670)
     at org.apache.struts.action.ActionServlet.init(ActionServlet.java:329)
     at javax.servlet.GenericServlet.init(GenericServlet.java:211)
     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
     at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
     at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3917)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4201)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
     at java.lang.reflect.Method.invoke(Unknown Source)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)

sikandar wrote:
SEVERE: Parse Error at line 1 column 15: Document is invalid: no grammar found.
org.xml.sax.SAXParseException: Document is invalid: no grammar found.
Sep 24, 2007 12:56:33 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 1 column 15: Document root element "struts-config", must match DOCTYPE root "null".
org.xml.sax.SAXParseException: Document root element "struts-config", must match DOCTYPE root "null".
     at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)Have you declared the DTD? You should have lines like this:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">at the start of you struts-config.xml.

Similar Messages

  • Caculate the license for Small web application

    Hi,
    I am usimg MS product to develop appliction . And now i am interest in JSF. However, the license's caculation seems very complicate and there is no good development tools.
    In MS product like C#, I just buy the development tools only. It included the license for MSDE. And the Web server is free. It is very simple. It is easy to migrage from MSDE to SQL Server when needed.
    How about the JAVA environment ?
    Sun Java Studio Creator + Tomcat + MySQL ??
    How to caculate the license ? There seems some hidden license free for production environment. How can I develop an application in test environment only ?
    I perfer the environment is :
    Sun Java Studio Creator + Tomcat + MSDE
    So I can upgrade to SQL if needed for long run.
    Any idea ?
    Thanks
    Wilson

    Sun Java Studio Creator comes bundled with Sun Appserver (for deployment) and pointbase (database) for development.
    i.e Sun Java Studio Creator + Sun Appserver + Pointbase
    Once the web application is developed you have the option to deploy to any J2EE compliant Application server such as
    Tomcat
    Websphere
    Weblogic
    JBoss
    etc ..
    Similarly you can use any database such as
    Oracle
    MS SQL server
    Sybase
    MySQL
    etc ...
    as long as you have the proper JDBC driver (which most vendors provide).
    The web application devloped by JSC is J2EE standard based. So there is no hidden fee involved to deploy to any other J2EE compliant Appserver or to use any standard Database that has proper JDBC driver.
    - Winston

  • Errors while editing the xsl for dataview web part

    while modifying a dataview webpart in sharepoint designer, i finding the issues for the below line
    <xsl:for-each select="$Rows[substring-before(substring-after(substring-after(@FullName, '?ID='), '>'), '<') = $FullName]">
    errors:
    the tag is marked invalid because it is missing quote for  '>' and '<'
    the tag is marked invalid because it has an extra quote ">

    Hi ,
    According to your description, my understanding is that you got an error when you edited the xsl for dataview web part.
    Please try to change
    <xsl:for-each select="$Rows[substring-before(substring-after(substring-after(@FullName, '?ID='), '>'), '<') = $FullName]">
    To
    <xsl:for-each select="$Rows[substring-before(substring-after(substring-after(@FullName, '?ID='), '&gt;'), '&lt;') = $FullName]">
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Query for log Parser to get number of hits in a day or week for particular web applications or site collection

    Hi All,
    Want to get the number of hits in a day for a web application with IIS logs. so need to know Query for log Parser to get number hits in a day or week for particular web applications or site collection. Kindly help
    Regards,
    Naveen

    I'm trying to get this from WSS 3.0, Hence using the Log Parser

  • I am getting some errors while distilling the post script file.

    I am getting some errors while distilling the post script file. please check and suggest me, how to control this?
    <PDFX ISO="15930-1:2001" COMPLIANT="true">
    PDF/X Compliance Report
    1.  Summary
       Warnings: The total found in this document was 0.
       Violations: The total found in this document was 0.
       No problems were found in the document.
       This document passes PDF/X-1a:2001 compliance checks.
    </PDFX>
    Regards,
    Jack

    @Jack – you were using a joboptions file by Distiller to convert a PostScript file to a PDF/X-1a.
    What you get is no error message, just a report, that everything went ok. And in this case I cannot see any advantage using PDF Export for printing to PostScript/distilling to PDF. Ok, maybe one, CS5 and above would export in a background process.
    To prevent InDesign flattening transparency, you could use PDF/X-4 as your export setting. You cannot use writing to PostScript for that task.
    Check including tags for tagged export to prevent misalignment of text because of a strange bug with PDF Export when you are using 9pt text on 12pt leading or text with a ratio of 9/12 for point size and leading in multicolumn text frames.
    Uwe

  • While installing the BI Content i am getting some error??

    Questions:-
    1).while installing the BI Content i am getting some error plz tell me what is the process??

    Kishore,
    The answer would be simple - correct the error since the error ATM is known only to you...!!!
    Please be specific with your questions...
    http://www.google.com/search?hl=en&client=firefox-a&hs=So5&rls=org.mozilla%3Aen-US%3Aofficial&q=howtocorrecterrorinbusinesscontent+installation&aq=f&aqi=&aql=&oq=&gs_rfai=
    Edited by: Arun Varadarajan on May 6, 2010 1:15 AM

  • I keep getting an error message that says "the ipod cannot not be synced""an unknown error occured (13019).

    I keep getting an error message that says "the ipod cannot not be synced""an unknown error occured (13019). I am trying to put albums on to my ipod by dragging and dropping. I have it set to manually manage music and videos. The albums appear in the music section under Devices, but they don't appear on my actual ipod.
    I have never had any problems doing this before, only in the last few days.

    I am having the exact same issue as you are with my iPod nano. This started happening the same day after I updated the iPod software, so I wonder if it is a bug within the software that Apple needs to resolve. I dragged 3 playlists of new music from my iTunes over to my iPod and sometime while it was trying to add those songs, the error 13019 popped up. Another note, which may not be related at all, was that iTunes told me at some point during this process (I believe before the error notification, but I'm not sure and that may be helpful to know) that I did not have enough room on the iPod to copy all of the songs, but it would copy as many as it could. What is curious, like in your situation, is now all the songs it supposedly copied appear to be on the iPod under the Device->iPod->Music label in iTunes when it is plugged into my computer, the playlists in question are also showing up there, and it does indeed say my memory is full under the iPod's general tab in iTunes. However, when going through my actual iPod when it is not plugged in, none of those songs or playlists are anywhere to be found.
    Anyways, all the established solutions to the 13019 error do not apply to this situation, as my iPod has always been set to manually managed so "unchecking" the Sync Music option under the Music tab of the iPod and rechecking it will not work because it was never checked in the first place.  And voice memos are obviously not applicable since we are not talking about an iPhone failing to sync music.
    Unless anyone can provide a new solution here, I may just have to take my computer and iPod up to the genius bar. Any suggestions would be appreciated.

  • TS4040 I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs re

    I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs repairing. So I click on Repair, and once again I'm prompted for a password, which I enter, then the same error box opens, and so it goes. Can anyone help me with this problem? I'd greatly appreciate it.
    Thor

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Step 1 should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary, and if everything is working as expected after step 1.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • I get an error message after downloading the latest update. It says to download only and then to install manually. How do I fix this?

    I get an error message after downloading the latest itunes update.  It says to download only and then to manually install. How do I do this?  Or, is there some way to make the download work?  Thank you.

    The message is 'errors have occurred, go to tools>download only and try installing manually'.  BTW, I am using Google Chrome.

  • When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until

    When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until yesterday.  HELP!

    The specific text of the error message is very important here — I'm not sure exactly you're encountering here.
    If you're able to connect to your email server and are able send email to other email addresses and if the failures are specific to one email recipient address, then please contact the intended recipient of the failing email, and confirm their address is valid.  (This is the way I'm reading your question.)
    If you are unable to send any email to any other email addresses and this is specific to your email address, then try the web mail client interface (if one is available) to verify your login user and password, and check with your email ISP for assistance.  If your email password works via web mail, follow this Apple troubleshooting guide, then — if everything else fails — I'd probably then entirely remove the email account from Mail.app and re-add it per your email ISP's particular setup requirements.  (Some issue with the setup or maybe a corrupt setting in OS X or a problem at the mail ISP servers is a common problem, but this effects attempts to send to all email addresses via that account.)
    An email account setup is specific to an email provider, unfortunately.   If you're using one of the more common email ISPs, then there are usually setup guides and frequently-asked questions posted online.

  • Creating extensions Firefox 3.6.13: When dragging an XPI file (even pre-made), i'm always getting some error, which is not properly readable, but it says "not found" and an "ok" button.

    Hi! I want to develop an extension for Firefox.
    My problem is that none of the tutorials and sample which i find online work for Firefox 3.6.13 (on Mac).
    When dragging an XPI file (even pre-made), i'm always getting some error, which is not properly readable, but it says "not found" and an "ok" button.
    Please send me some info on how to make a "helloworld" extension installable in Firefox 3.6.13.
    My email is [email protected] Thank you very much!

    You can try to install the extension via File > Open File
    A forum better suited for such questions is this forum:
    *http://forums.mozillazine.org/viewforum.php?f=19 - mozillaZine Extension Development forum
    You need to register on the MozillaZine forum site in order to post at that forum.

  • HT203167 I am trying to download a digital copy to i-tunes and keep getting an error message that says the disk I am attempting to use is full.  What does that mean

    I am trying to download a digital copy to i-tunes, but keep getting an error message stating that the disc I am attempting to use is full.  What does that mean???

    Hi, reagans3.
    Thank you for visiting Apple Support Communities.
    I see you are experiencing issues with iMessage.  I am not sure what troubleshooting steps that you have processed; however, there are some additional steps in the article below that may help.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Cheers,
    Jason H.

  • I get an error message saying that the original file could not be located on about half the songs in my library. Not all but half.

    I'm unable to play approx. half the songs in my library. I get an error message saying that the original file could not be located. I am asked if I want to locate the file, I click locate and get  a screen with a list of confusing looking files and nothing seems to solve the problem. As is probably apparent by now I am not particularly computer literate. I don't understand why this problem occurs on only half my library.

    This "original file cannot be found" thing happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • I'm running snow leopard. The try to open any .mov file in Quicktime, and I get an error message that says, "The document xyz.mov could not be opened. The movie is not in a format that Quicktime player understands. I'm a recent upgrade to Snow Leopard.

    I'm running snow leopard. The try to open any .mov file in Quicktime, and I get an error message that says, "The document xyz.mov could not be opened. The movie is not in a format that Quicktime player understands. I'm a recent upgrade to Snow Leopard.
    Help!
    Thanks, Mark

    Unfortunately, the error message gives no details about what codec might be missing or what it needs.
    If the file can't be opened in QT, it only means you cannot use the QT "Inspector" window to check what compression formats were used to create the file. It does not mean you can't use the Finder "Information" window to check on the compression formats or use a third party media information window (e.g., like VLC which will open many compression formats not supported natively by QT) to determine what kind of data is included in the MOV wrapper. If the file cannot be opened in any app, it is usually a good sign that the file itself is corrupted.
    It's a stupid error message. Apple should do better than that.
    Error trapping is quite extensive but there are still many areas which require human oversight. The message is telling you that either the container has a problem (e.g., not properly terminated, non-standard, or corrupted) or that one or more of the compression formats used is not supported by your current codec component configuration or that the data was encoded using non-standard settings or preferences not supported by QT or that the fourCC code does not match the data contained in the file or that there are timecode inconsistencies, etc., etc., etc. In short there are a near infinite number of possible problems for which it would be very difficult/nearly impossible to program error trapping depending on your sourcing of content and how you process it before it reaches the player app. Think of it like trying to play a BD disc in an DVD player.
    I'll call Apple support when I get a chance.
    Chances are good that they will end up sending you back here. In any case, it is often a good idea to post a sample file for examination by other QT users. At the very least, they should be able to tell you if the sample file will play on other systems which would indicate whether or not the file itself is bad and under the best of circumstances whould allow them to examing the file in detail for various common problems.

  • Hi I recently dropped my ipod touch and now it wont connect to itunes. Everytime i plug it in, i get an error message saying that the usb device is not recognized

    hi I recently dropped my ipod touch and now it wont connect to itunes. Everytime i plug it in, i get an error message saying that the usb device is not recognized

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

Maybe you are looking for

  • Using Disk Warrior on external drive causes MacBook crash

    I work on MacBook System 10.6.7, I back up to LaCie external drive, which I partitioned so that one partition is only for backup, the other is bootable. On this partition I have a clone of Disk Warrior (4.1), to use on the MacBook . Today I ran DW fr

  • Will photos in Photo Stream take up space in the device?

    This is somewhat of an awkward comment but I have been hearing complaints about not being able to delete photos in Photo Stream, and althoguh I am aware photos in Photo Stream are in the Cloud, would they take any space in the device's hard drive? Ju

  • Errors creating a database.. HELP!

    I've installed Oracle 9i on Mandrake 8 but whenever I try to create a database I get the following error: ORA-01078 : Failure in processing system parameters. What does this mean and how can I fix it?? null

  • ActionScript not working for buttons

    I tried making a button in Flash 8 and then I click on the button and go into actions and it works fine. But in Adobe CS I make a button, click on it and go to actions and all of the timeline controls are blanked out. Even if I drag a generic button

  • Attachment limit

    I was wondering how you increase you attachment limit in Mail. I have a .Mac account and I thought it had something to do with that but now I am confused. I hate having to send more than one e-mail to friends to send them multiple attachments. I gues