Unwanted Behavior Result

Thank you before hand for anybody nice enough to help me with
this problem.
I am having an issue with the Blind effect in Dreamweaver
CS3.
I have a rollover image that is part of my nav. bar, it is
set up so on mouse roll over it blinds down a APDiv underneath it.
On mouse out it blinds up the APDiv tag. The problem is that after
it blinds up a 1px line remains and looks horrible. I figured out
that the line is the same color as the border i'm using for the
APdiv and that when i remove the border the line does NOT remain.
However, the site does not look right without the APDiv's having
borders.
Please, if anybody knows how to fix this OR work around it
please let me know.
the site is located @ www.telmarkpkg.com, thanks.
DLudwig

Hi All,
I have the same problem, as per attached snapshots.
Regards,
Mohamed Eissa

Similar Messages

  • Photoshop and Bridge rotating images automatically, unwanted behavior

    We have a large batch of identically sized images (although obviously some are portrait and some landscape) and when previewed in bridge or opened in photoshop, the images that are portrait are being automatically rotated 90 degrees counter-clockwise. In bridge, the extracted preview displays correctly but when the higher-res image preview is generated, it rotates the images counter-clockwise.
    This is happening on more than one of our machines, which makes me think it has something to do with the images themselves. The only thing I've found so far is that maybe the images contain meta-data that is telling the two programs to rotate the images, but this is unwanted behavior and if this is indeed what's going on, then I'd like to either tell photoshop/bridge to ignore this data or clear it out of the image files altogether.
    Any thoughts/ideas/solutions?

    Right, which is what I thought. If by "a conflict to the way you want it see it" you mean there are people are now standing on the wall, then yes, it is a conflict.
    So any help on how to clear this particular bit of meta data on a few thousand photos? Or do we just have to work around it?

  • Unwanted behavior: Action method being called several times

    Hello,
    I have a managed bean that calls a session ejb which itself does a search. The problem is that it is supposed to retrieve a resultset ONCE and the displayed behavior is that it never stop doing so. It fetches the resultset N TIMES.
    Here is the managed bean and the method to look at is the performSearch method:
    package arcoiris;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.model.SelectItem;
    public class SearchManagedBean {
        //Collected from search form
        private String keyword;
        private String country;
        private Integer[] postcode;
        private boolean commentExists;
        private Integer rating;
        private boolean websiteExists;
        //Used to populate form
        private List<SelectItem> availableCountries;
        private List<SelectItem> availablePostcodes;
        private List<SelectItem> availableRatings;
        //Retrieved from ejb tier
        private List<EstablishmentLocal> retrievedEstablishments;
        //Service locator
        private arcoiris.ServiceLocator serviceLocator;
        //Constructor
        public SearchManagedBean() {
            System.out.println("within constructor SearchManagedBean");
        //Getters and setters
        public String getKeyword() {
            return keyword;
        public void setKeyword(String keyword) {
            this.keyword = keyword;
        public String getCountry() {
            return country;
        public void setCountry(String country) {
            this.country = country;
        public boolean isCommentExists() {
            return commentExists;
        public void setCommentExists(boolean commentExists) {
            this.commentExists = commentExists;
        public Integer getRating() {
            return rating;
        public void setRating(Integer rating) {
            this.rating = rating;
        public boolean isWebsiteExists() {
            return websiteExists;
        public void setWebsiteExists(boolean websiteExists) {
            this.websiteExists = websiteExists;
        public List<SelectItem> getAvailableCountries() {
            List<SelectItem> countries = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue("2");
            si_1.setLabel("ecuador");
            si_2.setValue("1");
            si_2.setLabel("colombia");
            si_3.setValue("3");
            si_3.setLabel("peru");
            countries.add(si_1);
            countries.add(si_2);
            countries.add(si_3);
            return countries;
        public void setAvailableCountries(List<SelectItem> countries) {
            this.availableCountries = availableCountries;
        public List<SelectItem> getAvailablePostcodes() {
            List<SelectItem> postcodes = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue(new Integer(75001));
            si_1.setLabel("75001");
            si_2.setValue(new Integer(75002));
            si_2.setLabel("75002");
            si_3.setValue(new Integer(75003));
            si_3.setLabel("75003");
            postcodes.add(si_1);
            postcodes.add(si_2);
            postcodes.add(si_3);
            return postcodes;
        public void setAvailablePostcodes(List<SelectItem> availablePostcodes) {
            this.availablePostcodes = availablePostcodes;
        public List<SelectItem> getAvailableRatings() {
            List<SelectItem> ratings = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue(new Integer(1));
            si_1.setLabel("1");
            si_2.setValue(new Integer(2));
            si_2.setLabel("2");
            si_3.setValue(new Integer(3));
            si_3.setLabel("3");
            ratings.add(si_1);
            ratings.add(si_2);
            ratings.add(si_3);
            return ratings;
        public void setAvailableRatings(List<SelectItem> availableRatings) {
            this.availableRatings = availableRatings;
        public Integer[] getPostcode() {
            return postcode;
        public void setPostcode(Integer[] postcode) {
            this.postcode = postcode;
        public List<EstablishmentLocal> getRetrievedEstablishments() {
            return retrievedEstablishments;
        public void setRetrievedEstablishments(List<EstablishmentLocal> retrievedEstablishments) {
            this.retrievedEstablishments = retrievedEstablishments;
        //Business methods
        public String performSearch(){
            System.out.println("performSearchManagedBean begin");
            SearchRequestDTO searchRequestDto = new SearchRequestDTO(this.keyword,this.country,this.postcode,this.commentExists,this.rating, this.websiteExists);
            System.out.println("java bean "+this.keyword+" "+this.country+" "+this.postcode+" "+this.commentExists+" "+this.rating+" "+this.websiteExists);
            SearchSessionLocal searchSession = lookupSearchSessionBean();
            List<EstablishmentLocal> retrievedEstablishments = searchSession.performSearch(searchRequestDto);
            this.setRetrievedEstablishments(retrievedEstablishments);
            System.out.println("performSearchManagedBean end");
            return "success";
        private arcoiris.ServiceLocator getServiceLocator() {
            if (serviceLocator == null) {
                serviceLocator = new arcoiris.ServiceLocator();
            return serviceLocator;
        private arcoiris.SearchSessionLocal lookupSearchSessionBean() {
            try {
                return ((arcoiris.SearchSessionLocalHome) getServiceLocator().getLocalHome("java:comp/env/ejb/SearchSessionBean")).create();
            } catch(javax.naming.NamingException ne) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
                throw new RuntimeException(ne);
            } catch(javax.ejb.CreateException ce) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ce);
                throw new RuntimeException(ce);
    }Here is the object request passed:
    package arcoiris;
    import java.io.Serializable;
    public class SearchRequestDTO implements Serializable {
        private String keyword;
        private String country;
        private Integer[] postcode;
        private boolean commentExists;
        private Integer rating;
        private boolean websiteExists;
        public SearchRequestDTO() {
        public SearchRequestDTO(String keyword, String country, Integer[] postcode, boolean commmentExists, Integer rating, boolean websiteExists){
            this.keyword=keyword;
            this.country= country;
            this.postcode = postcode;
            this.commentExists = commentExists;
            this.rating = rating;
            this.websiteExists = websiteExists;
        public String getKeyword() {
            return keyword;
        public void setKeyword(String keyword) {
            this.keyword = keyword;
        public String getCountry() {
            return country;
        public void setCountry(String country) {
            this.country = country;
        public Integer[] getPostcode() {
            return postcode;
        public void setPostcode(Integer[] postcode) {
            this.postcode = postcode;
        public boolean isCommentExists() {
            return commentExists;
        public void setCommentExists(boolean commmentExists) {
            this.commentExists = commmentExists;
        public Integer getRating() {
            return rating;
        public void setRating(Integer rating) {
            this.rating = rating;
        public boolean isWebsiteExists() {
            return websiteExists;
        public void setWebsiteExists(boolean websiteExists) {
            this.websiteExists = websiteExists;
    }and here is the session ejb:
    package arcoiris;
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.ArrayList;
    import java.util.List;
    import javax.ejb.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    public class SearchSessionBean implements SessionBean, SearchSessionLocalBusiness {
        private SessionContext context;
        private arcoiris.ServiceLocator serviceLocator;
        // <editor-fold defaultstate="collapsed" desc="EJB infrastructure methods. Click the + sign on the left to edit the code.">
        // TODO Add code to acquire and use other enterprise resources (DataSource, JMS, enterprise bean, Web services)
        // TODO Add business methods or web service operations
         * @see javax.ejb.SessionBean#setSessionContext(javax.ejb.SessionContext)
        public void setSessionContext(SessionContext aContext) {
            context = aContext;
         * @see javax.ejb.SessionBean#ejbActivate()
        public void ejbActivate() {
         * @see javax.ejb.SessionBean#ejbPassivate()
        public void ejbPassivate() {
         * @see javax.ejb.SessionBean#ejbRemove()
        public void ejbRemove() {
        // </editor-fold>
         * See section 7.10.3 of the EJB 2.0 specification
         * See section 7.11.3 of the EJB 2.1 specification
        public void ejbCreate() {
            // TODO implement ejbCreate if necessary, acquire resources
            // This method has access to the JNDI context so resource aquisition
            // spanning all methods can be performed here such as home interfaces
            // and data sources.
        // Add business logic below. (Right-click in editor and choose
        // "EJB Methods > Add Business Method" or "Web Service > Add Operation")
        public List<EstablishmentLocal> performSearch(SearchRequestDTO searchRequestDto) {
            System.out.println("within performSearch");
            List<EstablishmentLocal> establishments = new ArrayList<EstablishmentLocal>();
            try {
                Context ctx = new InitialContext();
                DataSource ds = (DataSource)ctx.lookup("java:/guia");
                Connection con = ds.getConnection();
                Statement stm = con.createStatement();
                String query = buildQueryFromSearchRequestDTO(searchRequestDto);
                ResultSet rs = stm.executeQuery(query);
                int rowCount = 0;
                while(rs.next()){
                    rowCount = rowCount + 1;
                    System.out.println("while");
                    try {
                        EstablishmentLocal establishment = lookupEstablishmentBean().findByEstablishmentId(rs.getInt("establishment_id"));
                        establishments.add(establishment);
                        System.out.println("est name "+establishment.getEstablishmentName());
                    } catch (FinderException ex) {
                        ex.printStackTrace();
                    } catch (SQLException ex) {
                        ex.printStackTrace();
                System.out.println("rowCount = "+rowCount);
                rs.close();
                stm.close();
                con.close();
            catch (SearchRequestMalformedException ex){
                ex.printStackTrace();
            }catch (NamingException ex) {
                ex.printStackTrace();
            }catch (SQLException ex){
                ex.printStackTrace();
            //TODO implement performSearch
            return null;
        private String buildQueryFromSearchRequestDTO(SearchRequestDTO searchRequestDto) throws SearchRequestMalformedException {
            StringBuffer sb = new StringBuffer();
            //Head of the query
            sb.append("SELECT ");
            sb.append("e.establishment_id, ");
            sb.append("e.establishment_name, ");
            sb.append("avg(r.rating) as avg_rating ");
            sb.append("FROM ");
            sb.append("establishment e, ");
            sb.append("rating r, ");
            sb.append("comment com, ");
            sb.append("establishment_country ec, ");
            sb.append("country_ref cou ");
            sb.append("where ");
            sb.append("e.establishment_id=ec.establishment_id and ");
            sb.append("ec.country_id=cou.country_id and ");
            sb.append("e.establishment_id=com.establishment_id and ");
            sb.append("r.establishment_id=e.establishment_id and ");
            //Conditional parts of the query
            //If user wants comment to be present
            if(searchRequestDto.isCommentExists()){
                sb.append("e.establishment_id=com.establishment_id and ");
            //If user has typed in a keyword
            if(!searchRequestDto.getKeyword().equals("") && !searchRequestDto.getKeyword().equals(" ")&& searchRequestDto.getKeyword()!=null){
                sb.append("e.establishment_name like '%"+ searchRequestDto.getKeyword() +"%' and ");
            //If user has choosen a country
            if(searchRequestDto.getCountry()!=null && !searchRequestDto.getCountry().equals("") && !searchRequestDto.getCountry().equals(" ")&& searchRequestDto.getCountry()!=null){
                sb.append("ec.country_id = " + searchRequestDto.getCountry() + " and ");
            //If user wants website to be present
            if(searchRequestDto.isWebsiteExists()){
                sb.append("e.establishment_website is not null and ");
    /* conditions
    si utilisateur a renseign� un premier code postal "e.establishment_postcode = 'postcode_one' --si racine
            si autre code postal "or e.establishment_postcode = 'postcode_two'
            ainsi de suite
    and--vient de si racine
            //Tail of the query
            sb.append("0=0 ");
            sb.append("group by e.establishment_id ");
            //If the user wants a minimum rating
            if(searchRequestDto.getRating() != null && searchRequestDto.getRating().intValue()!=0){
                sb.append("having avg(r.rating) >= " + searchRequestDto.getRating());
            sb.append(" ");
            sb.append("order by e.establishment_id ");
            System.out.println("****************************");
            System.out.println(sb);
            System.out.println("****************************");
            return sb.toString();
        private arcoiris.ServiceLocator getServiceLocator() {
            if (serviceLocator == null) {
                serviceLocator = new arcoiris.ServiceLocator();
            return serviceLocator;
        private EstablishmentLocalHome lookupEstablishmentBean() {
            try {
                return (arcoiris.EstablishmentLocalHome) getServiceLocator().getLocalHome("java:comp/env/ejb/EstablishmentBean");
            } catch(javax.naming.NamingException ne) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
                throw new RuntimeException(ne);
    }I just don't understand why it does so. The peformSearch should be executed ONCE only.
    Here is my face config file:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
        <managed-bean>
            <managed-bean-name>SearchManagedBean</managed-bean-name>
            <managed-bean-class>arcoiris.SearchManagedBean</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <navigation-rule>
           <description></description>
            <from-view-id>/welcomeJSF.jsp</from-view-id>
            <navigation-case>
            <from-outcome>success</from-outcome>
            <to-view-id>index.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
    </faces-config>Can anyone help?
    Thanks in advance,
    Julien.

    Just reactivating my thread hoping someone will reply to it....
    Julien.

  • New unwanted behavior - Mail.app causes Address Book.app to open

    Hi all,
    For a long time now I've had an email rule that formats email items a special way if the email is from a person in a certain address book group. It has worked great.
    Lately, (sorry, but I don't know specifically when this started -- it has been at least a few weeks) when I get an email from someone in that special group, Address Book starts up. This did not used to happen, and I don't want it to happen as it is useless and distracting.
    Does anyone know what might have changed in recent updates to cause this behavior change? Alternatively, and better, does anyone have any ideas on how to make it stop without abandoning my formating rule?
    Thanks in advance for any ideas.
    MacBook Pro 17"   Mac OS X (10.4.8)  
      Mac OS X (10.4.7)  

    Hi Kirk.
    Do your rules involve the use of AppleScript, or any Mail plug-ins, or something like that?

  • Unwanted behavior in PDK struts

    Hi,
    I am facing some peculiar problem. I have one portlet. That portlet has one anchor link. on click of that link opens another popup window where I have my struts portlet added. In the newly opened portlet i have one text box where ReservationId is input. If I input that Id and perform it is going to next screen. The problem is if I close that popup page and click on the parent page it will again open that window and showing a validation message(Reservation Id is required). I didn't understand one thing. I am not submitting any form. But by clicking on the link(on parent window) why form is getting submitted automatically to struts. Any Idea?
    Regards,
    Reddi

    I too have the same problem....
    the portlet was working fine, till i added a "pdk-html:file" tag and changed the enc-type to multipart/form-data.
    when ever the form is submited, the message is shown "Portlet Unavailable".
    I noticed that... even the execute method is not called on form submission.
    Please... help.

  • Erratic Trackpad Behavior - Result of RAM Upgrade?

    Hello, all. It's been a long time since I last posted here, but I was wondering if anyone could offer their advice or expertise on an issue I've been having.
    Last fall I decided to upgrade my MacBook from 1GB to 2GB of RAM. I installed the upgrade myself, and the RAM continues to work perfectly. Unfortunately, I must have been somewhat rough in re-inserting the battery (that, or I knicked something under the trackpad). Not long afterwards, my trackpad began behaving erratically, highlighting text I didn't want highlighted and generally skipping all over the place. The mouse button on my laptop is now all but un-pressable.
    Fortunately, I use my laptop on my desk 90% of the time, and I have plugged in an external mouse with the "ignore trackpad when mouse is plugged in" setting on- and my computer functions as normal. However, I would like to see if I can regain proper use of my trackpad.
    I know that the sensory hardware there must be extremely delicate (hence my problem), and most would probably recommend taking it to an Apple specialist to get fixed - but I'm not keen on forking over money for an issue that I can continue to work around. I would simply like to know if anyone else has had this problem, and/or knows of an easy fix/maneuver that might relieve whatever pressure is on the sensors and restore the trackpad to proper working order.

    Thank you for the advice. I just tried that and it appears that with the battery removed, normal trackpad function is regained. Unfortunately, this defeats the purpose, because I only need to use the trackpad when I'm away from a power source.
    Though this may be an issue for a separate topic, it seems the cause of this is a slightly expanded battery. (I've already heard of similar instances.) I'm frankly at a loss for how Apple could allow such an issue to affect the vital components of it's laptops. My current battery still works just fine and I'd prefer not to purchase a new one over a couple of millimeters, but I'd also hate to risk any permanent damage to the internal components of my MacBook.

  • Unwanted external file opening behavior by pdfs

    I am using RoboHelp 8 (TCS 2) on a Windows Vista machine and have done so without issue for quite some time. However, today, after applying the BaseImage.dll fix described for images prepared in PS CS5.1 appearing as a red box (http://kb2.adobe.com/cps/859/cpsid_85901.html) any pdf that I apply to a project, either as a baggage file, by hyperlinking to the file or by embedding it now prompts a dialog box to open the pdf externally in projects exported as browser-based help.
    I don't know if the BaseImage.dll is related but that is the only modification that I have performed on my system. Normally, when I create a topic page in my TOC and link it to a pdf baggage file, the file opens within my main frame or when I link it as a hyperlink and set "Display in frame" to "Page Default (none) etc it will open within the browser. It is now applying this new unwanted behavior on older projects that I have gone back and re-generated which is why I suspect the BaseImage.dll has rewritten some default behavior.
    This is very problematic for me as I need the pdfs to open within the main application. I would sincerely appreciate any assistance!!!

    Hi there
    Perhaps the link below holds an answer?
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • 7344 blending behavior question

    I've noticed sometimes when doing a series of blended moves the first move in a sequence will have some (seemingly) random velocity, usually slow, and the rest will all be correct. Before the first flex_load_vs_position() and flex_blend() is called, all parameters are setup for the blending using:
    flex_config_vect_spc()
    flex_load_acceleration()
    flex_load_velocity()
    flex_set_op_mode()
    flex_load_blend_fact()
    with the velocity/acceleration/blend factor (-1)/etc that is desired. As mentioned, all the vectors AFTER the first one always work correctly, it is the initial move that sometimes is the wrong velocity. I'm thinking that this has something to do with calling flex_blend() for the first move, as some examples i have seen call flex_s
    tart() for the first move. I have tried this, but same random first velocity behavior results. Must be some kind of buffer that is not flushed out properly for the trajectory math to work or something?

    It sounds odd that with Start at the beginning will give you the same behaviour. Please check the example name 'Sequence of One-Axis Moves' that is shipped with the software for CVI or LabVIEW. It is going to be in the ...\samples\ directory of CVI or \examples\ directory in the case of LabVIEW.
    You can also start with a simple move example, using start, and then include one Blend sequence afterwards to see if you can reproduce the issue, it might be possible that you are calling other routines at the same time or one that is overwriting the Velocity and Acceleration values. In the order of functions call the Blend Factor after configuring the Vector Space, then set the operation mode, and finally load Accel/Deccel and Velocity parameters.
    Good luck!
    Nestor.
    Nestor
    National Instruments

  • Bizarre iTunes (podcast) behavior

    I'm getting some unwanted behavior trying to get the podcasts
    I want onto my iPod. Under the ipod options I have "Sync 5 most
    recent episodes of selected podcasts" checked, along with the
    ones I want copied to my iPod. In the Summary options, I have
    "Only Sync checked items" selected. I then went through and
    removed the check marks from all the episodes that I didn't want
    copied over, and hit 'sync'. iTunes proceeded to copy every
    episode of all the podcasts to the iPod. In essence it ignored
    both of the options I had selected. Now my iPod is full, and
    I'm at a loss as to how to get it to perform as intended.
    Any help would be much appreciated. Thanks!
    Windows XP

    Upgrading from 7.0.x to 7.1 seems to have done the trick.

  • PermissionDeniedException behavior in Mac OSX Finder

    OSX Finder shows a bit unwanted behavior when it comes to handling permission issues. On Windows, everything works correctly, OSX 10.6.x has an issue with moving files, OSX 10.7.x. shows issues when moving, renaming and deleting files. Note that I'm not sure if this issue is related to Adobe Drive or to how OSX works internally.
    Moving files - an issue with 10.6.x and 10.7.x
    When a user moves files to a location where they don't not have permissions to create a file, OSX Finder shows a system login dialog where you can enter your OSX username and password. After entering the credentials (which aren't the credentials of the DAM server) nothing happens, the file stays in it's original location and no error is shown to the user.
    In this case I would expect to get an error dialog which tells the user it doesn't have permissions to move the file. The OSX login dialog doesn't provide anything in this case as it doesn't allow you to login as a different Drive user.
    Error in the AD log when moving files
    2012/04/23 16:43:02,825 [ConnectionHandler-kernel] ERROR AbstractHandler - com.adobe.drive.data.model.DriveException: com.adobe.drive.data.manager.exception.PermissionDeniedException: Asset is unlocked (ID: 1050 | Field of Sunflowers.jpg | FILE | VISIBLE)
    com.adobe.drive.biz.filesystem.FileSystemException: com.adobe.drive.data.model.DriveException: com.adobe.drive.data.manager.exception.PermissionDeniedException: Asset is unlocked (ID: 1050 | Field of Sunflowers.jpg | FILE | VISIBLE)
         at com.adobe.drive.internal.biz.filesystem.FileSystemService.wrapException(FileSystemService.java:1645)
         at com.adobe.drive.internal.biz.filesystem.FileSystemService.run(FileSystemService.java:1695)
         at com.adobe.drive.internal.biz.filesystem.FileSystemService.run(FileSystemService.java:1668)
         at com.adobe.drive.internal.biz.filesystem.FileSystemService.rename(FileSystemService.java:1003)
         at com.adobe.drive.internal.ncomm.filesystem.RenameHandler.handleRequest(RenameHandler.java:68)
         at com.adobe.drive.internal.ncomm.filesystem.AbstractHandler$1.call(AbstractHandler.java:204)
         at com.adobe.drive.model.context.Context.run(Context.java:88)
         at com.adobe.drive.internal.ncomm.filesystem.AbstractHandler.handleWithContext(AbstractHandler.java:200)
         at com.adobe.drive.internal.ncomm.filesystem.AbstractHandler.handle(AbstractHandler.java:66)
         at com.adobe.csi.internal.ncomm.NCommDelegate.execute(NCommDelegate.java:107)
         at com.adobe.versioncue.internal.nativecomm.host.Host.execute(Host.java:200)
         at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.handleRequest(ConnectionHandler.java:162)
         at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.run(ConnectionHandler.java:81)
         at java.lang.Thread.run(Thread.java:680)
    Caused by: com.adobe.drive.data.model.DriveException: com.adobe.drive.data.manager.exception.PermissionDeniedException: Asset is unlocked (ID: 1050 | Field of Sunflowers.jpg | FILE | VISIBLE)
         at com.adobe.drive.internal.data.manager.DataManager.convertException(DataManager.java:4617)
         at com.adobe.drive.internal.data.manager.DataManager.moveAsset(DataManager.java:3809)
         at com.adobe.drive.internal.biz.filesystem.FileSystemService$12.execute(FileSystemService.java:1020)
         at com.adobe.drive.internal.biz.filesystem.FileSystemService$FSRunnable.run(FileSystemService.java:1825)
         at com.adobe.drive.data.internal.persistence.PersistenceRunner.run(PersistenceRunner.java:119)
         at com.adobe.drive.internal.biz.filesystem.FileSystemService.run(FileSystemService.java:1688)
         ... 12 more
    Caused by: com.adobe.drive.data.manager.exception.PermissionDeniedException: Asset is unlocked (ID: 1050 | Field of Sunflowers.jpg | FILE | VISIBLE)
         at com.adobe.drive.data.manager.exception.PermissionDeniedException.assetUnlocked(PermissionDeniedException.java:80)
         at com.adobe.drive.data.manager.call.MoveApplication.checkProcessPreconditions(MoveApplication.java:56)
         at com.adobe.drive.data.manager.call.Move.execute(Move.java:139)
         at com.adobe.drive.internal.data.manager.DataManager.moveAsset(DataManager.java:3805)
         ... 16 more
    Deleting files - an issue with 10.7.x
    When a user tries to remove a file it doesn't have permission to, it first shows a confirmation dialog, then a login dialog, see the move issue. After entering the credentials it shows an error dialog which tells that the file cannot be deleted. This is already better than the move behavior, only the login dialog is not necessary.
    Renaming files - an issue with 10.7.x
    When a user tries to rename a file it doesn't have permission to, it first shows a login dialog, see the move issue. After entering the credentials it shows an error which tells that the file cannot be renamed.

    Mac Dreamweaver lists files in alphabetical order by
    default... regardless of what type it is, folders included. It is
    by no mean random, so I'm not sure what to tell you is going on.
    Some people prefer the Windows method of all the folders at the
    top, but alphabetical is just as organized.

  • "other" category in spotlight results

    Hello!
    Starting with Mavericks I get some unwanted spotlight results.
    I use spotlight only to search for applications, so that is the only category I have selected.
    Now, when I search for something spotlight will show me a category named "Other" containing all sorts of files.
    How can i get rid of this?
    I have seen someone else having this problem and what he did is, he blocked all folders that would contain those results.
    But that cant be the answer. I can't go and block a million folders all over my harddisk. (at least I don't want too  )
    Maybe someone has an answer to that!
    Thanks!
    J

    You should check the answers here : https://discussions.apple.com/message/23637617#23637617

  • How to ward off unwanted keyStrokes.

    Hi all
    I have a Jtable to which I register a keyStroke defined by
    ctrlXKey = KeyStroke.getKeyStroke("control x");This is mapped to an action which opens up a form (a dialog).
    Whenver I invoke this shortcut say ctrl + x I get the form.
    The problem is that this dialog has a component (focused by default) which has a key listener which unfortunately listens to my key released event and triggers off some unwanted behavior.
    I dont want this component to react to my shortcut key event (which in any case was'nt meant for it)
    Kindly help.
    Thanks
    baskin

    Great, now you have two related postings and nobody still knows what you are doing. I didn't understand the design in your original question and still don't understand the design here.
    I understand the concept of displaying a dialog when a certain KeyStroke is invoked from the table. I don't understand the concept of why you are using a KeyListener on the popup dialog. Listening for a key release on a text field or button is not common. Maybe if we understood what you where tring to do we could offer a better solution.
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the [Code Formatting Tags|http://forum.java.sun.com/help.jspa?sec=formatting], so the posted code retains its original formatting.

  • Behavior of Send Email with Multiple Recipients

    There’s a probable unwanted behavior with the Send Email activity when you have more than 1 recipient.
    If you don’t flatten the the email activity, it acts like a multi-value published data activity and every subsequent activity downstream will trigger as many times as you have recipients
    in the email. I didn't come across this until recently, because sending an email is usually the last thing I do in a runbook.

    i think that might be on purpose, i can see scenarios where that would be useful to process something for each recipient.
    but if you disagree, use http://connect.microsoft.com to post it as a bug, and see what they answer :)
    Best Regards
    Jakob Gottlieb Svendsen
    Trainer/Consultant - Coretech A/S -
    Blog
    MCT - MCTS - VB.NET - C#.NET - Powershell - VBScript Mastering System Center Orchestrator 2012 - 3 day workshop - worldwide training click
    here

  • What's a good way to search in Leopard when I'm used to Panther's CMD-F?

    I need advice on how to search for files now that I'm using Leopard (instead of Panther) - it's beginning to wear my nerves thin. It was so incredibly easy to search under Panther but under Leopard I find it takes a lot more effort and gives inferior results. I've only had Leopard a few months and I must be missing something obvious.
    In Panther I could type CMD-F and it would open up a separate window where I could put in my search criteria and it would search and present the results in a separate window, sorted in list view. It would let me by default, set up my search criteria, e.g. filename, and always search by file name in designated place(s).
    In Panther if I wanted to search for an item in the active Finder window I could type in the search box in the upper right corner and after I found what I wanted I could click the x and it would go back to being the normal Finder window.
    Not so in Leopard.
    Now in Leopard, if I hit CMD-F it takes whatever window I was working in and turns it into some kind of search dialog. No thanks! If I wanted to search in that Window I would have.
    The problem is that there is apparently no keyboard command to undo this unwanted behavior - I have to take my hands off the keyboard and use the trackpad to click the browser back arrow to get my window back, then I have to open a new window for this search dialog to operate in.
    Next up in unwanted behavior, this search dialog never remembers that 100% of the time I am searching on the file name, and that I never ever ever want to search the "contents". So each time I do the search, I have to again take my hands off the keyboard and click "File Name", and then once again, I have to switch from icons to list view every single time since looking at an Icon with an abbreviated "File Name..." (without all the metadata about the file that one should be able to see in list view) is not as helpful as looking at the list view.
    To make matters worse though, in list view, there's a totally useless column called "Last opened" and there doesn't seem to be any way to change these columns to something useful, such as last modified or created date.
    What do I need to do to make my searches simple and efficient?
    Thanks.

    Start with http://www.pinkmutant.com/articles/Leopard/leospot.html and http://www.thexlab.com/faqs/stopspotlightindex.html, then my mod to Finder's Find at http://www.macosxhints.com/article.php?story=20080229204517495 for what you can change so you can find stuff excluded by the default structure.

  • How to "stupidify" UI controls?

    So far the only thing I don't like about JavaFX is how smart UI controls tend to be. Assume your application is based on MVP/MVC architecture. Now, consider UI control like CheckBox. What should cause CheckBox to change its state (checked/unchecked)? Is it user clicking on CheckBox? Possible answer is YES. Another possible (more accurate) answer is ABSOLUTELY NOT!
    Since your application is based on MVP/MVC architecture, the only reason for VIEW to change its state is to reflect state of MODEL which it observes. Therefore, it should be only the change in MODEL that causes CheckBox to change its state. But what does CheckBox do? It switches its state from checked to unchecked (and vice versa) when user clicks on it all by itself because it thinks (CheckBox thinks = MISPLACED LOGIC) that it is what is supposed to happen.
    So, how can be this (in my opinion UNWANTED) behavior suppressed? I've noticed that the implicit change of state that (not only) CheckBox does happens before user provided EventHandler set by setOnAction() method is executed. This allowed me to programmatically suppress the implicit change as a part of EventHandler implementation as shown in the example below.
    final CheckBox checkBox = new CheckBox();
    checkBox.setOnAction(new EventHandler<ActionEvent>() {
        @Override
        public void handle(ActionEvent event) {
            checkBox.setSelected(!checkBox.isSelected());
            presenter.checkBoxPressed();
    }); Now, this approach worked well up until feature request [url http://javafx-jira.kenai.com/browse/RT-13992]RT-13992 saying: "The CheckBox control should fire an event whenever the indeterminate or selected state changes." One of many consequences of implementing this feature is that the above solution doesn't work anymore (it results in a stack overflow). So, my first (and practical) question:
    (1) Is there any official way (by "official" I mean guaranteed to work in future releases) to suppress the above described implicit changes in state of UI controls like CheckBox, ToggleButton, RadioButton or ComboBox? To make this absolutely clear, here is an example of what I would like to achieve: User clicks on CheckBox, ActionEvent is fired but the state of CheckBox (checked/unchecked) remains the same. One more example: User clicks on item in ComboBox, ActionEvent is fired but the selection does not change.
    And my second (hopefully discussion-opening) question:
    (2) How do you feel about filing a feature request saying: "Under no circumstances should programmatic change in state of UI control (such as calling setSelected() on CheckBox or calling select() on SelectionModel of ComboBox) result in firing an event."
    Thanks for reading!

    >
    Shouldn't you just disable the button if the user isn't allowed to make the change?
    I don't wish to prevent user from being able to interact with UI controls, but to prevent UI controls from changing their state on their own accord. So, when UI control is clicked on (or whatever), its state will be (most likely) changed. But as a result of handling MODEL notification, not because the UI control predicts its future state. I just don't like UI controls to live a life of their own and thus leaving open a possibility, that the state of VIEW may not match the state of MODEL.
    >
    2) I don't think JavaFX has improved here since Swing, so the old solution applies: disable or remove your listeners while you load data or rely on the callback to do nothing because the value hasn't actually changed.
    >
    Awesome! When handling MODEL notifications, I will be temporarily removing EventHandler. Thank you very much!
    CheckBox cb1 = new CheckBox("Second");
      cb1.selectedProperty().addListener(new ChangeListener<Boolean>() {
                public void changed(ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) {
                    if (newValue.booleanValue()) {
                        cb1.setSelected(false);
                        cb1.fire();
            });Unfortunately, this approach doesn't work. I can see you're attempting to prevent stack overflow by reversing the change only when CheckBox has been set to "selected". Firstly, that is not what I need to achieve. Secondly, it causes stack overflow anyway (firing an event switches state back to "selected"). Thank you all the same!
    >
    I would not vote for a such feature request.
    >
    Why? I mean, why do you think it is a good idea to fire events in response to something other than a user gesture?
    >
    I didn't check but there are a few methods that you might be able to override for a custom checkbox class to get the behaviour you want (perhaps overriding fire() to do something else).
    >
    Yes, overriding fire() method seems to do the trick. I will examine this solution more thoroughly and check back later. Thanks!
    >
    In your example the View shouldn't have a reference to the presenter, if you want to be strict with MVP.
    >
    I deliberately suggested the architecture to be MVP/MVC (see [url http://martinfowler.com/eaaDev/uiArchs.html]http://martinfowler.com/eaaDev/uiArchs.html). Regardless of its name, here is how my architecture works:
    (1) Upon user interaction, VIEW passes control to PRESENTER.
    (2) PRESENTER decides what to do. If it decides to do something, it will be a change in MODEL.
    (3) When MODEL is changed it notifies VIEW using OBSERVER pattern.
    In some cases, I use COMMAND pattern to make changes in MODEL (to support undoable operations). Also, I use "push" version of OBSERVER and register observers (UI components) through PRESENTER. So, in my version of MVP/MVC, there is no explicit relation between MODEL and VIEW. Which makes it dead simple. And that I do like. :)
    >
    We use a Presentation Model for this, which is nearly MVP.
    >
    Thank you for bringing my attention to Presentation Model. I will consider using it in some of my future projects. However, I believe the above described architecture works for JavaFX just as well. I don't mind VIEW being responsible for changing its state. That is, as long as it happens upon notification from MODEL.

Maybe you are looking for

  • Only Desktop Picture on TV

    I connect my macbook pro to my tv using the mini dvi connector and vga/svga cable, and all i see on my tv is the desktop picture. How can I watch a movie or actually see everything else from my macbook on my tv?

  • Printing from wireless MacBook to iMac shared printer

    I have an HP PSC 2350 connected to an iMac in my office. I am using my MacBook via a Linksys router, in another room, and would like to print to the PSC 2350. The iMac and printer are turned on - but the printer does not appear on the MacBook. Someth

  • XSan with Gigabit Network

    Please, XSan solution is compatible with Gigabit Network? I have a XServer Xeon, XServer RAID but dont use a Fiber Channel cards, cable and connectors. Its Possible? Tks

  • Simple abap prog need  for date split in BDC

    hi split date. i am a fresher plz help me with this... i am getting date from legasy system in the format   mmddyy. before uploading this into sap i need transfer that into sap format. can u plz give me the code for this...using split. Thanks & regar

  • SOA suite

    Example: If there are 5 records to process and two records (record 2 and 3) fail while inserting/updating for some reason, at the end of the process you should see 3 records (1, 4 and 5) in the destination table and two records (2 and 3) in error tab