5 Elements in XML. 1 is not responding.

Hi,
Im my XML there are 5 elements. Name, Author, Image, Link and
time. All the elements are showing via Item Renderer but when I
click on the image, the relavent page is not opening. Any
suggestion?
Thanks
Here are my 3 files.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="vertical"
backgroundGradientColors="[#eeeeee, #eeeeee]"
initialize="titleService.send()">
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
import flash.events.Event;
import flash.events.MouseEvent;
[Bindable]
private var myData:ArrayCollection;
private function resultHandler(event:ResultEvent):void {
myData = event.result.titles.title;
]]>
</mx:Script>
<mx:HTTPService id="titleService"
url="data/newtitles.xml"
result="resultHandler(event)"/>
<mx:Label text="Technology News" fontSize="20"/>
<mx:TileList id="myList" dataProvider="{myData}"
itemRenderer="view.MyRenderer"
width="720" height="600" verticalScrollPolicy="off" />
<mx:Label text="{myList.selectedIndex}"/>
<mx:Label text="{myList.selectedItem.name}"/>
</mx:Application>
Here is the item renderer
<?xml version="1.0" encoding="utf-8"?>
<mx:HBox xmlns:mx="
http://www.adobe.com/2006/mxml"
width="700" height="100"
paddingLeft="25" verticalScrollPolicy="off"
horizontalScrollPolicy="off">
<mx:HBox>
<mx:Image source="assets/{data.image}" buttonMode="true"
useHandCursor="true" click="{data.link}"/>
</mx:HBox>
<mx:VBox>
<mx:HBox>
<mx:Text text="{data.name}"
textAlign="left" fontWeight="bold" fontSize="10"/>
</mx:HBox>
<mx:HBox>
<mx:Text text="{data.author}"
width="650" condenseWhite="true" textAlign="left"/>
</mx:HBox>
</mx:VBox>
</mx:HBox>
Here is the XML file
<?xml version="1.0"?>
<titles>
<title>
<name>The Future of Windows</name>
<author>Vistas successor may be the real winner for
Microsoft. What does Windows 7 hold in store? Here's what we've
gleaned so far.</author>
<link>
http://www.pcmag.com/article2/0,2817,2314409,00.asp</link>
<runningtime>9</runningtime>
<image>vsta.jpg</image>
</title>
<title>
<name>QUARKXPRESS 7 NEW FEATURES</name>
<author>Jay Nelson</author>
<link>
http://www.pcmag.com/article2/0,2817,2314409,00.asp</link>
<runningtime>5</runningtime>
<image>tips.jpg</image>
</title>
<title>
<name>PODCASTING WITH GARAGEBAND 3</name>
<author>Scott Bourne</author>
<link>
http://www.pcmag.com/article2/0,2817,2314409,00.asp</link>
<runningtime>4.75</runningtime>
<image>amd.jpg</image>
</title>
<title>
<name>iWEB ESSENTIAL TRAINING</name>
<author>Garrick Chow</author>
<link>
http://www.pcmag.com/article2/0,2817,2314409,00.asp</link>
<runningtime>3.5</runningtime>
<image>charger.jpg</image>
</title>
<title>
<name>EFFECTIVE EMAIL</name>
<author>Jeff Van West </author>
<link>
http://www.pcmag.com/article2/0,2817,2314409,00.asp</link>
<runningtime>6.5</runningtime>
<image>gadgts.jpg</image>
</title>
<title>
<name>MAC OS X SERVER v10.4 TIGER ESSENTIAL
TRAINING</name>
<author>Sean Collins</author>
<link>
http://www.pcmag.com/article2/0,2817,2314409,00.asp</link>
<runningtime>9.25</runningtime>
<image>gps.jpg</image>
</title>
</titles>

Here is my does. The only problem is from XML, the author
list is getting truncate for the last 3 items. All other items are
word wrapping.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="vertical"
backgroundGradientColors="[#000000, #660707]"
initialize="titleService.send()" verticalScrollPolicy="off"
backgroundGradientAlphas="[1.0, 1.0]">
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
import flash.events.Event;
import flash.events.MouseEvent;
[Bindable]
private var myData:ArrayCollection;
private function resultHandler(event:ResultEvent):void {
myData = event.result.titles.title;
]]>
</mx:Script>
<mx:HTTPService id="titleService"
url="data/newtitles.xml"
result="resultHandler(event)"/>
<mx:Label text="Technology News" fontSize="20"
color="#F9CD00"/>
<mx:TileList id="myList" dataProvider="{myData}"
itemRenderer="view.MyRenderer"
width="720" height="600" verticalScrollPolicy="off"
backgroundAlpha="0"
selectionColor="#976543" alpha="1"
rollOverColor="#f9cd00" borderThickness="0" />
<mx:Label text="{myList.selectedIndex}" />
<mx:Label text="{myList.selectedItem.name}"/>
</mx:Application>
<?xml version="1.0" encoding="utf-8"?>
<mx:HBox xmlns:mx="
http://www.adobe.com/2006/mxml"
width="700" height="90"
paddingLeft="25" verticalScrollPolicy="off"
horizontalScrollPolicy="off" >
<mx:HBox>
<mx:Image source="assets/{data.image}" buttonMode="true"
useHandCursor="true"
click="navigateToURL(new URLRequest(data.link))"/>
</mx:HBox>
<mx:VBox backgroundAlpha="0" width="670">
<mx:HBox backgroundAlpha="0">
<mx:Text text="{data.name}"
textAlign="left" fontWeight="bold" fontSize="12"
color="#eb260c"/>
</mx:HBox>
<mx:HBox>
<mx:Text text="{data.author}"
width="650" condenseWhite="true" textAlign="left"
color="#bdab5a" alpha="1"/>
</mx:HBox>
</mx:VBox>
</mx:HBox>
<?xml version="1.0"?>
<titles>
<title>
<name>The Future of Windows.</name>
<author>Vistas successor may be the real winner for
Microsoft. What does Windows 7 hold in store? Here's what we have
gleaned so far.</author>
<link>
http://www.pcmag.com/article2/0,2817,2314409,00.asp</link>
<runningtime>9</runningtime>
<image>vsta.jpg</image>
</title>
<title>
<name>Alternative Gadget Chargers.</name>
<author>Cell phone run out of juice with no AC outlet
in sight? An alternative-energy charger may be your best bet. We
put three to the test.</author>
<link>
http://www.pcmag.com/article2/0,2817,2316586,00.asp</link>
<runningtime>5</runningtime>
<image>gadgts.jpg</image>
</title>
<title>
<name>AMD Introduces Puma Platform.</name>
<author>The battleground for AMD and Intel is likely
to shift from CPUs to laptop platforms.</author>
<link>
http://www.pcmag.com/article2/0,2817,2316739,00.asp</link>
<runningtime>4.75</runningtime>
<image>amd.jpg</image>
</title>
<title>
<name>91 Utilities to Supercharge XP and
Vista.</name>
<author>These top utilities are all about tweaking,
manipulating, and totally dominating the looks and functionality of
Windows.</author>
<link>
http://www.pcmag.com/article2/0,2817,2279207,00.asp</link>
<runningtime>3.5</runningtime>
<image>utilites.jpg</image>
</title>
<title>
<name>The Best Dual-Band Routers.</name>
<author>If you are looking for optimal 802.11n
wireless performance, dual band routers like these four are the way
to go.</author>
<link>
http://www.pcmag.com/article2/0,2817,2316324,00.asp</link>
<runningtime>6.5</runningtime>
<image>router.jpg</image>
</title>
<title>
<name>529 Tips for Better Computing.</name>
<author>Our vast list of tips includes computing
basics as well as multimedia, mobility, business, and online
solutions.</author>
<link>
http://www.pcmag.com/article2/0,2817,2282468,00.asp</link>
<runningtime>9.25</runningtime>
<image>tips.jpg</image>
</title>
</titles>

Similar Messages

  • "scrips : chrome://browser/content/tabbrowser.xml:1628" have not responding

    Sometimes when I closed tab firefox report "scrips : chrome://browser/content/tabbrowser.xml:1628" have not responding.Then I have 2 choice stop it or continue when I have choosed continue It is crash or I have choosed stop it. Its working not crash but I can't closed tabs.

    Uygulama temelleri
    Adı
    Firefox
    Sürüm
    9.0.1
    Kullanıcı aracı
    Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0.1) Gecko/20100101 Firefox/9.0.1
    Kimlik dizini
    Bulunduğu dizini aç
    Devredeki yan uygulamalar
    about:plugins
    Yapılandırma
    about:buildconfig
    Crash Reports
    about:crashes
    Memory Use
    about:memory
    Eklentiler
    Adı
    Sürüm
    Devrede
    Kimlik
    Adblock Plus
    2.0.3
    true
    {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Alexa Toolbar
    2.14
    true
    [email protected]
    DownloadHelper
    4.9.8
    true
    {b9db16a4-6edc-47ec-a1f4-b86292ed211d}
    Java Console
    6.0.30
    false
    {CAFEEFAC-0016-0000-0030-ABCDEFFEDCBA}
    Değiştirilen tercihler
    Adı
    Değer
    accessibility.typeaheadfind.flashBar
    0
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage_override.buildID
    20111220165912
    browser.startup.homepage_override.mstone
    rv:9.0.1
    extensions.lastAppVersion
    9.0.1
    general.useragent.extra.ALX_NS_PH
    AlexaToolbar/alxf-2.14
    network.cookie.prefsMigrated
    true
    places.database.lastMaintenance
    1327252727
    places.history.expiration.transient_current_max_pages
    80508
    places.history.expiration.transient_optimal_database_size
    128811990
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    Çizimler
    Bağdaştırıcı açıklaması
    ATI Radeon HD 4800 Series
    Satıcı kimliği
    1002
    Aygıt kimliği
    944c
    Bağdaştırıcı RAM
    512
    Bağdaştırıcı sürücüleri
    aticfx64 aticfx64 aticfx64 aticfx32 aticfx32 aticfx32 atiumd64 atidxx64 atidxx64 atiumdag atidxx32 atidxx32 atiumdva atiumd6a atitmm64
    Sürücü sürümü
    8.920.0.0
    Sürücü tarihi
    11-9-2011
    Adapter RAM (GPU #2)
    Unknown
    Adapter Drivers (GPU #2)
    Unknown
    Direct2D etkin
    true
    DirectWrite etkin değil
    true (6.1.7601.17563)
    ClearType Parameters
    ClearType parameters not found
    WebGL çizici
    Google Inc. -- ANGLE (ATI Radeon HD 4800 Series) -- OpenGL ES 2.0 (ANGLE 0.0.0.809)
    Grafik ivmelendirilmiş pencereler
    1/1 Direct3D 10

  • I am trying to download photoshop elements but my browser is not responding.  I am wondering if maybe because I am on a satellite it is having trouble?

    My browser is not responding to the download.  Any thoughts on why?  Mayb e because i am on a satellite dish for my internet?

    Make sure you have cookies enabled and clear your cache.  If it continues to fail try using a different browser.

  • Schema Validation on attributes of an element in XML againt XSD schema

    Hi,
    I had generated artifact java classes from XSD schema file.Now i am validatiing one sample XML document by using these classes in JAXB.The XML document is validated successfully.but only elements are validated ,but not attributes of that elements.for example ,i am giving wrong element which is not defined inside the schema file,it throws validation error as expected ,whereas validation against wrong attributes of elements in XML it is not working anyway,it does not throw any validation errors,but it should throw validation errors.kindly help me to solve this issue.
    Here The sample validation code snippets :
    import javax.xml.bind.ValidationEvent;
    import javax.xml.bind.ValidationEventHandler;
    import javax.xml.bind.ValidationEventLocator;
    public class MyEventHandler implements ValidationEventHandler{
         public boolean handleEvent(ValidationEvent ve) {
              if (ve.getSeverity()==ValidationEvent.FATAL_ERROR ||
                        ve .getSeverity()==ValidationEvent.ERROR){
                   ValidationEventLocator locator = ve.getLocator();
                   //Print message from valdation event
                   System.out.println("Invalid booking document: "
                             + locator.getURL());
                   System.out.println("Error: " + ve.getMessage());
                   //Output line and column number
                   System.out.println("Error at column " +
                             locator.getColumnNumber() +
                             ", line "
                             + locator.getLineNumber());
              return true;
    Unmarshaller unmarshaller = jc.createUnmarshaller();
    unmarshaller.setEventHandler(new MyEventHandler());

    Here is my analagous 'strange' behavior. I am jaxb processing and then marshalling generated classes to XML ( following the simple Sun 'PurchaseOrder' example )
    1. This works:
    <xsd:schema....>
    <xsd:complextType name = "myName">
    <xsd:attribute name='name1'>
    </xsd:complextType>
    </xsd:schema>
    2. This doesn't:
    <xsd:schema....>
    <xsd:complextType name = "myName">
    <xsd:attribute name='name1'/>
    <xsd:attribute name='name2'/>
    </xsd:complextType>
    </xsd:schema>
    That is, using more than one attribute line within this simple complex type causes nothing to be marshalled to XML.
    Ideas?

  • Adobe premiere elements 11 not responding.

    Adobe premiere elements 11 says, "not responding" and asks me if I want to close the program. I have done this multiple times and nothing has worked. I am getting very frustrated and am not impressed by this program. What can I do to fix it?

    hunttofilmt
    Here is what I was like you to look at and determine if this workflow behaves any differently than the one that you are using now. I am assuming that you are having similar problems with Go Pro Hero 3's 960p @ 48 progressive frames per second and with the Canon's 1080p @ 24 progressive frames per second.
    Let us confine these initial tests to the Canon 1080p24, for now to avoid any complications of editing 960p48 in Premiere Elements.
    1. Open Premiere Elements 11 and go to File Menu/New/Project and set the project preset to
    NTSC
    DSLR
    1080p
    DSLR 1080p24
    or
    PAL
    DSLR
    1080p
    DSLR 1080p24
    depending on whether you have a NTSC or PAL install for your Premiere Elements 11.
    Before you exit the new project dialog, be sure to put a check mark next to Force Selected Project Settings on this Project.
    2. Import your 1080p24 into the project using Add Media/Files and Folder/Project Assets.
    3. In Project Assets, double click the file there to open the Preview Window and proceed to trim your video.
    Here is a description of the process from my blog post. Please cross check what you are doing with the steps that I used in the blog post demo.
    http://www.atr935.blogspot.com/2013/06/pe11-project-assets-organization-for.html
    If that is not successful, then stop and let us know.
    If that is successful, then let us look at the 960p48...there is an atypical format for Premiere Elements. Here we are going to set the project preset manually as in the case with the Canon, but here we are going to use the project preset of:
    NTSC
    DV
    Standard
    or
    PAL
    DV
    Standard
    depending on whether you have a NTSC or PAL install for your Premiere Elements 11.
    Before you exit the new project dialog, be sure to have a check mark next to Force Selected Project Setting for this Project.
    Then continue with the import and trimming of the video in the Preview Window as you did with the 1080p24 footage.
    Looking forward to your results.
    Thanks.
    ATR
    Add On....By the way, how is your external hard drive formatted NTFS or FAT32? Depending on the results from the above mini tests, please look at importing/trimming one of your 1080p24 in the 1080p24 project but import the 1080p24 from a computer desktop save location instead of the external hard drive.

  • Adobe Premiere Elements 11 is not responding

    I work on a macbook pro.  I have Adobe premiere elements 11. I uploaded video to a new project. I dragged some of the thumb nails onto the timeline on Thursday and successfully edited.  Today I dragged a few more onto the timeline and began editing.  All of a sudden, the cursor begins spinning.  I go to force quit and it tells me that the program is not responding.  I quit and tried again.  I have rebooted my computer a number of times, but to no avail.  Any suggestions as what I can try to keep the program running and edit my project?  Should I just open a new project and start from scratch since I haven't edited many of the interviews?
    Thanks.
    barb

    barb
    Please determine if you can open a new project without problems.
    Do you work with the AutoSave ON in preferences (Edit Menu/Preferences/AutoSave)? If so, go to the Adobe Premiere Elements Auto Save Folder and go through the Auto Saves
    seeking one that will open after you double click it. Each of those AutoSaves is the project file at different phases of your editing. If you get one that opens, then build it back to where you were before you ran into the problem.
    If you can get to the build back from an AutoSave, I would watch closely to see what addition to the project sends the project back into trouble again. Then we target
    the addition for troubleshooting.
    Please review and consider and then let us know the outcome.
    Thank you.
    ATR

  • Photoshop Elements 8 Error Not Responding

    I am trying to get assistance in getting my photoshop back up and running.  I have called Adobe and there is no sympathy all they want is money to fix it.  They have sent me here to speak to an Adobe Tech.  I am finding that this is a very common issue but none of the resolutions have worked.  Everytime I try to enter my organizer my program stops working and gives the message "not responding".  I am running on Windows 7.  Please help, I am getting very frustrated with Adobe...

    Try right clicking on the Organizer desktop icon and then choosing “Run As administrator”
    If you don’t have a desktop icon, this is how to create one.
    On Windows right click on the desktop and select New >> Shortcut
    Browse to Computer OS C:
    And find the PSE Organizer application in Program Files or Program Files (x86) on Windows 7 - 64 bit.
    Inside the Adobe >> Photoshop Elements Organizer (yellow folder) you are looking for an application file
    “PhotoshopEementsOrganizer” with six small icons (e.g. representing thumbnails)
    Select it and click OK
    Click next
    Rename by taking out Photoshop Elements leaving just the word Organizer
    Then click finish
    You should now be able to launch directly form the desktop by double clicking on the icon.
    You can set up a similar direct link to the Editor application (.exe file which has the blue PSE icon). As before take out Photoshop Elements just leaving the description Editor and it will show up clearly on the desktop.

  • Program not responding-elements 8

    I'm using Elements 8 with Windows 7 on a Dell Studio XPS computer and am having several problems.
    When I open Elements 8, I get a screen that says "Buy more storage" following which I get a screen that says "Welcome to Elements!" and offers tour options.  There's a "cancel" button that appears for a couple of seconds to bypass these screens but, if I don't hit it very quickly it goes away and I'm stuck with the tour choices--the organizer and edit options are grayed out and not accessible.
    When I do hit the cancel fast enough and go to the organizer, I receive a "program not responding" message after almost everything I try to do--access preferences, get photos, etc., etc. I really can't do anything without the "program not responding" message making an appearance.  In addition, the only menu at the top of the organizer screen on the left half is a down arrow with no text.  That allows me to select file, edit, etc. but is this the way it should be?
    I managed to disable the analyzer but it didn't make a difference.  I uninstalled PSE and reinstalled it but it didn't make a difference.  Can anyone offer help?  I'm getting pretty frustrated with this useless program!

    For the welcome screen problem, just don't go there. Go into the program files and make a shortcut to the actually .exe file for the editor, the organizer or both, and use that to start PSE in the future.
    For the disappearing menubar:
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Setting_the_Windows

  • Crash: "Elements 10 Organizer is not responding"

    Elements 10 crashes EVERY TIME I try to use it.  I ge thte above error message and the screen freezes.  I tried removing and reloading the software, but the problem remained.  I have Vista, 32 bit.
    Any ideas would be welcome.  Thanks.

    Hi Martin,
    Let me see if I understand your problem:
    OK, so the Organizer isn't "crashing" every time you "use" it.  It will open the old catalog without any error messages.  I assume you're using the "Thumbnail" view where you see all the images in the catalog.  (Is that right?)  It's when you attempt to scroll down through the displayed images that you get an "Organizer is not responding" error message.  You also get that error message if you highlight an image and select "Edit with Photoshop Elements".
    Do I understand correctly what's happening?
    If I've got all that right, it might be a system resources issue -- we'll need some more details:
    The Organizer obviously worked in the past; when did you start getting the error?  By that I mean can you think of anything you did in the Organizer just before the errors started, such as importing videos, etc.?  Did you make any changes to your system, such as installing a new printer or updating the printer driver?
    Do you have any of the Organizer's Media Analysis features enabled?  Are you using the Watch Folders function?
    How many images are in your catalog?
    Where are the actual images stored?  On your internal drive, or on an external drive, or on a network location?
    How much RAM is installed on your computer?
    How much free space is on your system (C:) drive?
    Do you get that Organizer error even when you have no other applications running in the background?
    Added:
    One quick and easy thing you can do is to use File...Catalog to open the Catalog Manager window.  Highlight your old catalog and hit the "Repair" button (choose "Repair anyway" if prompted).  When the repair finishes, repeat, this time hitting the "Optimize" button.  See if your old catalog works better.
    Ken
    Message was edited by: photodrawken to add suggestion.

  • I bought Adobe Elements 12; I cannot use panorama photomerge, I have followed the directions to go to Full Edit  mode in edit workspace choose File New Photomerge. However the Photomerge does not work, it does not respond.   The only thing I can come u

    I bought Adobe Elements 12; I cannot use panorama photomerge, I have followed the directions to go to Full Edit  mode in edit workspace> choose File> New> Photomerge. However the Photomerge does not work, it does not respond.
    The only thing I can come up with is that I found a blog that said that in the Trial version Photomerge does not work, however I do Not have the Trial version, I did at one time but I purchase Adobe Elements. Thank you.

    The blog was incorrect. Photomerge should work in the trial, too.
    When things get weird in PSE the first thing to do is to delete the prefs. Go to the editor preferences>general, click this button and restart the editor:

  • Photoshop Elements 13 is not responding

    I have downloaded Photoshop Elements 13 and when I go to extract files it almost completes and then it says Photoshop Elements 13 is not responding.  What can I do to fix this?

    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
    Thanks,
    Garry

  • Photoshop Elements 10 is not responding

    when i try to open the program, windows displays that the photoshop is not responding?

    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
    Thanks,
    Garry

  • My Photoshop elements 11 and 13 organizer suddenly exits. photoshop elements is not responding. Message occurs when the error is found. solicit help

    My Photoshop elements 11 and 13 organizer suddenly exits. photoshop elements is not responding. Message occurs when the error is found. solicit help, That's all.

    We really cannot know. So far you haven't told us anything about your system nor is there any feasible way to diagnose what this "missing file" could be, no matter what. That is, short of elaborate tracking and observation using specialised system diagnosis tools. The welcome screens can be brough back via the Help menu, but well, this might bring back the problems as well. Anyway, this is most likely nothing that a forum can help you with. If you know a computer geek, give him a call. Otherwise I don't see what we could do for you.
    Mylenium

  • Adobe elements 10 is not responding--program keeps crashing

    I have elements 10 and it is forever crashing with message "Adobe Elements 10 is not responding."

    Ken, thank you for responding.
    When I get the error, I’m given two options, cancel the program or wait until Elements 10 responds. Some time if I wait long enough it will respond but only to crash again. This seldom happens in Editor.
    This is a new catalogue on the new computer. I never had this problem with earlier versions of Elements—only with 9 and 10.
    Thank you,
    Robert

  • Premiere Elements 9 not responding

    When the software starts to generate a peak file it get up to 99% then the software stops responding. Dell xps 8300,5.9 window experence index,processor intel r core tm i7-2600 [email protected] ghz, installed memory ram 8 gb, system type 64 bit opetating system,amd radeon hd 6450 1gb ddr3.
    Sometime it will freeze when I can get film to editing stage and workingon it. Need Help very frustrated.

    Well I tried my new Sony hd camera and everything seams to work, but now my
    photoshop 9 stops responding??
    In a message dated 10/4/2011 3:59:45 P.M. Eastern Daylight Time, 
    [email protected] writes:
    Re:  Premiere Elements 9 not responding
    created by Bill Hunt (http://forums.adobe.com/people/the_wine_snob)  in 
    Premiere Elements - View the full  discussion
    (http://forums.adobe.com/message/3953796#3953796)

  • Trial Version of elements 13 running on latest IMac 27 inch.  Move the mouse and it is time out.  Doesn't matter where on the window the mouse is. The program does not respond quickly at all. Takes ages to do anything with it.  Any suggestions?

    I am running a trial version of Elements 13 on the latest IMac 27 inch.  Any move of the mouse and it is time out.  Doesn't matter if the mouse is trying to do an edit or just moving across the window.  The program does not respond very well at all.  I am wondering now if I should bother purchasing the program. 

    How much ram do you have? Did you recently import a bunch of photos into the organizer? PSE will be slow till it's through cataloguing them, which can take some time for large number of images.

Maybe you are looking for