SPaces Feature or Bug?

I'm still undecided on the usefulness of Spaces but I'm giving it a shot.
I assigned my 4 main apps, each to a different Space. When each app has at least one open window I can use the Control/arrow keys to shift through the Spaces & return to the one I want. However, if any of the apps do not have an open window & you return to that space the toolbar for that Space's app do not show up, you only see the FInder. You have to go to the dock & pull it back up as if it had been hidden.
Am I missing something or is this what's supposed to happen? If this is intentional it's a really poor design.
Anyone have any ideas?
Thanks!

Not at all.
Say I'm using Excel, I finish the proposal I'm working on, print it & close the spreadsheet leaving no other Excel files open. I then switch to my email Space to send the proposal to my client. I then switch back to the Excel space to work on the next job but guess what? Excel isn't in that space anymore so I have to go down to the dock & unhide it. It just seems clumsy & very poorly thought out to me.
I frequently have apps running but without an open window at any certain time. My CAD program takes forever to launch so I let it run all the time so when I want to open a drawing it pops up in 2 seconds.

Similar Messages

  • Query on using Spaces feature to assign applications to spaces

    I like the new Spaces feature, having been a user of VirtueDesktops before.
    I have an issue with assigning an application to a particular Space.
    The instructions from Help are below. I was able to do this for 4 applications, which seems to be as many as fit into the window available for listing them. Then, I hit the "+" to add other applications that are already running. When the pop-up menu appears, it does not list those applications (it does list Finder and the System Preferences that is running). So I go ahead and pick the application off the list from my Applications/ directory. It doesn't then appear in the list of applications in Spaces so that I can assign it to a particular space.
    I assume that there isn't a limit to the number of applications I can assign in this way. Or is there a limit of 4.
    In addition, when I use the Help feature on the Spaces assignment preferences panel, this text appears:
    "To choose a space for the application, click the current space and choose from the pop-up menu."
    However, it is not clear what "click the current space" means. One of the little numbered box images for the spaces that I have? Nothing happens when I click them.
    Thanks for help.
    (Optional) To assign an application to a particular space, click the Add button and choose the application.

    If you want the application to always open in a particular space, click the pop-up menu and choose the number for the space you want.

    If you want an application to always be available, no matter which space you’re in, open the pop-up menu and choose Every Space.

    You cannot add the same application you already assigned to a Space.
    When you click the + sign, the pop-up menu shows the running applications which have not been assigned to a Space. If an application has been assigned to a Space, it will not be shown in that menu because the System Preferences/Expose/Spaces preference pane is used only for assigning applications to Spaces. If it is already assigned, there is no need to show it because it cannot be assigned to another Space. In that menu if you select “other” it will open your Applications folder, but any apps that have been assigned (and others that are not applications) will be grayed out. Perhaps what you are trying to do is assign the same application to two different Spaces. This cannot be done with the virtual desktop in Leopard, Spaces.
    You said you had experience with other virtual desktops. Those often let the user assign an application to two or three or more desktops. Spaces does not allow that. An application can be assigned to one Space or all Spaces, but not anything in between.
    I have interacted with other users who have experience using other virtual desktops and see this as flaw in Spaces. Perhaps it is. I have not worked with other virtual desktops. But this is how Spaces operates as a virtual desktop: an application can be assigned to one Space or all Spaces, but not 2, 3, 4 or any other number.
    If you see this as a big drawback with Spaces, you should notify Apple. I don’t remember the website for reporting bugs and suggestions, but you should be able to find it on these forums.
    If you are trying to navigate to the application running in Space 5, hold down the Control key and press the number 5 key. If you want to move the application in Space 5 to an adjacent Space, grab a window of the application in Space 5 and drag it to the any of the four edges of that window and it will switch to that Space. However, if you quit that application and open it again, it will open in its assigned Space, Space 5.

  • 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

  • Spaces Feature Request?

    I used to use VirtueDesktops under 10.4 for a virtual screen experience, and switched over to Spaces in 10.5, so far, I'm very happy, but I have one issue I'd love Apple to resolve and a feature request:
    - Finder error messages don't always "stick" or accompany the application that generates them (from a user point of view), which can make them annoying to find when they get hidden behind a currently active application window you're working in in another Space, or another Space entirely. The Finder / desktop experience should have an option to pop up application error messages over all other windows and automatically take you to the Space it's in, so you can avoid going on a search for "where's the error window" to get control of the application back.
    - I like the feature with Spaces where you can Click-&-Drag an application with the CTRL key, press a number, and off the application goes to that Space, but that only seems to work from 1-9. For those of us that can count in hexadecimal it'd be neat to be able to use CTRL-A through CTRL-F with this feature (in hexadecimal, A=10, B=11, and so on) to get at the rest of the Spaces available (I use all 16). While CTRL-A through CTRL-F have meanings in other contexts, I think it'd still be a good idea to enable that for this feature.
    I'm sure there are tricks I don't know too that may get me around these issues - comments welcome, please!

    If you want to report this to Apple, send a bug report (or enhancement request) via its Bug Reporter system. Join the Apple Developer Connection (ADC)—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report/enhancement request. You'll get a get a Bug (ER) ID number; thus, starting a dialog directly with engineering.

  • 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.

  • 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

  • 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 - 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

  • 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

  • SetCurrentRow feature or bug?

    When trying to set the current row of a RowSet to a Row that are obtained from the same Rowset (using findByKey) but with a rangeSize smaller than the total number of rows in the row set, the method setCurrentRow(Row) of the RowSet doesn't work:
    ViewObject voLine = am.findViewObject("theVO");
    Row [] rLines = voLine.findByKey(new Key(new Object[]{ Pkval1, Pkval2 }),1);
    // to this point rLines > 0
    voLine.setRangeSize(-1);
    voLine.getAllRowsInRange();
    voLine.setCurrentRow(rLines[0]); //to this point there is no current Row of the V.O.
    Row row = voLine.getCurrentRow(); // row == null
    if you do:
    ViewObject voLine = am.findViewObject("theVO");
    voLine.setRangeSize(-1);
    voLine.getAllRowsInRange();
    Row [] rLines = voLine.findByKey(new Key(new Object[]{ Pkval1, Pkval2 }),1);
    // to this point rLines > 0
    voLine.setCurrentRow(rLines[0]); //to this point the current row of the V.O. is OK.
    Row row = voLine.getCurrentRow(); //row has the data you get the rowset correctly positioned.
    Is this a bug or a feature?, if a feature, did you forget to document it? Why do we have to learn those things the hard way?
    The desired behavior would be to move the RowSet to a new (valid) Row, regardless of the RangeSize setting that the Rowset
    had when the Row was found, next Rel please?
    OBC4J makes me remember that to developers:
    1) What seems easy is difficult,
    2) what seems difficult is Impossible,
    and 3) what seems impossible that guy at the corner store is doing without Computers... :)
    null

    Hi Alexander,
    Sorry your experience has been frustrating.
    In your first code snippet, here is what is happening:
    When you call findByKey, BC4J looks in the cache for the rowset of the VO. If it does not find the information you have asked for in the cache, it creates a new, temporary view object on your behalf, and uses that to retrieve the rows. Now, when you later call setCurrentRow, you're setting the current row of the temporary view object. The next call to getCurrentRow on the original view object doesn't work. I'm sure there are some cases where this behavior is desirable, and doesn't cause adverse side-affects.
    I'm sorry if I'm doing a terrible job explaining this. It is coming second hand from the developer I spoke with. He said that using getRow() instead of findByKey() was a better way to ensure you're working the VO you specify.
    BC4J can be a pretty complicated but powerful framework. We are continually trying to improve our documentation coverage, but it is a huge job.
    We appreciate your patience and your feedback, and we do put it to good use!

  • Spaces Feature Issue/Feature Request

    In playing with Spaces, I came across something I was actually surprised didn't work. Here's what I did:
    -Setup a bunch of apps in Space 1.
    -Setup Safari in Space 2.
    -Switch to Space 2.
    -Unplug external monitor.
    -Plug external monitor back in.
    -Switch back to Space 1.
    When I switched back to Space 1, I was hoping (actually expecting) all my app window sizes/positions were preserved, but alas, they all get resized, moved around, and basically randomly placed so I have to set them all up again every time I unplug my external monitor.
    I actually unplug my external monitor fairly frequently, to use my Macbook on-the-go, or even to hook up to other displays (for streaming tv, etc.), and would really like the ability to switch between monitors and not have to reorganize all my apps every time I switch, without having to close/reopen all the apps every time I unplug. I thought this might be a cool feature to add to Spaces.

    I agree, this is an annoying result of using an external monitor with extended desktop mode. I would submit your feedback via this address, it is much more likely to be seen by designers.
    http://www.apple.com/feedback/

  • Eyes crossed from trouble shooting extra space and 1px bug

    I"ve been trouble shooting a couple of pages theat are giving
    me some grief. I've searched therough the forum threads and tried
    all the solutions, which seemed viable, but to no avail. I have a
    couple of pages with image maps for navigation that are creating a
    range of extra space at the page bottom. I could really use a fresh
    set of eyes, to scan my code, I've been over it and over it and
    it's starting to blur. I've attached a portion of my master CSS
    page, as well as code for lot 8 and 9 pages. Lot 8 has no extra
    space in FF and just a bit in IE. Lot 9 is a prime example of the
    greater issue on the other pages.
    Additionally. I have a hack in place to accomodate a 1px IE
    bug that shifts the page body right in IE. That hack is only
    working on a few of the pages, when viewed in FF, which leads me to
    believe something must be off. Again, My eyes are crossing from
    reading over the code.
    If you'ld like to have a look at the page its,
    pineglenproperties.com, user name: pineglenproperties.com password:
    pineglen!
    My gratitude to any of you who can help. -nic

    Also, out of curiousity, you have a Div named header, also a separate header section containing just the logo in it. Any specific reason?
    And is the image on the site supposed to look like this?
    And, a couple of typos such as this one:
    Funding your Eeducation

  • MapViewer Bean Feature Requests & Bug Tracking?

    Hi-
    I'm wondering where I should post feature req's and bugs for the MapViewer bean. Is there a place where these things are tracked?

    Please post here. The dev team will collect and track them internally. Or if you are a customer you can always go to metalink.oracle.com and post over there. The product id for mapviewer is 1215.
    thanks,
    LJ

Maybe you are looking for