DummyForm.elements.jscook_action has no properties

Hi,
I build a jsCookMenu, now it is ok, but the link to the pages is not working, and the errors showing are this:
Erro: Propriedade desconhecida 'filter'. Declara��o interrompida.
Arquivo-fonte: http://localhost:8080/teste/faces/myFacesExtensionResource/org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader/11559084/navmenu.jscookmenu.HtmlJSCookMenuRenderer/ThemeIE/theme.css;jsessionid=5472DA30BC5ABCA4F47981B7E5E3B024
Linha: 33
Erro: dummyForm.elements.jscook_action has no properties
Arquivo-fonte: http://localhost:8080/teste/faces/myFacesExtensionResource/org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader/11559084/navmenu.jscookmenu.HtmlJSCookMenuRenderer/MyFacesHack.js;jsessionid=5472DA30BC5ABCA4F47981B7E5E3B024
Linha: 29
Anybody alread had these erros? How are you fixed?
Thanks.

Did you solve the problem?
I encountered this error too. Before that happened I used Tomahawk 1.1.1. The navigation through navigation rules worked. The apllication is constructing a dynamic menu dependend on the user. The following statements where used to create a menu item.
String itemlabel = "Page1";
String action = "go_page1"; // A]go_page1 doesn't work
NavigationMenuItem item = new NavigationMenuItem(itemlabel, action, null, false);
The content of the web.xml is
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
     <context-param>
          <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
          <param-value>server</param-value>
     </context-param>
     <context-param>
          <param-name>javax.faces.CONFIG_FILES</param-name>
          <param-value>/WEB-INF/navigation.xml,/WEB-INF/managed-beans.xml</param-value>
     </context-param>
     <context-param>
          <param-name>com.sun.faces.validateXml</param-name>
          <param-value>true</param-value>
     </context-param>
     <context-param>
          <param-name>com.sun.faces.verifyObjects</param-name>
          <param-value>false</param-value>
     </context-param>
     <filter>
          <filter-name>MyFacesExtensionsFilter</filter-name>
          <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
     </filter>
     <filter>
<filter-name>UploadFilter</filter-name>
     <filter-class>com.sun.rave.web.ui.util.UploadFilter</filter-class>
     <init-param>
     <description>
     The maximum allowed upload size in bytes. If this is set
     to a negative value, there is no maximum. The default
     value is 1000000.
     </description>
     <param-name>maxSize</param-name>
     <param-value>1000000</param-value>
     </init-param>
     <init-param>
     <description>
     The size (in bytes) of an uploaded file which, if it is
     exceeded, will cause the file to be written directly to
     disk instead of stored in memory. Files smaller than or
     equal to this size will be stored in memory. The default
     value is 4096.
     </description>
     <param-name>sizeThreshold</param-name>
               <param-value>4096</param-value>
          </init-param>
     </filter>
     <!-- wird noch nicht verwendet
     <filter>
<filter-name>ZugriffsFilter</filter-name>
<filter-class>com.asci.control.ZugriffsFilter</filter-class>
     </filter>
     <filter-mapping>
     <filter-name>ZugriffsFilter</filter-name>
     <servlet-name>Faces Servlet</servlet-name>
     </filter-mapping>
     -->
     <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages -->
     <filter-mapping>
     <filter-name>MyFacesExtensionsFilter</filter-name>
     <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
     <servlet-name>Faces Servlet</servlet-name>
     </filter-mapping>
     <!-- extension mapping for serving page-independent resources (javascript, stylesheets, images, etc.) -->
     <filter-mapping>
     <filter-name>MyFacesExtensionsFilter</filter-name>
     <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
     </filter-mapping>
     <filter-mapping>
          <filter-name>UploadFilter</filter-name>
          <servlet-name>Faces Servlet</servlet-name>
     </filter-mapping>
     <servlet>
     <servlet-name>Faces Servlet</servlet-name>
          <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
     <load-on-startup>1</load-on-startup>
     </servlet>
     <servlet>
          <servlet-name>ThemeServlet</servlet-name>
          <servlet-class>com.sun.rave.web.ui.theme.ThemeServlet</servlet-class>
     </servlet>
     <servlet>
          <description>L�dt Konfigurations- und Grunddaten</description>
          <display-name>AppInitServlet</display-name>
          <servlet-name>AppInit</servlet-name>
          <servlet-class>com.asci.control.AppInitServlet</servlet-class>
          <load-on-startup>1</load-on-startup>
     </servlet>
     <servlet-mapping>
          <servlet-name>Faces Servlet</servlet-name>
          <url-pattern>/faces/*</url-pattern>
     </servlet-mapping>
     <servlet-mapping>
          <servlet-name>ThemeServlet</servlet-name>
          <url-pattern>/theme/*</url-pattern>
     </servlet-mapping>
     <servlet-mapping>
          <servlet-name>AppInit</servlet-name>
          <url-pattern>/appinit</url-pattern>
     </servlet-mapping>
     <welcome-file-list>
          <welcome-file>faces/Login.jsp</welcome-file>
     </welcome-file-list>
     <jsp-config>
          <jsp-property-group>
               <url-pattern>*.jspf</url-pattern>
               <is-xml>true</is-xml>
          </jsp-property-group>
     </jsp-config>
</web-app>
This all worked.
On the site http://www.irian.at/myfaces/jscookmenu.jsf I learned that there are other possibilities to use the jsCookMenu, links and action listeners. But it seemed that they didn't work with Tomahawk 1.1.1, did they? May be i did a misteak. I tried
String action = "A]http://localhost:8080";
NavigationMenuItem item1 = new NavigationMenuItem("Link1", null);
and
String action = "http://localhost:8080";
NavigationMenuItem item2 = new NavigationMenuItem("Link2", null);
Both didn't work. Now I downloaded tomahawk 1.1.3, renamed tomahawk-1.1.3.jar to tomahawk.jar, replaced the old version and moved the <t:jscookMenu> into a form.
During next Tomcat startup (5.0.28) an error occured:
06.09.2006 18:26:31 org.apache.myfaces.component.html.util.ExtensionsFilter <init>
WARNUNG: Please adjust your web.xml to use org.apache.myfaces.webapp.filter.ExtensionsFilter
Nevertheless the application was loaded. Login was successfull but when the first page containing the menu was loading an Exception was thrown:
com.sun.rave.web.ui.appbase.ApplicationException: javax.servlet.ServletException: org/apache/commons/lang/builder/HashCodeBuilder
     com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java:601)
     com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:316)
     com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
     com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
     com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
     javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
     com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
     org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
note The full stack trace of the root cause is available in the Apache Tomcat/5.0.28 logs.
This log shows that HashCodeBuilder was missing
2006-09-06 18:44:04 ApplicationDispatcher[nef] Servlet.service() for servlet jsp threw exception
java.lang.NoClassDefFoundError: org/apache/commons/lang/builder/HashCodeBuilder
After searching the web I downloaded commons-lang-2.1.jar and added it to WEB-INF/lib. During next Tomcat startup the WARNING didn't disappear.
06.09.2006 18:47:20 org.apache.myfaces.component.html.util.ExtensionsFilter <init>
WARNUNG: Please adjust your web.xml to use org.apache.myfaces.webapp.filter.ExtensionsFilter
Now the first page with jscookmenu was loaded successfull, but there was found an error in the logs:
06.09.2006 18:56:09 org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader getLastModified
SCHWERWIEGEND: Unparsable lastModified : @lastModified@
What does that mean? This error occurs only once.
Now the links are working. (status bar of Firefox 1.5.0.6 shows "form1__id1_menu:A]http://localhost:8080/nef".)
But the former navigation with navigation rules is not working. The reason is the following javascript error, which shows the JavaSript-Console plugin for Firefox:
Fehler: dummyForm has no properties
Quelldatei: http://localhost:8080/nef/faces/myFacesExtensionResource/org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader/11575617/navmenu.jscookmenu.HtmlJSCookMenuRenderer/MyFacesHack.js
Zeile: 29
What's the matter?
Thank you.

Similar Messages

  • "Adobe Premiere Elements 13 has stopped working"

    I got a copy of Premiere Elements 13 on "Black Friday" (one month ago).  I am using stabilization and sometimes get "Adobe Premiere Elements 13 has stopped working".  I have been guessing at the problem and run several experiments - one being; stabilize a clip in it's own project and create an MP4 to use in the final project.  The latest clip seems to render fine, but crashes on playback (sometimes this happened on version 12 but not so consistently and often.  I'm running 64 bit Windows 7 Home Premium, with 6GB RAM, 3.30GHz, Intel Core i3 - 4 core processor.  I use two monitors with the built-in video hardware.  Rendering max's out all four cores while stabilization taxes the RAM.  Where can I look to find out more details about this problem (only guessing with anything less)?  Thanks for the help.

    Ray
    Thanks for the reply with further details and results.
    The generalization is that you (manually) or the project (automatically) sets the project preset to match the properties of the source media.
    But, if you have more than one format to import, you can still import that "atypical" format into the project (a project cannot have more than one project preset). But, the Shake Stabilizer will not stabilize it since it's properties do not match the description of the project preset. You can easily understand this by looking at the description of the project preset that has been set for the project and comparing it with specification of your video source. But, I have not yet found that such a situation creates a project/program "stopped working" as in shutting down the project/program.
    I suspect a major factor when you run into a Shake Stabilized induced project/program shutdown is computer resource demands of the feature for the video which is requiring the stabilization. And, I have found that the stabilization times can be long.
    Consequently, if the Shake Stabilizer does not cause the project/program to shutdown when asked to stabilize a video clip (without other effects). I am very guarded in the outcome, especially stabilization times, when the Shake Stabilizer is asked to stabilize a video clip to which other effects have already been applied.
    We will looking forward to your results.
    Thank you.
    ATR

  • Adobe premiere elements 13 has stopped working message

    Every time I open adobe premiere elements 13 and download any form of media, in about every 2-3 minutes when i'm editing my video, A message will come up stating that "Adobe Premiere Elements 13 has stopped working." It forces me to close the application. I went to a computer expert and he said that my computer meets all the requirements of the software and even exceeds some of them since it's only 2 years old. Why does this keep on happening to me and how do I fix it?

    senseimike
    Premiere Elements 13 on what computer operating system?
    Have you updated 13 to 13.1 using an opened project's Help Menu/Update? If not, please do so.
    Now the usual drill questions...
    1. Do the problems exist with and without the antivirus and firewall(s) disabled?
    2. Are you running the program as Administrator?
    3. Are you using a pen and tablet device instead of a mouse?
    4. Is your video card/graphics card up to date according to the web site of the manufacturer of the card. According
    to the Device Manager/Display Adapters, how many video cards/graphics cards is your computer using? Are you running
    a multi- monitor system?
    5. Is the latest version of QuickTime installed on your computer along with Premiere Elements 13/13.1?
    6. What are the properties of your source media including file extension and duration? Knowing brand/model/settings of the camera that
    recorded the videos is probably the quickest way to get at that needed information. What project preset are you (manually) or the project
    (automatically) setting?
    7. What specific edits are you doing in the project when the program crashes/shuts down? Is there any consistency to the "stopped working"?
    You talk about every 2 or 3 minutes in the workflow. But what is the size of the project by the time the problems set in....2 or 3 minutes
    from the time you started the project or 2 or 3 minutes after you have been working on the project for 10 to 90 minutes?
    Please review and consider the above, and then we will decide what next.
    Thank you.
    ATR

  • Premiere Elements 13 has stopped importing MOV. files. Quicktime is installed and working

    Premiere Elements 13 has stopped importing MOV. files. Quicktime is installed and working.

    Nowconfused
    I tried to get background information on the video from your camera but all I could find so far is that the camera is probably recording
    1080p (1920 x 1080 @ 29.97 or 30 progressive frames per second. What are you (manually) or the program (automatically) setting as the project
    preset to match the properties of your video source. See Edit Menu/Project Settings/General and the readings for Editing Mode, Timebase, Frame Size, and Pixel Aspect Ratio even if the fields look grayed out.
    How are you importing the files into the Premiere Elements 13 project - with the Add Media/Files and Folders/Project Assets from a computer
    hard drive location or are you making a USB connection between the camera and computer/Premiere Elements 13 and using Add Media/Video ..../Video Importer? Could you possibly have changed the way you are importing the files into a project?
    Would it be possible for you to send a small sample of one of these .mov files that will no longer import? Maybe in a Dropbox link that you include in a reply?
    Do you have any of the older files still available - the ones that did import at one time? If so, will they still import into a project or do they now not import?
    More later.
    Thanks for the follow ups.
    ATR

  • Adobe Premiere Elements 9 has encountered a problem and needs to close.

    Adobe Premiere Elements 9 has encountered a problem and needs to close. Asked to be debugged no response an then the program don not respond.
    If i Run an old project direct from the file PE 9 it works and then go to a new project it works but from the start up  it just closes down.
    Bridge is also starting to do it

    From the Premiere Elements Information FAQ http://forums.adobe.com/thread/1042180
    •What version of Premiere Elements? Include the minor version number (e.g., Premiere Elements 12 with the 12.0.1 update).
    •What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac"
    •Has this ever worked before?  If so, do you recall any changes you made to Premiere Elements, such as adding Plug-ins, brushes, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers; or installing/uninstalling any programs?
    •Are you using an account with Administrator Privileges?
    Run as Administrator http://forums.adobe.com/thread/969395 (Encore + "All" Premiere)
    •Have you installed any recent program or OS updates? (If not, you should. They fix a lot of problems.)
    •What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    •If you are getting error message(s), what is the full text of the error message(s)?
    •What were you doing when the problem occurred?
    •What other software are you running?
    •Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    And some other questions...
    •What are you editing, and does your video have a red line over it BEFORE you do any work?
    •Which version of Quicktime do you have installed?
    What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    What is your exact graphics adapter driver version?
    Have you gone to the vendor web site to check for a newer driver?
    For Windows, do NOT rely on Windows Update to have current driver information
    -you need to go direct to the vendor web site and check updates for yourself
    ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool
    nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us

  • I purchased Premiere Elements 13 a few weeks ago, it downloads without issue, but I can't open it. I get an error message that reads "Elements 13 has stopped working" HELP!!!

    I purchased this online, downloaded it without issue, and it won't open. I get an error message that states "Elements 13 has stopped working"
    I have removed it and redownloaded it several times, and still no luck... HELP!
    When I contacted Adobe support that's all they suggested, to reinstall...

    taveliben
    What computer operating system?
    Uninstall, free ccleaner run through, and reinstall with antivirus and firewall(s) disabled is not a bad idea. But, let us look at some other
    factors before that.
    1. When you try to open the program, how far do you get....Welcome Screen - clicking on Organizer or Video Editor or other?
    Have you tried to open the program directly from the Adobe Premiere Elements.exe file after you have applied Run As Administrator to that file?
    2. Does the problem exist with and without the antivirus and firewall(s) disabled? Are you working in a school or company network?
    3. Are you working with a pen and tablet device instead of mouse?
    4. Is your video card/graphics card driver version up to date according to the website of the manufacturer of the card?
    4. Do you have the latest version of QuickTime installed and are you running the programs as administrator?
    Let us start here and then decide what next based on the details in your reply.
    Besides uninstall/ccleaner/reinstall, we may next try deleting the Adobe Premiere Elements Prefs file or the whole 13 Folder in which it
    exists or installing the program in a newly created user account with administrative privileges and trying to run the program from there.
    But, let us rule in or out the first 4.
    Any questions or need clarification on any of the above, please do not hesitate to ask.
    Thank you.
    ATR

  • ECC 50 DI Installation error-FJS-00003  TypeError: f has no properties

    Dear Experts,
    Earlier we had local installtion of ECC50 (DEV/TEST and PRD-CI) with SQL2000 DB, WIN2K3 EE OS.
    We want to install one new application server i.e. PRD-Dialog Instance, so we have kept all the systems on domain (changed from Local to Domain).
    We performed below activities to put all systems on same Domain.
    1. Down the systems
    2. Changed Domain
    3. Created SAP users SAP<sid> and sapservice<sid> on DC with Global&local admin rights
    4. Changed owner of both SAP services with newly created domain SAP user SAPSERVICE<sid>
    5. Updated Host file entries
    6. started Servers with Domain user <sid>adm , it is up and running.
    Now we logged in with new application server with <sid>adm domain user and started Dialog instance installation thru sapinst.
    After inserting installation drive, in next step it throws below error.
    INFO[E] 2008-01-28 16:07:16
    File system export (share) saploc does not exist.
    ERROR 2008-01-28 16:07:21
    FJS-00003  TypeError: f has no properties (in script InstallationScript_159, line 9500: ???)
    Please revert back with valuable inputs.
    Is there any steps missing to perform?
    Regards,
    Rakesh.

    Hello Manoj,
    Thank for your reply. I have installed JDK 1.4.2_12 version with JAVA_HOME env rightly set in the path as without which, i wouldnt have even gotten the installation master screen(Gui).
    Any other workaround do u see?

  • Adobe Photoshop Elements 9 has stopped working... how can I make it work?

    Hi.  I have just bought a new copy of Photoshop Element 9.  It installed OK, but when I try to open the Editor, I get the message "Adobe Photoshop Elements 9 has stopped working. Windows is checking for a solution to the problem", followed shortly by the message "Adobe Photoshop Elements 9 has stopped working.  A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available".  The only option then is Close Program.  The Organizer has the same problem.
    Does anyone know how to get it to work?  It hasn't just stopped working, it has never worked at all.  If anyone at Adobe are monitoring this thread, please can you tell me what the problem is and how to sort it out?  I tried the Adobe call-back service but all I got was a computer phoning me up, and no person available.
    Karen

    Hi,
    Please try couple of probable solutions as mentioned below:
    Solution 1:
    1. Close Elements.
    2. Launch the Photoshop Elements Welcome Screen and hold down ctrl + alt + shift as you click Editor.
    3. Continue to hold the keys until you see a message box asking if you want to delete Photoshop Elements settings file; click Yes. Elements will open with default preferences.
    Solution 2: In case any network printer is attached try to launch without network or printer uninstall or make different printer as default.
    Solution 3: Try launching with anti-virus off or removing PSE from conflicting list.
    Solution 4:
    On the drive on which you have installed PSE,on my machine it is on C:
    Go  to C:\Program Files\Adobe\Photoshop Elements  10\Locales\<locale>\Plug-Ins\Import-Exportand you will find twain  plug-in. Remove that plug-in from that location and copy it somewhere  else.
    Now launch PSE and check if it works.
    For related post for Twain please see this:http://forums.adobe.com/message/2954743#2954743

  • Adobe Photoshop Elements 11 has ended up in my thrash and now will not open i transferred it back to

    Adobe Photoshop Elements 11 has ended up in my thrash and now will not open i transferred it back to applications but it will not open it says to re-install but I have lost the cd/dvd I do have the package with the serial no. can you please please help me

    You have a heap of work to do before you can reinstall it. NEVER try to get rid of PSE by putting it in the trash. You must use the uninstaller. By attempting to trash it you just made a big old mess for yourself.
    You will need to download and run this:
    http://www.adobe.com/support/contact/cs5clean.html
    Then go through your hard drive and manually dig out and trash all the bits you can find. Pay special attention to the library at the top of your hard drive>Application Support>Adobe.
    Once you successfully get that cleaned up, you can try reinstalling.
    You can download PSE 11 here, but you must follow the Very Important Instructions exactly, even when they don't seem to make much sense, or it won't work:
    http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l

  • My new Photoshop Elements 12 has a RAW file plug-in, but when I try OPEN to select a photograph, there are only generic icons instead of pictures-- I can't tell one photograph from another! How can I fix this so I can tell which photograph I want to open?

    My new Photoshop Elements 12 has a RAW file plug-in, but when I try OPEN to select a photograph, there are only generic icons instead of pictures-- I can't tell one photograph from another! How can I fix this so I can tell which photograph I want to open? Thank you!

    Thanks R_Kelly:
    Adobe Photoshop Elements Version: 12.0 (12.1 (20140303.12.1.49334)) x32
    Operating System: Windows Vista 32-bit
    Version: 6.0 Service Pack 2
    System architecture: Intel CPU Family:6, Model:15, Stepping:11 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 4
    Processor speed: 2400 MHz
    Built-in memory: 3069 MB
    Free memory: 1631 MB
    Memory available to Photoshop Elements: 1598 MB
    Memory used by Photoshop Elements: 69 %
    Image tile size: 128K
    Image cache levels: 8
    Video Card: ATI Radeon HD 4800 Series
    Video Mode: 1680 x 1050 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 4800 Series
    Video Card Memory: 512 MB
    Application folder: C:\Program Files\Adobe\Photoshop Elements 12\
    Photoshop Elements scratch has async I/O enabled
    Required Plug-ins folder: C:\Program Files\Adobe\Photoshop Elements 12\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Photoshop Elements 12\Plug-Ins\
    The first thing I did was UPDATE. I have all the latest updates available (according to the updater). The Camera Raw Plug-in says it is version 8.0.
    The RAW files are from a Canon T3i. It's a very common camera, I can't believe it wouldn't be supported.

  • Why do I get this error message when I open Organizer in Photoshop Elements 11 "Elements Organizer has stopped working"? My only option is to Close Program so I am effectively locked out of my photo catalogue.  I have reinstalled the program to no avail.

    Why do I get this error message when I open Organizer in Photoshop Elements 11 "Elements Organizer has stopped working"? My only option is to Close Program so I am effectively locked out of my photo catalogue. I have tried reinstalling the program but it made no difference to the error message.
    Could someone help please?  Steph

    Hi,
    Please give a try to Photoshop Elements (PSE) knowledge base. steps mentioned on this and see if it works.
    Regards
    Kishan

  • Adobe Premier Elements 10 has stopped working error message/Audio issues

    I'm working on a project for about a week. I almost finished it,  "shared" it to my computer, and watched it thru windows media player.  I thought of something else that I could add to the audio, so I went back into the project in PE10 and put small (2-3 seconds) audio clips on audio track 3.  Once I did that, PE 10 would not allow me to put any audio effects on that track.  (I went into some older longer projects that I have and it allowed me to put effects on any audio track).
    So, I moved my short audio clips to the Narration and Soundtrack tracks.  It finally highlighted the App;y button for the audio effects.  Now, the problem is that I can't play or click onthe timeline or move the timeline indicator without PE10 closing out of my video.  As soon as I try to do anything, it says "Adobe Premier Elements 10 has stopped working" and it closes the program.
    I can open my other projects and everything seems to work fine on those and it doesn't close out, but it won't allow me to do anything in this particular project.
    Again, I have been going into and out of the project for a week and all of the sudden it won't let me work on it.  It's only about a 3 minute project, so I don't know why it would have trouble.
    Oh, and it also un-rendered everything.
    Any thoughts?
    Thanks!

    LOTS more information is needed for someone to try and help
    These questions below may be for a different product... but the information you need to supply is the same, for the products you use
    -http://forums.adobe.com/message/4200840
    -http://forums.adobe.com/thread/416679
    -http://forums.adobe.com/thread/419406

  • Document array has no properties

    Why doesn't DW8 like document arrays assigned to variables?
    Using the syntax,
    formInput = document.getElementsByTagName("input")
    Returns an error saying "formInput has no properties."
    Here's the full example:
    var dom = dw.getDocumentDOM();
    // get the current document's SKU_Condition meta tag
    var skuCondMeta = dom.getElementsByTagName("meta");
    for ( counter = 0; counter < skuCondMeta.length;
    counter++)
    if (skuCondMeta[counter].name == "SKU_Condition") // so far
    so good
    // get dom of the extension html form and assign the sku
    cond to the input field value
    /* why doesn't this code work?
    var formInput = document.getElementsByTagName("input");
    for ( iter = 0; iter < formInput.length; iter++)
    if (formInput[iter].name == "sku_cond")
    formInput[iter].value = skuCondMeta[counter].content;
    /* instead, I have to do this */
    for ( iter = 0; iter <
    document.getElementsByTagName("input").length; iter++)
    if (document.getElementsByTagName("input")[iter].name ==
    "sku_cond")
    document.getElementsByTagName("input")[iter].value =
    skuCondMeta[counter].content;
    Thanks for the help!
    -Scott

    I'm trying to use a calendar in my jsp pages. The code
    of that calendar is in a js file and is writen in
    JavaScript. I call the function from a html tag:
    <input type="text" name="date" id="date">
    Click
    here to enter a date
    In the js file there is a function
    show_calendar(textfieldname, dir)
    and lines
    var txtboxObj = textfieldname;
    and
    document.getElementById(txtboxObj).value =
    getdate(d,m,y);
    My problem now is that when I use Netscape 7.01 the
    calendar is not passing data to the input field in the
    parent window and I get the message:
    Error: document.getElementById(txtboxObj) has no
    properties
    In IE it is working with no problems.Obviously a JS problem. Go to a Javascript forum. You will be more likely to find people who know.

  • 'TypeError: dw.getDocumentDOM() has no properties' message keeps coming up in dreamweaver? Help?

    Using Dreamweaver CS5.5 on a Mac.
    My error message:
    While executing DW_WordWrap checked in toolbars.xml, the following JavaScript error(s) occurred:
    TypeError: dw.getDocumentDOM() has no properties.
    Any help on what I can do to fix this??

    Try steps 4 and 12 here.
    http://helpx.adobe.com/dreamweaver/kb/troubleshoot-javascript-errors-dreamweaver-cs4.html# main_Troubleshooting_steps

  • My edit page in in elements 9 has suddenly stopped working. How can I get it to the workspace?

    My edit page in in elements 9 has suddenly stopped working after over a year. How can I get  the workspace to open?

    You can try Restoring it in iTunes. If that doesn't work you will need to get it serviced.

Maybe you are looking for

  • Error Message occured in creating a new contract account

    When we were trying to create a contract account for a business partner, we were stuck at this point with an error message stating u201CAccount holder relationship is not uniquely definedu201D. If anybody could tell us how to overcome this erroru2026

  • Replication of Materials and services from R/3 to SRM

    Hello, I would like to get some advice about replicating materials and services from R/3 46C to SRM 5.0. I replicated the objects succesfully in Development and the Test environment but now i have to do it in a Productive environment. We use about 40

  • 2nd ssd can't unmount or write after update

    I have a Mid 2010 Macbook Pro i7. Intel chipset is series 5 it says. I bought a new intel ssd that I put into the main drive bay, and then I put the Apple/Intel SSD drive that I had in previously into the Optical bay. The drive is fully readable but

  • How to get Vendor Text in BBP_POC in SRM for Smartforms?

    Hi Guys, I kept looking for ways on how to get the Vendor Text in BBP_POC transaction to be used in our Zsmartforms; unfortunately, I was not able to identify how. In ECC system, I could get the long text through double-clicking on the text area and

  • Why can't I adjust the scale of my text by clicking and dragging the corner boxes?

    Why can't I adjust the scale of my text by clicking and dragging the corner boxes? Why I have the text selected, all it does it let me highlight it to change font, size, etc, OR all I can do is move it throughout the artboard. Why can I click and dra