And the fix is?

I put this in the wrong forum:
http://forums.adobe.com/thread/1330489?tstart=0

Go to expert mode and reset the tools:
Photoshop Elements 9.0 Tutorial Resetting Brush & Tool Settings Adobe Training Lesson 7.5 - YouTube
If that doesn't work, reset the preferences:
How to Reset Photoshop Elements Preferences - YouTube

Similar Messages

  • Restriction and the Fixed attribute and JAXB

    Hi
    I have what I believe is a valid XSD, with two complex types BaseType and OtherType. What I want is for BaseType (abstract) to have an attribute but no fixed value for it. OtherType would restrict the allowable values to just "Test". I have checked the XSD with xmlspy and the W3C site.
    so happy with the xsd I try to use JAXB to generate classes:
    xjc.bat -p com.me.test example.xsd -d gen
    but I get :
    [ERROR] derivation-ok-restriction.2.1.1: Error for type 'OtherType'. An attibute use in this type has a REQUIRED setting which is inconsistent with a matching attribute use in the base type.
    (removing the Fixed attribute solves it but I'd like to keep it)
    Any ideas?
    Thanks
    Des Field Corbett
    XSD Follows:
    ================================================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:complexType name="BaseType" abstract="true">
    <xs:attribute name="name" type="xs:string" use="required"/>
    </xs:complexType>
    <xs:complexType name="OtherType">
    <xs:complexContent>
    <xs:restriction base="BaseType">
    <xs:attribute name="name" fixed="Test"/>
    </xs:restriction>
    </xs:complexContent>
    </xs:complexType>
    <xs:element name="root" type="OtherType"></xs:element>
    </xs:schema>

    Got it to work...
    My XSD had the line in BaseTypes:
    <xs:attribute name="name" type="xs:string" use="required"/>
    and the line in OtherTypes:
    <xs:attribute name="name" fixed="Test"/>
    Changing this to:
    <xs:attribute name="name" type="xs:string" use="required" fixed="Test"/>
    Got it to work.
    Not sure if this is a Bug in JAXB or its just being fussy... Sure going to make it a pain to hand code in the extra tags in to my real life XSD!
    If there is a better way I'd be grateful to know....
    Thanks
    Des
    BTW getting a java.lang.reflect.InvocationTargetException now - but as I'm just learning JAXB so I'm guessing thats something else.

  • Validator Errors and the Fix

    Hello
    I need to understand the mistakes, apply the corrections.
    I want to offer a basic page ( http://www.meherbabalibrary.com/babalist/list_g/list_g.html)  and ask for assistance. It is without CSS, with Divs - a basic unpopulated page with navigation bar.
    I ran this page through www.validator.w3g.com and validator found 18 errors.
    To have explained a few mistakes that will give me an understanding. I need to understand the dynamics that are involved in correcting the mistakes so that I can apply the corrections on this page and other pages that have been created.
    For example I have a series of errors on line 111:
    <body leftmargin="5" topmargin="5" marginwidth="5" marginheight="5" onLoad="MM_preloadImages('../../buttons/bhr.gif','../../buttons/kkr.gif','../../buttons /dvdr.gif','../../buttons/cjr.gif','../../buttons/avr.gif','../../buttons/bsr.gif','../.. /images/shack/0_Shack_MBBks.jpg')">
    <div id="pageContainer">
    I see the validator has highlighted in red most of the quotes  - and if I remove all quotes in red and then view the page in web browser most of line 111 is transformed into text. That experiment did not work.
    However if I run validator as Group Error Message by Type those reds quote show  "there is no attribute X". I don’t understand this.
    On line 115 is another series of errors and again the ' " ' symbols are highlighted in red.
    <a href="../../index.htm" target="_top" onClick="MM_nbGroup('down','group1','bhb','',1)" onMouseOver="MM_nbGroup('over','bhb','../../buttons/bhr.gif','',1)" onMouseOut="MM_nbGroup('out')"><img src="../../buttons/bhb.gif" alt="" name="bhb" width="120" height="41" border="0" onload=""></a>Th
    I Googled the errors. I am unable to understand the errors and the appropriate method to fix the errors.
    there is no attribute "onClick"
    there is no attribute "onMouseOver"
    there is no attribute "onMouseOut"
    there is no attribute "onload"
    end tag for "img" omitted, but OMITTAG NO was specified
    Thanks for indulging this long query. To wrap up I see in a few lines the "You may have neglected to close an element" supported with 'end tag for "img" omitted, but OMITTAG NO was specified'.
    Again I ran validator as ‘Group Error Message by Type’ the end tag for X omitted, but OMITTAG NO was specified".  I hope this question isn’t too long as I really need to learn how to apply fix it routines after running the validator. 
    Thanks

    You could eliminate many of your errors and code bloat if switched from image based menus to CSS styled text links. 
    Below is a quick example (no images required).  Copy & paste this code into a new, blank page.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <style>
    body {
    width: 720px;
    margin: 0 auto;
    nav {
    width: 720px;
    margin:0 auto;
    overflow: hidden; /*to control floats*/
    nav ul { margin: 0; padding:0 }
    nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    font-size: 14px;
    font-variant: small-caps;
    font-weight:bold;
    nav li a {
    margin: 0;
    display: block;
    text-decoration: none;
    color: #000;
    width: 120px;
    line-height: 2em;
    text-align: center;
    /**gradients for various browsers**/
    background: rgb(232,240,175); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(232,240,175,1) 0%, rgba(232,240,175,1) 0%, rgba(162,218,178,1) 53%, rgba(150,218,209,1) 98%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(232,240,175,1)), color-stop(0%, rgba(232,240,175,1)), color-stop(53%, rgba(162,218,178,1)), color-stop(98%, rgba(150,218,209,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(232,240,175,1) 0%, rgba(232,240,175,1) 0%, rgba(162,218,178,1) 53%, rgba(150,218,209,1) 98%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(232,240,175,1) 0%, rgba(232,240,175,1) 0%, rgba(162,218,178,1) 53%, rgba(150,218,209,1) 98%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(232,240,175,1) 0%, rgba(232,240,175,1) 0%, rgba(162,218,178,1) 53%, rgba(150,218,209,1) 98%); /* IE10+ */
    background: linear-gradient(to right, rgba(232,240,175,1) 0%, rgba(232,240,175,1) 0%, rgba(162,218,178,1) 53%, rgba(150,218,209,1) 98%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8f0af', endColorstr='#96dad1', GradientType=1 ); /* IE6-9 */
    Color format: Comments IE9 Supp
    nav li a:hover, nav li a:active, nav li a:focus {
    text-decoration: underline;
    background: #E8F0AF;
    filter:none;
    /**clear floats after nav**/
    nav:after {
    clear: left;
    display: block;
    </style>
    </head>
    <body>
    <header><img src="http://www.meherbabalibrary.com/logos/Logo10.png" alt="logo" height="128" width="720"> </header>
    <nav>
    <ul>
    <li><a href="#">Baba's Home</a></li>
    <li><a href="#">Kalki's Kitchen</a></li>
    <li><a href="#">DVD Selection</a></li>
    <li><a href="#">Curator's Jive</a></li>
    <li><a href="#">Advent Vault</a></li>
    <li><a href="#">Baba Splash</a></li>
    </ul>
    </nav>
    <h2>CSS Menu without images</h2>
    <p>Simple to edit, no complex scripts or image swap behaviors, less code, easily indexed by search engines, translators and screen readers. </p>
    </body>
    </html>

  • IPhone 5 Battery is a Bust and the Fixes Won't Help

    You can setup your new iPhone 5 as a new phone, and it's not going to solve the problem of battery drain. I tried both ways. First, I restored by 3Gs backup to the new iPhone 5, and then I wiped the new iPhone 5 and set it up as a new phone. There are alot of claims that this will make a substantial difference. It may have made a small difference, but in the larger context it makes none and here's why:
    The iPhone 5 battery does not perform even close to the specs claimed by Apple. There is no way you will get 225 hours of standby time. There is no way you will get 10 hours of Wi-Fi time.
    Specs: http://www.apple.com/iphone/specs.html
    I could put my new iPhone 5 into Airplane mode, then turn Wi-Fi on and have everything else turned off: Siri, Location, Nofitications, Push. At best, I might get 6 hours of surfing time. No video, just apps and web pages.
    I doubt very much iPhone 5 can even last a single work day of telephone calls, email, and web surfing. And this would be even if LTE, and everything else is turned off: Siri, Location, Nofitications, Push.
    Latest Usage Data, with no LTE, Siri, Location, Nofitications, Push. In fact, the stats below are with 1 short phone call, and in Airplane mode overnight. Usage must stand for any time the phone is simply not asleep, certainly not when an app is being used.
    Battery: 9%
    Usage: 6 hours, 27 minutes
    Standby: 1 Day, 5 hours.
    My conclusion: Apple's battery specs are not even close to performance. I really don't see how one could use the iPhone 5 as a business phone, as it could not even get you through a 12 hour day. And by 12 hour day, I mean ALOT of time when the phone is is in standby mode.

    did you have a technical question?

  • Since the recent Firefox update, our customers can no longer place items selected for purchase into the shopping cart; what is the cause and the fix?

    Since Firefox was recently updated, customers who use Firefox as their browser can no longer place items selected at our e-commerce site into their shopping cart. We are not experiencing this problem with customers who use IE as their browser.

    I created a brand new blank Captivate 6 file, applied a theme, inserted a few new slides and tried Preview.  It worked!  All four of the Captivate files I used in my previous testing were based on one file which hadn't been touched for two weeks.  Somehow while working in the lastest file, either removing unused items from the Library or killing errors while Publishing, something somewhere got corrupted or removed.  Something that all four files must have pointed to, since as soon as the latest file broke, all of the other files stopped working as well.  Since the original file was inherited, I'm not even sure how to  go about finding the problem.  In my case, it won't be too big of a deal.  I will create a clean template file and rebuild.
    Thanks for your help!

  • Settlement of WBS to the Fixed Asset in another company code

    Hi Friends,
    I have another problem with WBS elements and fixed assets.
    I used WBS elements to create a AUC by AUC settlement in company code A. Then I put a second settlement rule with settlement type "FUL" in WBS element and settle AUC to a depreciable asset in company code A.  Then I transfer the depreciable asset from company code A to company code B. Now I put the current month as the end day of the second settlement rule and add a third settlement rule in WBS element in compnay code A. The third settlement rule will settle to the depreciable asset in company B. When I am adding the third settlement rule, the system gives an error: "Asset XXXX not in company code A" .
    Then I add another WBS element in company code A and put a settlement rule which settle to the depreciable asset in company code B. The system did not issue any error. Everything works fine.
    So it seems the WBS element cannot settle to the asset in the other company code if it created a AUC in its own company code.
    People told me that it worked in their legacy SAP system. So I am wondering whether there is some settings that I did not do, which caused this problem.
    Do you have any idea about this?
    Thanks,
    Ting

    in the requesting company codeon the wbs master data enter the company code for which the AuC and the fixed asset will be created
    in this way you can settle from a project in one company code to an asset in another company code

  • Report in SAP that shows me the fixed assets per vendor

    Hi,
    I have been asked to produce the following;
    Can I run a report in SAP that shows me the fixed assets per vendor?
    I need the detail of the depreciations (start and end date, purchase price, depreciation rate, methodu2026) and the fixed assets register (purchase amount, purchase date, vendor nameu2026)
    Could you kindly explain to me in simple steps what report I should run?
    Many thanks in advance.
    Alex

    Hi, there is no such report in SAP. You can develop your own, The main issue is that to get vendor for asset to which were issued material from storage. You can do it via batch(write down while purchasing to some field, or to find it via batch). Fir material for which batch management is not active it's not possible to, because you can buy one material from different vendors.

  • I believe I found the fix solving home sharing issues with Windows 7

    I was having a problem with my Windows 7 PC while trying to connect iTunes home sharing and my Apple TV.  While speaking to Apple support, the tech told me that home sharing uses port 3689.  I searched the web and found this link explaining how to open a port on your PC.  The issue seems to be with Windows firewall, or the anti virus software controlling the Windows firewall.  I use Norton anti virus so when I opened the Windows firewall selection in the control panel, the Norton window opened and the fix was identical to the one shown in this link.  http://maximumpcguides.com/windows-7/open-a-port-in-windows-7s-firewall/
    Follow the instructions on the page and for step #7, enter 3689.  When you get to step #10, I typed in "Apple TV Home Sharing" so I could identify the port later on.  I made these changes, rebooted the computer, started iTunes, turned on the Apple TV and everything worked.  Try it and this should solve what seems to be a common problem.

    Solved - at least all good so far.
    I had to add rules to my firewall software (Symantec Endpoint Protection) for Bonjour (UDP 5353) and DAAP (TCP 3689).  Once I did that, the other librares were shown in SHARING and the Apple TV reliably connects.
    What I don't understand was why it worked at all without the rules in place.

  • [ or ] do not resize the retouch brush or the Fix red-eye cursor

    I am using iPhoto 9.4.2 and OS X 10.8.2. I am trying to use left and right square brackets to resize the retouch brush and the Fix Red-Eye cursor but this is not working. I could use some help please.

    Does this help?
    https://discussions.apple.com/thread/1284710

  • This morning, Firefox stopped opening .pdf documents that I am trying to retrieve from websites. It does not download them, and the page goes blank, with nothing more happening. What do I do to fix it?

    I went to the FAA website, and I needed to review a document. I clicked on the link, the page turned blank, but I never saw the document. I tried again, but I still could not get the document. Word documents still bring up the dialog box allowing me to open the document. I went to another website to find additional information on the project I am working on, and I am experiencing the same problem, when I click on a link to a pdf, it will not open, and the download dialog box does not open.
    I have tried looking at applications and plugins, but everything seems to be fine. What do I do to fix this?
    Thanks,
    Anne

    Using the Adobe Reader plugin with Firefox
    * https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox
    Opening PDF files within Firefox
    * https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox
    Check and tell if its working.

  • The fixed value date is empty and not displayed in the VA05 report

    Hi SD Gurus,
    With in the Sales Order in the line item level in the billing tab we have the fixed value date (VBKD - VALDT) were entered. 
    But when we try to execute the report VA05 were the fixed value date column shows empty (i.e without the date it shows the blank).  Can you any one help me with regard.
    We would like to fix this problem.
    Thanks in advance for providing solution to this query.
    Thanks and Regards,
    SAP-SD group

    Hi janarthanam,
    Ok.
    Goto t-code SQVI,SAP Quickviewer.
    Give a name to your query and enter description ,etc.
    Next enter the table from which you want to fetch data,ie,VBKD .
    Select "Layout mode" for displaying data on the SAP screen or "Basis mode " if you want to extract the data to a word doc,excelsheet or a flat file.
    Next you can select the fields you want to display into your report,their position and ascending/descending order,Here make sure u select
    the field u need to display ie. the fixed value date ( VALDT) .
    also select the fields u wish to have in the selection criteria.
    Enter these required information and u would get a report on the SAP screen or in your desired format.
    Hope it will suffice you.
    For any queries ,your are welcomed.
    Thanks,
    Umesh.

  • Here.  Hi I buy pack but the problem is you already purchased in-app purchased but it hasn't been downloaded pls fix it for me and I buy before 15 days pack 19,99 and 4,99 and the same problem  in game world strike

    Hi I buy pack but the problem is you already purchased in-app purchased but it hasn't been downloaded pls fix it for me and I buy before 15 days pack 19,99 and 4,99 and the same problem want or were can I fit it pls

    The e-mail for World Strike support is: [email protected]
    You need to contact them with your questions.

  • How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something"sign... it just doesn't start the system....

    How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something" sign... it just doesn't start the system....
    Please help
    Marcelo

    If there is no loading bar, it's usually a problem with a third party kext file in OS X itself.
    You can press the power button down to force a hardware shutdown, then reboot holding the shift key down on a wired or built in keyboard, this will disable them and you go around and update your third party software.
    Gray, Blue or White screen at boot, w/spinner/progress bar
    Also take this time to backup your users files off the machine if possible.
    Most commonly used backup methods
    Sometime that won't work and you need to do more
    ..Step by Step to fix your Mac

  • My ipod nano 6th gen fell out of my pockey and the screen cracked badly, is there any coverage for this under warranty? I just bought it a month ago. If not what are the options for getting it fixed

    My ipod nano 6th gen fell out of my pocket and the screen cracked badly, is there any coverage for this under warranty? I just bought it a month ago. If not what are the options for getting it fixed? It is pretty frustrating, it fell from about 3 feet out of my pocket and now looks like it was beaten by a hammer.

    Debbie:
    deborahfromwindsor wrote:
    he advises restarting by inserting the OSX disc and pressing down the C button to reboot from there then selecting disk utility, hard disk and repair.... Does he mean me to hold down the C key on the alpha keyboard or the ctrl key?
    Should I just ask for my money back??? If it is a simple repair do I just literally push the disc in, push the power button and hold down the C button?
    That's where I would begin, too, with
    Repair Disk
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.TStatus of HDD at the bottom of right panel, and report if it saysanything but Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    If DU reports errors it cannot repair you will need touse autility like TechTool Pro,Drive Geniusor DiskWarrior
    First we need to determine if the issue you are experiencing with the computer is software or hardware based. Once we have gotten things sorted out there should be time enough to make you decision about keeping or returning it.
    cornelius

  • IPhone 4 shuts down on its own all the time. Sometimes restarts without ability to make calls, receive emails, and the wrong time.  Only a restore fixes it.  What can I try?

    So my iPhone had a broken screen and back for a while, which may have something to do with this.  I mean like missing peices.  I realize this leads to corrosion and I may have a broken iPhone but this is a really strange problem.  It's always shutting off on its own, sometimes in my pocket while locked and sometimes randomly while in use.   For example the other day this started happening everytime I started safari.  This happens all the time, I usually just restart it and it works for a while.   Sometimes after shutting off a few times in a row, after restarting it will show the wrong time, screws up phone calls and says that it cannot locate the gmail server, or something to that extent (won't load emails).   The phone calls are weird, I can't receive any.   Any calls that are made from the phone, go through on the other side and ring for them, but won't ring or make a connection on my side, also I can't end the call when this happens, it responds to me pressing end by fading the screen to that graytone color that it does before ending usually but stays on that screen whenever you go back to it, only disappearing after reseting.  Texts work, not in iMessage, and internet seems to work.   The only thing that fixes this condition is a restore. The iphone has been turning itself off over the last 3 months and its been getting progressively worse.  Recently its been pretty bad, and then the phone started to do all that weird stuff I've been talking about.  That started about 3 weeks ago and has happened 4 times, the last two times relatively close together.   This is really annoying and I can't afford to replace it.   Do I have to live with it?   What can I try?  Should I maybe replace the battery?  I took the panel off to look at it and the plastic around it was pitted possibly from being really hot.

    Please don't respond with useless comments.  I've already addressed the fact that my screen was broken a few months ago.  My phone may or may not be broken beyond repair either way, as I said before I can't afford a new phone.  It's a strange problem because from what I can tell no one else has posted the same problem anywhere I can find.  Don't be a dickhole.

Maybe you are looking for

  • Error: Invalid Export dll when exporting to Excel from VB,NET 2008

    Version: Crystal Report 2008 Front End: Visual Basic 2008 Hello, I am trying to export a report to Microsoft Excel [2003] when I get the error "Error in File_Temp......Invalid Export dll or export format". from the Windows Form Viewer. I have looked

  • Why is my drop down spry menu not working any more please?

    Hi all. I created this template and tested it in Firefox not so long ago and the drop down menu was fully operational.  Today, however, is a different story.  I am pasting the codes below for some please as to where it has gone wrong and thanks for a

  • ABAP HR Module - removed_by_moderator

    Hi Experts,     Currently we are into an ESS project. There we are reading and updating employee details. There are function modules "HRXSS_PER_READ_P0002_XX" to read the personal details and there are function modules available for other infotypes a

  • I need another way of increasing/decreasing the volume in OS X.

    Long story short: The F11 and F12 volume keys on my Apple keyboard change the volume in too large of steps. There's a key combination for tiny increments, but come on... Do I really want to use two hands to press three keys just to turn up the sound

  • How to Restructure the GP Process Template

    Hi All, I want to change the structure of the GP, I want to remove the left navigation where the steps appear. Basically I want to do restructuring. Is it possible? What's the par name through which it is possible because it would be basically some G