Split View: Should be easy but...

Ok. So I have a Split View. It looks a bit like this:
Split View
- Tab View
- Scroll View (Text View)
A vertical Split view displaying two things: the Tab View on the left, the Text View on the Right.
I want to change this.
Is there any way of switching the sides? Making the Tab View go to the right and the Text View to the left? and once my app is compiled, is there any property/method/code that would allow the user to change this at runtime?
Thank you a lot!

To switch the sides in Interface Builder, the easiest thing to do is unembed the views from the split view, move the views, and embed them in a split view.
1. Select the two views in Interface Builder.
2. Choose Layout > Unembed Objects.
3. Move the views.
4. Select the two views a second time.
5. Choose Layout > Embed Objects In > Split View.

Similar Messages

  • How to pair an apple TV with an Apple key board ?? Should be easy but ???

    Hi out there...
    Ive just bought an Apple TV and because I already have a Mac needed to buy a new key board to pair them up...but it's not happening !
    So have a wasted $89.00 Aus for nothing because it should be fairly straight forward
    Cheer Sal

    If you have a recent model Apple wireless keyboard you should be able to pair it with the ATV very easily. Apple's Apple TV: Using the Apple Wireless Keyboard provides step by step instructions for doing this & a troubleshooting section if you encounter any problems.
    In particular, note the "not paired or connected to another device" troubleshooting item. That was a "gotcha" for me because I had forgotten that I had paired my wireless keyboard with my iPhone to show someone how that works. Oops!
    If you need to unpair your keyboard, you do that from the device it is currently paired with.

  • Should be easy but how? --Getting objectClass

    Bare with my simple question =). How do I get the schema listing of the objectClass types? I.E. I have the following:
    cn=Brian Van,o=Home
    objectClass=top
    objectClass=person
    objectClass=organizationalPerson
    objectClass=inetOrgPerson
    cn=Brian Van
    sn=Van
    How do I pull just the objectClasses of "top", "person", "organizationPerson", and "inetOrgPerson" to enum through or something? I've tried DirContext listObjClasses = ctx.getSchemaClassDefinition(dn); but am getting errors (i don't think this is the right way). Thanks!

    Not sure about what you asked but...
            DirContext objClasses = m_Ctx.getSchemaClassDefinition("o=bar,cn=foo");
            NamingEnumeration enum = objClasses.search("", null);
            while (enum.hasMore()) {
                SearchResult r = (SearchResult)enum.next();           
                System.out.println(r.getName());
            }Should enumerate objectClass attributes of object "o=bar,cn=foo".
    If you want to enumerate all possible objectClass definitions that exist in
    your schema, just bind to schema object and list its attributes.
    Kulervo

  • I know this should be easy, BUT IT'S NOT!!  help!

    Hey everyone,
    I decided to swallow some pride and find some solution to my situation that should be simple. I've looked on many of the threads and still can't seem to find the solution.
    I am just trying to set up my Airport Express to my Powermac G5. Very simple... just want to run the ethernet through the Express from another room.
    I started by plugging in my Express. That was fine, I got a green light. Then when to Setup Assistant... it cannot find a network. After many attempts, still no network. I tried to reset my Express. No luck. I also configured my Express directly to my Powermac, all settings seemed just fine... except when I try to use it how it is supposed to be used, I get nothing. My G5 is reading my Extreme Card okay. So... what in the world am I doing wrong?
    Admittedly, I am no tech whiz when it comes to networking, so naturally, I assumed that this would be a simple and quick installation... that has seemed to last for hours and hours...
    Powermac Dual 2Gh G5, 4G RAM   Mac OS X (10.3.9)  

    Hi
    I had the same or similar problem when I first hooked up my airport. I took my computer to the Apple store to be sure my airport setup was correct. When they turned on my computer it immediately connected to their network. They had no idea why it wouldn't work at home. I was lucky that a person was standing there that had an idea what was wrong. He said it was possible that there was some interference in my home. So, the apple people suggested that I change from automatic to a specific channel. That was fine, except I asked them how could I do that if the computer didn't recognize the base station? So, we then tried hooking the base station up directly to the computer using an ethernet cable, and it worked (they had never tried this). When I got home I did this and changed the channel to 2 (you have about 10 or so channels you can try). I then put the base station back to the room where my cable is. The computer immediately recognized it. I now have three airport extremes in various rooms and they all work great, as long as I set them to a specific channel. You can try each channel and then check the strength of the signal to determine which is the best for your environment.
    Hope this helps.
    Larry

  • The browser and search bar has disappeared.... including the entire menu. How can I get it to show up again? Should be easy but I can't figure it out. Can anyone help?

    The only thing that appears at the top is...
    Latest Headlines
    Most Visited
    Getting Started
    No menu above it.

    You can drag '''Search Bar''' from '''Customize Toolbars''' window which is accessible either from
    '''menu bar''': '''View>Toolbars>Customize...''' or
    '''Firefox menu''': '''Options>Toolbar Layout...
    firefox 7.01

  • I cannot move my photos from my mac to my new ipad. It should be easy but it is not working. Help!  GB

    I am not able to move my photos from my desk top mac to my new ipad. I have my photos stored in iphoto on my mac.  What do I have to do to move these photos to the new ipad?  GB

    Connect the iPad to your Mac
    Launch iTunes.
    Click on the iPad name on the left side of the iTunes window under the devices heading
    Click on the Photos tab in the iTunes window on the right.
    Click on Sync photos from - and select iPhoto from the menu.
    Click on the albums, events, faces - whatever you want to select to sync. 
    Click on Apply in the lower right corner of iTunes.
    This kb article may help as well.
    iOS and iPod: Syncing photos with iTunes

  • Percentile in a collection. This should be easy but....

    I want to find the 80th percentile in the list of numbers in a collection.
    I have loaded data into a nested table:
    Type type_NumTable is TABLE OF Number;
    tbl_LocalScores type_numTable := type_numTable();
    I thought I could use Table() to accomplish this; however, the following comand
    select trunc(PERCENTILE_CONT(.80)) WITHIN GROUP (ORDER BY column_value DESC))
    into LocalTolerance
    from Table(tbl_LocalScores);
    gives me an error of
    320/52 PLS-00642: local collection types not allowed in SQL statements
    320/46 PL/SQL: ORA-22905: cannot access rows from a non-nested table item
    320/5 PL/SQL: SQL Statement ignored
    Can someone give me a hint as to what I'm missing or a suggestion on how to accomplish finding the 80th percentile within a collection.
    Thanks
    Larry

    user6282899 wrote:
    Can someone give me a hint as to what I'm missing or a suggestion on how to accomplish finding the 80th percentile within a collection.Well, hint is in the error message - do not use local collection types. Use SQL types. For example:
    CREATE OR REPLACE Type type_NumTable is TABLE OF Number;Or better use oracle defined type sys.OdciNumberList:
    declare
        tbl_LocalScores sys.OdciNumberList := sys.OdciNumberList(1,3,17,22,25,99,56);
        LocalTolerance number;
    begin
        select  trunc(PERCENTILE_CONT(.80) WITHIN GROUP (ORDER BY column_value DESC))
          into  LocalTolerance
          from  table(tbl_LocalScores);
          dbms_output.put_line(LocalTolerance);
    end;
    5
    PL/SQL procedure successfully completed.SY.

  • This should be easy! How can I change the background colour of my fields?

    Apologies if this has already been posted but nothing has come up via Google nor the Forum search.
    I'm sure this should be easy but it's really doing my head in!
    I have a number of textboxes, dropdown lists, etc within my form - I have set Custom backgrounds on each which are visible within Design View. However, in Preview PDF all the fields have a default blue colour and only change to my Custom backgrounds when you enter the field.
    Is there a way of removing the default colouring of fields so that it's the same as my Custom backgrounds? My Custom backgrounds are 'linear to bottom' so I don't want to just set border.fill.color to one colour.
    Thanks for any help,

    Hi,
    If you include this Javascript in the docReady event of the root node (default "form1").
    app.runtimeHighlight = false;
    This will turn off the field highlight. It doesn't prevent the user from turning back on the highlight, but it will mean that your form opens with the highlight off.
    Hope that helps,
    Niall
    Assure Dynamics

  • Successfully imported json bookmarks file into FF19, and library view shows folders correctly, but Sidebar view shows no folders and so loses my organization.

    Longtime FF user. Still on 3.6.28 mostly, due to my need for my large collection of hierarchically organized bookmarks. I have 2000+.
    Trying FF 19 today.
    Successfully imported the json file from other system.
    Via the Bookmarks menu, Show All reaches Library view and everything is there. Except for the fact that this FF design will not let me see the contents of more than one folder at one time. Which is why I've stayed with 3.6.28.
    Now, a friend has shown me that I can see multiple folders AND the contents of multiple folders using Sidebar Bookmarks, just as I wish. Great! But after importing my bookmarks, all I see is a random list of bookmarks in the Sidebar view. There are no folders or subfolders so with this view I lose all the organizational structure I see in the Library.
    Am I missing something? Is there a way (an addon) that would put everything in the Library Right Pane? instead of just one folder? That would be fine.
    OR
    Is there a way to preserve the organization of my bookmarks after importing them, in the Sidebar view? That would also be fine.
    Thanks for any helpful answers. Otherwise, back to 3.6.28 I go.

    In the Library view, everything functions as Mozilla would have it. Yes, individual bookmarks are not to be seen, except in the right side pane. And only from one folder at a time. Returning to the beginning, that was my complaint with Show All Bookmarks and why I've stuck with 3.6.28 coupled with Old Manage Bookmarks.
    And that's why I asked if anyone is aware of an addon to make the contents of more than one folder visible in the right hand pane of the Library view in FF 4 and up. I've even tried Mike S's "hack" of OMB to see if I could make "Organize Bookmarks" return on FF19. No luck.
    So Library View works as it "should". But that's insufficient for my needs.
    You've indicated that Sidebar view SHOULD function as I wish. But so far, barring a fix, I don't see folders, subfolders nor individual bookmarks ''in the order'' that they started in, from PC1. I don't know why that failed. I'm happy to keep trying things, til the moon turns green.
    Proceeding along -- sort Library? Yes, sorting works. But since the Library is functioning, unsorted is my preference. To make the Library View FULLY ADEQUATE though, I'd want to see bookmarks in different folders viewable at one time. What I need is the Sidebar view with all the folders showing, replicating the Library's View hierarchical structure.
    HTML export and import? I'm sure I can import one into FF19. But I don't know how to export them from PC1 as my bookmarks are in .json format. When I try to do that, the dialog window confines me to selecting an HTML file, and so I can't export the .json file I have. I'm sure there's an easy answer, but its not intuitive.
    Thx
    P

  • Dreamweaver closing when split view selected

    I'm seeking assistance with the following issue:
    I been using Dreamweaver MX 2004 for 2 years and now whenever
    I click on split view to view a file the application closes
    automatically without any warning. This is a recent occurance. The
    only modifications to my machine have been in the form of Microsoft
    XP updates but I don't believe that any of the recent updates I
    have installed should affect using the "split" feature in
    Dreamweaver. I've tried unstalling, rebooting then reinstalling
    Dreamweaver with no luck. Has anyone else experienced this problem
    or have any information as to how to fix it?
    Best,
    Tyler

    Are you updated to 7.0.1?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "oink33" <[email protected]> wrote in
    message
    news:ejii3t$nnt$[email protected]..
    > I'm seeking assistance with the following issue:
    >
    > I been using Dreamweaver MX 2004 for 2 years and now
    whenever I click on
    > split
    > view to view a file the application closes automatically
    without any
    > warning.
    > This is a recent occurance. The only modifications to my
    machine have been
    > in
    > the form of Microsoft XP updates but I don't believe
    that any of the
    > recent
    > updates I have installed should affect using the "split"
    feature in
    > Dreamweaver. I've tried unstalling, rebooting then
    reinstalling
    > Dreamweaver
    > with no luck. Has anyone else experienced this problem
    or have any
    > information
    > as to how to fix it?
    >
    > Best,
    >
    > Tyler
    >

  • It should be easier to change the default copyright company in Application Builder

    It should be easier to change the default copyright company in Application Builder.  
    I got the following from NI support to change the name of the company that is copyrighting the software.
    1. To show the desired hidden folder, you must select Tools>> Folder Options >> View >> Under 'Files and Folders'>> 'Hidden files and folders' >> check the 'Show hidden files, folders, or drives' >> Select 'ok'
    2. Navigate to C:\ProgramData
    3. Open ProgramData >> National Instruments >> LVProductDLLInfo >> 12.0.0 >>LabVIEW_ADE_120000.ini   ***Please note that the folder 12.0.0 may instead be 14.1.0 or another numeric value based on which version of LabVIEW you are using***
    4. Change the RegisteredOrganization and RegisteredOwner to the appropriate organization and owner respectively.
    The fix NI support sent me was to change the name of the current software owner.
    The company that owns the software is usually writing the program for another company that is paying to have it developed. If the software owner is not careful they may assign the copyright to their company or to the company that they developed software for last.   I am sure that the company that had software developed will be surprised if their name is not listed as the legal copyright owner.
    Stan

    I've found it now (sheepishly). It is a parameter defined in Home->Application Builder->Application 693->Application Attributes->Edit Definition. I thought it was using the database nls parameters, but it isnt. So I simply had to change the parameter value from $ to £.

  • Split view of table so top rows & bottom rows can be viewed simultaneously

    I sometimes work with large tables (thousands of rows) and need to be able to see what's in the top few rows and bottom rows at the same time. This is easy in Excel; there's a gizmo at the top of the vertical scroll bar that can be used to give a split view. I'm a newcomer to Numbers and have not yet found a way to do this. Any ideas, or is it simply not possible?

    I know this isn't a great solution but if you really really need to see part of the top and part of the bottom of the spreadsheet at the same time, you can hide the rows in between and unhide them when you're done
    Another, maybe better but still not so great way would be to use the filters in the reorganize panel:
    Add a new column. In that column, put a character (a dash, letter, etc) in the rows you want to be visible. In the reorganize panel, make a filter to show only rows that are non-blank in that column. You can quickly switch the filter on and off from here.
    Neither solution is very dynamic (you can't scroll through the bottom half of the spreadsheet while still looking at the top) but it may help if you are messing with only a few rows at a time.
    Lastly, if the top rows you need to see are header rows, you can freeze them. That's similar to the split view in Excel but can only be done for headers (of which 5 is the max).
    Message was edited by: Badunit

  • Split view default

    I have posted an "Idea" about how a server-side page should be opened. Please cast your vote.
    In my opinion, it should work as it always has - it opens in whatever you had last selected. But if forced to choose one, I would say SPLIT VIEW.

    Done.
    For those that have issues with the forum navigation, it's here: Split view default

  • I need a program for camera.The androide has a program IP Cam View basic that has the fohu HA 425 and I get the cameras.I downlouded the IP camera viewer in the Aple but this program doesnt have the fuho HA 425. Which apple program is compatible?

    I need a program for camera.The androide has a program IP Cam View basic that has the fohu HA 425 and I get the cameras.I downlouded the IP camera viewer in the Aple but this program doesnt have the fuho HA 425. Which apple program is compatible?

    Hi,
    As far as I know, Sony Ericsson Z520, like a lot of the other cell phones, doesn�t support bluetooth serial communication.
    See:
    http://developer.sonyericsson.com/entry.jspa?externalID=138&categoryID=5
    BUT(!) You should double check this information.
    If you ask me, we have done similar project.
    We are working on hobby project � our robot use J2ME cell phone as on-board brain.
    And there is connection between this small robot and Linux-based PC.
    Communication was done via BlueTooth (in reality we use Linux implementation of BlueTooth stack and obexftp).
    BUT (!) We use Siemens S75 for this communication.
    I�m afraid that Siemens is the only manufacture, which implemented serial communication over bluetooth, embedded camera and non-usb socket.
    Also there are some Motorola phones, which implement serial communication over bluetooth.
    But � note that all Motorola phones use USB sockets and it will not be easy for you to make connection between such a phone and the robot.
    If you need just connection between cell phone and PC, then may be USB is OK too.
    Our robot project: www.RoboHobby.com

  • Can you set DW to always show split view?

    This is not a major problem but an annoying thing and I can't seem to find.  I almost always work in split view - never design view.  Yet DW seems to default to design view. Even if I have previously edited a page in split or even code view, the next time I open that file (if I have closed and opened DW in the meantime) it opens in design view.
    I tried making a custom workspace that included viewing files in split view but sure enough whenever I re-open DW any files I open are once again displayed in Design View.
    Anyone know how to change this?
    Thanks!
    Ellie

    >>I tried making a custom workspace that included viewing files in split view but sure enough whenever I re-open DW any files I open are once again displayed in Design View.
    Yes, the same problem started in CS4-Mac for me.
    Just for kicks, I opened my custom workspace a moment ago. I then opened a document to split view, then resaved that setup as a new custom workspace.
    Upon reopening Dreamweaver the next time, it remembered my split view setting. However, the time after that, I was back in Design view.
    This seems to be pretty buggy.
    Hopefully someone will post a solution.
    ...pt

Maybe you are looking for

  • How i can connect to devices using apple id

    how i can connect to devices that using apple id

  • ALE Inbound and Outbound programs

    Hi, Can someone tell me as to how we create the inbound and outbound programs for ALEs??And the cenerio where we use the std FMs and where we use the customs programs for the corresponding action? Thanks, Supriya Manik.

  • Scheduling jobs procedure

    Hi all, I have two programs which needs to be run in background. The first program is set run at 12 am everyday and the other program should follow the first the first one. Can anybody guide me in creation of those jobs I followed this procedure 1)jo

  • RH 6 - publish fail

    One of our authors is having issues publishing a project that they have published before with no problems.  Here is the error message they received: Publishing has been cancelled. Connection failed.  Please check the connection and post again. Native

  • Can't share screen with my other Mac

    I loaded Leopard on both of my intel macs...a mini and a macbook. When I try to share a screen it ask me for my password and then tells me its wrong..Can anyone help? Thanks Perry