PSE 7 - DEsign Feature or Bug?

I wonder if the following is a PSE design feature or is really a bug.<br /><br />- In the Editor I have, say, 3 pictures open.<br />- I finish editing one and close it.<br />- Now the Organizer opens automagically!!!<br />- I would prefer the Editor to remain open, so I now<br />- Grumble and wish the system designers at Adobe certain "things" <G><br /><br />Does anyone have an answer to this?<br />Alexander (grumbled at least four times so far today...)

When a picture is opened in Editor from the Organizer, on closing this picture in editor the focus shifts to Organizer. The Editor does not close in this case just the focus shifts back to Organizer. In my case this does not happen when there are multiple images opened from Organizer and I close one of them. We may be able to help you if you give us the complete workflow which you are following.
-Smriti

Similar Messages

  • Aux Channel design flaw or bug ???

    Hi !
    I only ever need to use the Aux channels because the Buss channels don't allow you to insert a Send. A rather unwieldy solution to an otherwise simple requirement.
    Now here's the problem. Irrespective of whether the Buss source and Aux is set to stereo or mono ( whatever config I try ) the aux can't receive the signal if the Buss channel is panned to the right !! Left input, no problem
    Is this a design flaw, a bug, or is there something I'm missing ?
    I know there is a workaround to this problem - the same Audio copied to multiple track channels, but that creates a rather inelegant mixer.
    I've also read elsewhere in this forum about delay/phase problems when using Aux channels.
    Any pointers appreciated.
    Thanks

    Tele, I'm surprised that you'd make a comment like that.
    It's easy to tell the bugs from the features: the bugs are when the features don't work. And there are ample enough features... I mean bugs... in Logic to help make that distinction.
    Or did I really mean to say "enough bugs"...
    Well, as Space Ghost once put it, "It's that easy, and it's that hard".
    -=iS=-

  • Bug Report: Feature Request/Bug Report Form

    Re: Feature Request/Bug Report Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    The Feature Request/Bug Report Form does not include a drop-down option for Creative Cloud.

    Hi Stephen,
    We are collecting feature requests as idea threads here on the forums versus using that form. If you believe you have discovered a bug with Creative Cloud please post about it here on the forums.
    Thanks,
    -Dave

  • Missing features and bugs in 2.2 update...

    Missing features and bugs in 2.2 update...
    Here is my shortlist:
    1. Copy/Cut and paste - sadly still missing...
    2. Landscape view for keyboard - SMS and Email - still missing...!
    3. AM/PM indicator missing from "unlock" screen (in 12 hour clock) - BUG
    ... What's wrong with Apple these days - all of these issues (listed above) could have been easily implemented in version 2.2 and were frequently requested by all iPhone users since version 1.0 and yet Apple have ignored all of them...

    These features may or may not be that difficult to include, but what made you "fork out huge amounts to pay for a 'top of the range' iPhone" in the first place?
    As already provided, Apple has what is called their own "allocation of resources and prioritization", and if what is included doesn't meet your needs or wants, you should not have purchased an iPhone in the first place, or continue to keep using the iPhone if Apple doesn't include the features you need or want in a time table that meets your expectations, since there are plenty of cheap $100 phones that meet your needs or wants, you have a wide range of other phones to choose from which are less expensive, so that is exactly what you should do. No point in continuing to use a device that does not meet your needs or wants. Use one of the many less expensive devices you have to choose from that meets your needs or wants and move on.

  • Feature or bug? (ListView/SelectionModel)

    I attach a short program which illustrates a phenomenon I have observed. Basically, I am trying to repeatedly delete the first item displayed in a ListView. I select that item using SelectionModel.select(0) or SelectionModel.selectFirst() and then delete SelectionModel.getSelectedItem() from the underlying item list. The first time round it works. The second time round, SelectionModel.getSelectedItem() still returns the item from the first iteration. I would have expected the call to SelectionModel.select(0) to update selectedItemProperty. Have I misunderstood something? Should I be doing something different?
    Interestingly, a similar thing occurs if you replace select(0) with selectLast().
    But if you call select(1) everything works as I had expected (selectedItemProperty is updated).
    Feature or bug?
    Steve
    package selectionbug;
    import javafx.application.Application;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ListView;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class SelectionBug extends Application {
        public SelectionBug() { }
        public static void main(String[] args) {
            Application.launch(SelectionBug.class, args);
        @Override
        public void start(Stage primaryStage) {
            final ListView<String> list = new ListView<String>();
            ObservableList<String> items =
                FXCollections.observableArrayList("abc", "def", "ghi", "jkl", "mno", "pqr", "stu", "vwx");
            list.setItems(items);
            list.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<String>() {
                @Override
                public void changed(ObservableValue<? extends String> ov, String oldValue, String newValue) {
                    System.out.println("*** ChangeListener: "+oldValue+" -> "+newValue);
            Button button = new Button("Go");
            button.setOnAction(new EventHandler<ActionEvent>() {
                    @Override
                    public void handle(ActionEvent t) {
                        list.getSelectionModel().select(0);
                        //list.getSelectionModel().selectFirst();
                        //list.getSelectionModel().selectLast();
                        String string = list.getSelectionModel().getSelectedItem();
                        System.out.println(string);
                        if (list.getItems().remove(string)) {
                            System.out.println("removed");
                        } else {
                            System.out.println("oops");
            VBox vBox = new VBox();
            vBox.getChildren().addAll(list, button);
            Scene scene = new Scene(vBox);
            primaryStage.setScene(scene);
            primaryStage.show();
    }Edited by: winnall on 16-Mar-2012 00:35

    Hi, I'm the engineer behind the selection model API.
    There are a few things to note first:
    1) It is totally valid for the selectedItem to represent an item that is not actually part of the ListView.items list. It just means that if the selectedItem is set to a non-existent item, and when the item is added to the listview.items list, the selectedIndex will update to point to this selectedItem.
    2) Events don't fire when the property value doesn't change. So the first time you select(0) you end up with the selected index event firing as the new value is 0. If nothing else changes and you call select(0) again, you'll get no event fired.
    Now, I would argue that if the selected item / index is removed from the ListView.items list, it should be removed from the selection. This does not appear to be happening. There may be various reasons why this doesn't happen (selection models can have a LOT of nuances that all need to be keep balanced like a man with his spinning plates), but you should file a bug so I can investigate deeper.
    Thanks,
    -- Jonathan

  • Where is the report designer feature in the latest version ?

    Hello,
    We have switch from EPM 11.1.2.1 to EPM 11.1.2.3 with Smart View 11.1.2.5.200 and I'm not able to find the Report Designer feature on Smart View ?
    This feature allow us to include several smart slice in the same worksheet and also to use slider for POV
    Oracle removed this feature from Smart View ?
    Thanks!

    Hi,
    This feature is not removed in 11.1.2.5.200
    In Excel After creating the essbase connection > Navigate to Essbase > Query > Query Designer.
    Or Look at the lower right hand corner where you will see the link for Query Designer.
    HTH.
    Please mark as Correct answer if this answered your query.
    Thanks,
    Gowri Ramalingam.

  • Poor design features?

    I have had a Blackberry Pearl for almost a year now and I'm to the point of throwing it away over several design features even the "techies" where I bought it can't help me with.  I travel quite a bit and when I get off the plane and turn on the phone, I expect the phone to know what time zone I'm in.  Every other phone I have owned had this feature.  So far the only help I've received from the "techies" is to show me how to set it manually.  Duh.  Does anyone know how to set it, so it automatically sets the time?
    The other involves turning on the phone.  Simple enough, hit the red, phone-shaped button and Voila!, it's on.  But when it's in my briefcase, and I'm on an airplane, when it's supposed to be off and it happens automatically (through turbulence), and then rings....well, I have had more than one flight attendant get in my face over it.  When I explain, "It's a Blackberry Pearl" they smile.  They say it happens all the time.  Is there any way to set the turn-on feature for multiple key strokes?  That one has the techies stumped as well.
    Other than that, the poor camera quality and the trackball's design of sitting higher than the keypad so it activates when placed faced down on any a hard surface...I guess it's only a matter of time before I eat the early termination fee and move on to a better phone.  Any suggestions out there on what phone I should get?
    Thanks in advance for any help
    Wyldwud

    The BlackBerry does NOT automatically update the time zone. You must change it manually. Dumb phones are different than the BlackBerry smartphone. They dont have a calendar that could be potentially be wrong with the auto changing of the time zone. People complain both ways. It would be nice if it was an option that was off by default.
    Instead of turning it off, just turn the radio off. This is basically airplane mode. No way it can ring if it cant receive a call. Otherwise you can take the battery out for the duration of the flight.
    I have had a Pearl since day 1 when T-Mobile released the original 8100. I have NEVER had the trackball activate anything  when setting face down. Not unless I put something on top of it. If your don't like it then move on. Seems like your just wanting to vent. Every device has is pros and cons. I am sure you will find something you dislike about every device.

  • Do we have the chance to have a skin design features of a mobile.

    do we have the chance to have a skin design features of a mobile.

    Yes. Assuming you are using Flex and Flash Builder, in Flash Builder, create a new MXML Skin.
    Right click a directory in your profject (it is a good idea to create a new skins package. They multiply quickly)
    Choose a name for the skin
    Choose a Host Component for the skin (button, slider, scroller, videoplayer, etc.)
    Make sure you "Create As Copy Of" a specific skin class (whether it be the base skin, such as ScrollerSkin, or a skin subclass, such as VScrollBarSkin)
    Create
    Add in your own MXML Spark components. You can either use the ones already present in the skin as a base or overwrite them entirely. It's entirely up to you.

  • Spotlight indexing of Time Capsule - feature or bug?

    I understand why backups are indexed: the ability to use Spotlight from within Time Machine is a fantastic feature.  But the method by which this index is created does not make sense where a Time Capsule is in use (or indeed most networked storage, but since many configurations are officially unsupported let's just keep this discussion focused on the officially approved one!).
    Typically (from my sample size of 1), a complete system backup is of the order of 100GB; however, after the initial backup is complete, Time Machine only needs to copy modified files to the backup drive, which can lead to very small and fast subsequent backups: unchanged files are created in-situ with a hardlink to the existing copy on the backup drive.
    A problem arises when, after a backup completes, Spotlight attempts to index the changes to the backup drive: it appears that it inspects every unindexed file (involves transfer to the local machine) including such unmodified/hardlinked files.  This therefore gives rise to a situation where a backup that writes only a few kilobytes to the backup drive results in Spotlight reading hundreds of gigabytes from that drive.
    Even with a throughput of 100Mbps, this would take close to an hour and a half (in reality, especially over wireless networks, it takes many hours); meanwhile Time Machine reaches its next scheduled backup and cannot proceed until Spotlight has finished indexing.
    Altogether, this appears to render Time Capsules useless for system backup (unless one is connected via gigabit ethernet, which is neither a requisite nor a desirable constraint).  One does not need to look far to see how many users this issue is affecting.
    In previous versions of OS X, one could workaround this issue by disabling Spotlight indexing of the backup volume; however, since Lion (or Snow Leopard?), this is no longer possible.
    To my mind, the design is flawed - some might call it a "bug": there should be a more efficient method of indexing drives, especially networked ones (ideally avoiding the redundancy of reindexing hardlinked files).  At worst, Time Machine could provide to Spotlight all the metadata it requires for the entire backup: thus avoiding the need for Spotlight to read such files from the backup volume.
    ...or have I misunderstood something?

    nickety wrote:
    I understand why backups are indexed: the ability to use Spotlight from within Time Machine is a fantastic feature.
    That's not the reason; Time Machine requires the indexing in order to work, especially for the "Star Wars" display.
    Altogether, this appears to render Time Capsules useless for system backup
    That's not normal; you have something else wrong, possibly a corrupt index.  See the pink box in #D2 of Time Machine - Troubleshooting.
    In previous versions of OS X, one could workaround this issue by disabling Spotlight indexing of the backup volume
    Not really.  The backups were still indexed;  you just didn't get a message.  See the note in item 2 here: http://docs.info.apple.com/article.html?path=Mac/10.6/en/8991.html

  • Feature Requests/Bug Reports for PlayBook OS 2.0

    I'd like to report a few bugs/features that I think would really help make PlayBook better.
    Although most are minor items there is a chance that some items would be better suited as private reports directly to RIM.  If there is an appropriate channel to do so, please advise.
    For now, these 4 items are the main ones that come to mind.
    1.) Screen settings: I would **really**, **really** like to have an option to go to standby after 30min, 1hour, 2hours, or better yet - **never** (especially when I'm plugged in to A/C power or docked.  There are several apps I enjoy using (e.g. Browser) that I read/watch... only to have the device try to auto-suspend when the 5min is up.
    2.) If it is possible, it would be very nice if holding the volume up/down buttons actually continuously increased/decreased the volume vs. having to press the buttons multiple times
    3.) When using the Browser, I often minimize/auto-hide the location bar to maximize my screen real-estate... however when swiping down to view it... if I type a partial address and notice a match in the drop down for the site I want... I can't click on it, as this triggers the menu's auto-hide action
    4.) The new Messages app is great!  My only issue is that although I like the blinking red LED indicator (similar to a BB phone), the red corner marker in the top left of the screen is too distracting (and ruins the asthetics) of the apps/games I'm running when I get new messages all day long.  It would be very nice if there was a separate option for this indicator. (e.g. I still want the LED light, and the email count/icon indicator... just not the red corner overlay)
    Otherwise I'm loving my PlayBook both as a user and a developer and I'm looking forward to whats to come. ;-)
    PlayBook Apps: DataMine, Dots + Boxes, 5 Marbles
    BlackBerry SmartPhone Apps: 5 Marbles Soon: **** (D.Z.A), ****Quest, **** Challenge, VaultCracker, DevBrowser, Radial****

    Allow me to use the native contact, calendar and email apps to work with my contacts, calendar and email that are on my phone/desktop. Can't believe that this is not already done.

  • Double Clicking Issue Feature Or Bug

    Hi All,
    I've been using Mac's for over ten years and I'm experiencing an issue unlike anything I've ever seen before. I have this double-clicking issue (maybe more appropriately "accidental double-clicking issue") in certain programs.
    In iTunes for example, when I choose File/Add To Library and I double-click the root folder on my external hard drive (which contains subfolders such as Documents, Pictures, Movies, Music, Applications, etc..) iTunes begins to automattically import EVERYTHING on the folder without my having clicked the CHOOSE bubble. EVERYTHING!
    Either I'm crazy and I'm just noticing this now or this is the most annoying bug/feature I've ever seen.
    The issue also occurs in Mac The Ripper. When I went to choose a Save location and accidentally double-clicked a folder that had subfolders in it, I didn't get the opportunity to click CHOOSE. The Finder just assumed that my double-clicking a folder means that that is the folder I want to select.
    I hope I'm explaining this clearly. I don't know I never noticed this "feature" before!
    Is there anyway to turn it off?

    There isn't anything similar between the two in a hardware sense. The two machines aren't sharing anything. I only use the Magic Mouse with the new 27" i7 iMac.
    I tried to reproduce the effect in 10.5 to see if it was indeed a "feature", and it is. To a certain extent.
    At this point I've come to the conclusion that this is supposed to happen, in 10.5 and 10.6 (possibly 10.4 or earlier too) when a folder and it's sub-folders contain compatible files respective to the program attempting to access them. However, I don't think it should happen when a folder contains subfolders that have files that are incompatible with the particular program that is currently being browsed.
    Furthermore... I'm unable to reproduce the same issue today! This new 27" iMac i7 has been very "buggy" across the board!
    Like for example;
    When I first started it up, Airport and Firewire didn't appear in the Network preference pane in System Pref's. And it didn't recognize USB devices that I plugged in until I rebooted a few times.
    It ran REEEEEALLLLLLY HOT! Hot like when you put your hand on the hood of a car thats been sitting in the sun. But today it seems to be running much cooler...
    It also wont boot from any external hd or Disk Warrior 4.2 DVD.
    But all in all it's still a pretty sweet, and crazy fast.

  • PSE 7 reconnect file bug?

    I have copied the following from a 2008 message which appears to address my problem, but I cannot figure out how to get to the advised thread. I tried searching on the apparent title words, but the result was always this same message.
    COPIED FROM 19 OCT 2008 MESSAGE FROM JOHN ELLIS:
    "If you reconnect a file and get the message <old file> was not connected to <new file> or The file already exists in the catalog, then youve stumbled over a PSE bug for which there are workarounds.   See this thread:<br /><br /><a href="/webx?14@@.59b66777/5">John Rolfe Ellis, "Cannot Reconnect; File already exists" #6, 17 Sep 2008 2:49 pm</a><br /><br"
    My husband put a new, larger hard drive into my computer and transferred all my files to the new one which is now the master C: drive. I have tried and tried to reconnect my files, individually and as a group, but I always receive the error message listed below in John Ellis's message. Has anything been done to correct this bug, if that's what it is? I cannot simply move everything back to the old F: drive, because now there are new photos mixed in and I've reorganized the folders. I can find the pictures manually, but can't get the program to accept my choices. I'm really beginning to regret spending the money to upgrade to PSE 7, especially as the program crashes or freezes up, too, but I'll deal with one problem at a time! BTW, I'm usiing Windows XP, service pack 3.
    Thanks for any help possible.

    Kathy,
    Hmm, the output is still truncated.  I've attached an example of what it should look like below -- after "PSE Volume Table" should be many lines.
    1. Did you reply via email, or did you reply by coming back to the forum in your Web browser?  (You need to do the latter -- email replies don't always work.)
    2. In the Notepad that "psedbtool" popped up with the contents of "output.log", is it possible that some of the output wasn't showing (scrolled out of view)?  Do Edit > Select All, Edit > Copy, and then paste.
    Here's what it should look like:
    psedbtool version 1.07
    Opening catalog C:\Users\Ellis\Catalogs\PSE 7\Test\catalog.pse7db
    Photoshop Elements version:      7
    Total files               :      1
    Total files missing       :      0
    Total files offline       :      0
    Total files wrong volume  :      0
    PSE Volume Table
    Path used by PSE        : \\elliskids2\john
    Type                    : network_drive
    Status                  : online
    Total files             : 1
    Total files missing     : 0
    Total files wrong volume: 0
    Description             : //elliskids2/john
    Serial                  : //elliskids2/john
    Drive_path_if_builtin   :
    Id                      : 230
    Path used by PSE        : C:
    Type                    : builtin_drive
    Status                  : online
    Total files             : 0
    Total files missing     : 0
    Total files wrong volume: 0
    Description             : SW_Preload
    Serial                  : 66DE-00DA
    Drive_path_if_builtin   : C:
    Id                      : 108
    Path used by PSE        : C:\Users\Ellis\Catalogs\PSE 7\Test
    Type                    : database_relative_drive
    Status                  : online
    Total files             : 0
    Total files missing     : 0
    Total files wrong volume: 0
    Description             : database relative
    Serial                  : amoc:database_relative_volume
    Drive_path_if_builtin   :
    Id                      : 2
    Windows Drives
    Drive  Type             Serial     Path
    C:     builtin_drive    66DE-00DA 
    D:     removable_drive  0000-0000 
    E:     readonly_drive   0000-0000 
    G:     builtin_drive    5A63-D657 
    Z:     network_drive    F2E8-85B8  \\elliskids2\john\

  • What is proper way to report suggestions for app features And bugs to Apple

    What is the proper way to report suggestions for app features to Apple? Or, do they even want suggestions?
    And, how about reporting app bugs? Should I just assume the bug is already known, or is there a way for (quickly) reporting them?

    I'm not sure about bugs in non-Apple apps, but bugs in Apple apps can be reported via this form:
    http://www.apple.com/feedback/ipad.html

  • Apple tv Features and Bugs issue can be fixed

    Hi Apple
    We are looking for more safety, more new feature airplay, netflix , parental control, folder, new channels
    for netflix can you add netflix setting in setting to disable the search/ genre off/on it just have a instant queue / just for kids only.
    because as parent we work alot and we want a way for kids not go to search and click what they cant see. a easy way is to disable the search feature.
    for airplay for ipad, iphone and computer a way to stream on apple tv without glitches and reboot or close on the app.Airplay is wasting battiries life percents. it will be great a way to get this fix.
    it will be great a way to add app in a folder to make more room on the screen and have more cool channels add it like cnnet, crackle, kids programs, weather channel, buy movie tickets , fandango , plus more.
    the quaity from iphone4s,ipad 3, macbook is not getting better, is really low. I am trying to stream full 1080p photography from my devices and i get really low. i reboot it and still the same thing. photo stream has the same issue it will not appear in full hd
    please we are looking more foward for netflix setting to keep our kids safe, more great apps and better airplay feature and quaity to view files,music,video on apple tv without low,bad, wrost.
    thanks

    Apple don't read these user forums.
    Send feedback here:
    http://www.apple.com/feedback/appletv.html
    I don't like certain aspects of the way Netflix shows recently watched content either - in amidst Dora the Explorer etc there may be a poster for a horror movie I watched or something.  I'd like to disable this feature or be able to clear the recently viewed list and have a favourites list instead for kids shows.
    I do wonder however if the interface may be largely Netflix's design and not something Apple could necessarily change if they use some form of Netflix API to provide the content.
    I don't really like Airplay - we tend to use a Mac running 24/7 to provide iTunes content via AppleTV's Computers icon.
    AC

  • Error importing iDVD projects - feature or bug?

    I know you used to be able to import projects created in iDVD into DVD Studio Pro, but is that a thing of the past? I see there's a current known issue where projects created in iDVD 5 or 6 will not import into DVD Studio Pro 3 or 4
    http://docs.info.apple.com/article.html?artnum=301385
    and I'm wondering if that's as designed or if it's a bug that's being worked on. If there are any existing threads on the topic, I'd much appreciate a link. Couldn't find one other than the above Support document.
    Thanks!

    Another Discussion Link
    Forgot to close the link, sorry
    But here Using DVD SP Elements also works to some degree with iDVD elements and you can get elements and recreate to a template, have not worked it all through with all the new iDVD yet though you can get some elements (from iDVD APP->SHOW Packages>

Maybe you are looking for

  • Error when trying to create a site collection

    Hi,  I receive the following error when trying to create a site collection in sharepoint 2013. Any ideas of what I can do to resolve? Sorry, something went wrong Failed to call GetTypes on assembly Microsoft.AnalysisServices.SharePoint.Integration, V

  • How to filter selection in drop down box in Report Builder 3.0

    New to SQL reporting services - what is the syntax for filtering the drop down list in Report Builder 3.0?  I have the following:  =Parameters!ReportParameter1.value   and =Fields!Store.value  my drop down shows the project name numerous times rather

  • Oracle Linux 6.4 installs, runs, and manual shutdown OK ...  but restarts itself after 10 minutes or so

    Hi Guys Successfully installed Oracle Linux 6.4 operating system , which subsequently runs as expected. When Oracle Linux 6.4 is shutdown using  standard GUI  system/shutdown , it does a clean shutdown and power-off as expected  .... UNTIL some 10 mi

  • Clearing open itens in transaction F-30

    Hi, We use transaction F-30 to clear open itens. So we select each customer we want to clear. But when we have to clear itens from several customers any time we need to do this we must fill all the customer numbers we need. The question is: Is there

  • Transfer posting in MIGO- need BADI

    Dear All, i have this issue Stock transfer From Material code: 736 Same storage location and Same Plant to material code: 9010 same storage location and same plant and same Quantity and same UOM and Addition UOM. Example: Material: 736 SLoc: CT16 Pla