Lists Driving Me Crazy!

I am trying to use automatic lists in Pages '09. I want a list that looks like this (the indents on the a, b, c don't show up in this message but are there in Pages):
1. Title 1
a. one
b. two
c. three
2. Title 2
a. one
b. two
c. three
But, when I use the tab key to indent to the next level after the numeric titles, I get:
1. Title 1
a. one
b. two
c. three
2. Title 2
b. one
c. two
d. three
The next block starts with a "c.". What am I doing wrong? I want each sub-level to start with "a.".
Message was edited by: mwfanelli

PeterBreis0807 wrote:
mwfanelli
Sounds to me like you have a stray character in there other than the straight returns and tabs.
+Menu > View > Invisibles+
Nothing odd or out of the way.
Clean up any unnecessary spaces etc. then select the entire list text, including the last paragraph return, +double click+ the None List style in the Styles Drawer, and reapply your list style.
Yeah, this works but I have to do this each and every time I need a decent list. That's hardly "automatic"! I shut off the automatic stuff and now do everything manually.
For constructing List styles:
http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=139&mforum=iworktips ntrick
Thanks but it's not the list styles, it's the application of those styles that is at fault.
Oh well, I'll use the manual method of making lists for this week or use Office 2008 on the library Mac. Next week, I'll be getting Office 2008 again from the site license at the school. Really, this has to be the silliest auto formatting I have ever seen in a word processor!
Thank you for taking the time to help.

Similar Messages

  • This website is driving me crazy.   All I need to do is to contact a real body for help that is not listed.

    This website is driving me crazy.  All I need to do is to contact a real live body for help that is not listed.
    This shouldn't be that difficult.  GRRRRR

    Post DETAILS about the help you need here and someone may be able to help... some questions to get you started
    From the Premiere Elements Information FAQ http://forums.adobe.com/thread/1042180
    •You MUST use an account with Administrator Privileges to run Premiere Elements
    •(Doing Run as Administrator http://forums.adobe.com/thread/969395 [says Encore and also for "All" versions of Premiere] will sometimes fix "odd" errors)
    •What version of Premiere Elements? Include the minor version number (e.g., Premiere Elements 12 with the 12.0.1 update).
    •What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac"
    •Has this ever worked before?  If so, do you recall any changes you made to Premiere Elements, such as adding Plug-ins, brushes, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers; or installing/uninstalling any programs?
    •Have you installed any recent program or OS updates? (If not, you should. They fix a lot of problems.)
    •What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    •If you are getting error message(s), what is the full text of the error message(s)?
    •What were you doing when the problem occurred?
    •What other software are you running?
    •Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    And some other questions...
    •What are you editing, and does your video have a red line over it BEFORE you do any work?
    •Which version of Quicktime do you have installed?

  • Errors driving me crazy! But, it all compiles fine

    Errors driving me crazy! although compiles fine
    I am working on a project for an online class - I am teaching myself really! My last assignment I cannot get to work. I had a friend who "knows" what he is doing help me. Well that didn't work out too well, my class is a beginner and he put stuff in that I never used yet. I am using Jgrasp and Eclipse. I really am trying but, there really is no teacher with this online class. I can't get questions answered in time and stuff goes past due. I am getting this error:
    Exception in thread "main" java.lang.NullPointerException
    at java.io.Reader.<init>(Reader.java:61)
    at java.io.InputStreamReader.<init>(InputStreamReader .java:55)
    at java.util.Scanner.<init>(Scanner.java:590)
    at ttest.main(ttest.java:54)
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    This is my code:
    import java.util.*;
    import java.io.*;
    public class ttest
    static Scanner console = new Scanner(System.in);
    public static void main(String[] args)throws IOException
    FileInputStream fin = null; // input file reference
    PrintStream floser = null; // output file references
    PrintStream fwinner = null;
    Scanner rs; // record scanner
    Scanner ls; // line scanner
    String inputrec; // full record buffer
    int wins; // data read from each record
    int losses;
    double pctg;
    String team;
    String best = null; // track best/worst team(s)
    String worst = null;
    double worst_pctg = 2.0; // track best/worst pctgs
    double best_pctg = -1.0;
    int winner_count = 0; // counters for winning/losing records
    int loser_count = 0;
    // should check args.length and if not == 1 generate error
    try
    Scanner inFile = new Scanner(new FileReader("football.txt"));
    catch( FileNotFoundException e )
    System.exit( 1 );
    try
    floser = new PrintStream( new FileOutputStream( "loser.txt" ) );
    fwinner = new PrintStream( new FileOutputStream( "winner.txt" ) );
    catch( FileNotFoundException e )
    System.out.printf( "unable to open an output file: %s\n", e.toString() );
    System.exit( 1 );
    try
    rs = new Scanner( fin );
    while( rs.hasNext( ) )
    inputrec = rs.nextLine( ); /* read next line */
    ls = new Scanner( inputrec ); /* prevents stumble if record has more than expected */
    team = ls.next( );
    wins = ls.nextInt();
    losses = ls.nextInt();
    if( wins + losses > 0 )
    pctg = ((double) wins)/(wins + losses);
    else
    pctg = 0.0;
    if( pctg > .5 )
    if( pctg > best_pctg )
    best_pctg = pctg;
    best = team;
    else
    if( pctg == best_pctg )
    best += ", " + team;
    fwinner.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    winner_count++;
    else
    if( pctg < worst_pctg )
    worst_pctg = pctg;
    worst = team;
    else
    if( pctg == worst_pctg )
    worst += ", " + team;
    floser.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    loser_count++;
    fin.close( );
    floser.close( );
    fwinner.close( );
    catch( IOException e ) {
    System.out.printf( "I/O error: %s\n", e.toString() );
    System.exit( 1 );
    System.out.printf( "%d teams have winning records; %d teams have losing records\n", winner_count, loser_count );
    System.out.printf( "Team(s) with best percentage: %5.3f %s\n", best_pctg, best );
    System.out.printf( "Team(s) with worst percentage: %5.3f %s\n", worst_pctg, worst );
    The assignment is:
    Create a Java program to read in an unknown number of lines from a data file. You will need to create the data file. The contents of the file can be found at the bottom of this document. This file contains a football team's name, the number of games they have won, and the number of games they have lost.
    Your program should accomplish the following tasks:
    1. Process all data until it reaches the end-of-file. Calculate the win percentage for each team.
    2. Output to a file ("top.txt") a listing of all teams with a win percentage greater than .500. This file should contain the team name and the win percentage.
    3. Output to a file ("bottom.txt") a listing of all teams with a win percentage of .500 or lower. This file should contain the team name and the win percentage.
    4. Count and print to the screen the number of teams with a record greater then .500 and the number of teams with a record of .500 and below, each appropriately labeled.
    5. Output in a message box: the team with the highest win percentage and the team with the lowest win percentage, each appropriately labeled. If there is a tie for the highest win percentage or a tie for the lowest win percentage, you must output all of the teams.
    Dallas 5 2
    Philadelphia 4 3
    Washington 3 4
    NY_Giants 3 4
    Minnesota 6 1
    Green_Bay 3 4

    If you are working in Eclipse IDE, you can set a breakpoint and single step through your code to determe what line crashes. You can also examine variable values before the crash. Locate a line before the crash and set a breakpoint by double clicking on the vertical blue line that appears immediately to the left of the line of code. A blue 'dot' will appear on the line. Then,from the menu, select 'debug as application'. This will run your main() function up to that break point. In the menu, there are icons to allow you to single step through lines of code from that point, and another icon to step over lines of code if you want.
    Alternatively to setting break points, you can sprinkle your code with piles of System.out.println statements. Example: you have System.out.println("1"), and in another part of your code System.out.println("2"). If you code runs and prints out "1", but not "2", then you code crashed between them. I use breakpoints and System.out.println to debug.
    In your trace, you have "at java.util.Scanner.<init>(Scanner.java:590)" which means it crashed at line 590 (note in all the tracings, Scanner.java is a name of one of your custom classes and not a vendor class, thats how you can quickly find what part of the trace is important to you).
    NullPointerException means you tried to call a function on an object that is not instansiated (its null).
    Example: person.getName() will not work if person is null. Its the call to getName() that crashes.
    Debugging code is a very important skill set that you have to develop in which you have to logically track down and isolate problems.

  • Every time I've tried to open my hotmail today, an H&R Block site pops up trying to get me to buy their tax prep software and I can't find a way around it. This is driving me crazy. Please help.

    Every time I've tried to open my hot mail today the page is usurped by H&R Block, trying to get me to buy their tax prep software and I don't see a way to close it out.

    No, it doesn't come up in any other browser. The interesting thing this morning was I had inadvertently doubleclicked my hotmail icon and two windows came up, one over the other. The first one had the H&R Block site that is driving me crazy, which I closed, but the second one had my dear old emails without the dreaded H&R Block takeover. I haven't been able to send a picture of the page, but it looks like an H&R Block web site and lists the various tax prep software and prices. You can navigate all around the site, too.

  • Built in iSight driving me crazy - erratic

    Hello there,
    My built in iSight (iMac 2011, 21", OSX Lion updated to date) is driving me crazy, as I need to record some videos for my job. When I´m on the administrator user -the only one I use- it works fine on Facetime, PhotoBooth and iChat, but on Quicktime and iMovie it does not (black screen on iMovie, no green light on camera, if I press "record" it stops after 3 seconds / on quicktime if I click on "record new video" it appears an error message, could be translated -my OSX is in spanish- as "the task can´t be done at the moment".
    I tried adding a new user, and it worked fine with it, I did and SMC reset (same error), erased all preference files (same thing) and later I reinstalled Lion without formatting the hard drive.
    After this last step it worked. I could record a demo video on both quicktime and iMovie. But this morning when I turned it on the error is there again, same behavior, same everything. Before trying to record I just:
    - Changed the wallpaper and some mouse options, and the sound output from "internal" to my external usb sound card.
    - Opened Safari to check mail
    - Opened garage band (it looked for the .au)
    - Opened Logic (same as garage band)
    I´m out of ideas, any help would be great. I´ve just installed Skype to see what happened and it does also not work.
    Thanks in advance,
    Urko

    You're welcome, Urko.
    Well done tracking down the source of the conflict! 
    FWIW, today I checked Focusrite's support pages and note that Scarlett 2i2/usb does NOT appear on the their list of products known to be compatible with Mac OS X Lion: http://www.focusrite.com/answerbase/en/article.php?id=1159
    However, I did find several Focusrite articles concerning the Scarlett USB 2.0 Range products: http://www.focusrite.com/answerbase/en/category.php?id=108.   Article titles from that page, including "Scarlett 2i2", "Using iSight/Facetime HD webcam with your interface on a Mac", or "Latency issues using a Scarlett with Logic", may give you some cither ideas.
    If properly applying the 10.7.5 Combo Update doesn't solve your problem, and if you don't get the real solution from info you find here, I agree that your best bet is direct help from Focusrite. They should best be able to tell you how to use their product with your Mac system.  http://us.focusrite.com/contact-support
    Message was edited by: EZ Jim
    Mac OSX 10.8.2

  • Why does an exclamation mark in a triangle icon pop up whenever I try to blow up a thumbnail of one of my photos in my IPhoto. It's driving me crazy! Please help!

    Hello there,
    I need to know why the icon of an exclamation mark in a triangle pops up whenever I try to enlarge any photos on IPhoto 11. The thumbnails are all there but I cannot blow them up to full (or even half) size. It is driving me crazy so I woud apprecaite any help I can get.
    I'll admit to being a complete luddite when it comes to computers (Mac or otherwise) so I'll thank any of you that help in advance for your patience!
    Regards,
    Adrian

    That means the file path or link to the original file has been broken.   Apply the two fixes below in order as needed: 
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Static interference from powerbook and thru my speakers is driving me crazy

    I am using the powerbook 1.67, an airport express and klipsh speakers for my sound. there is a mexican radio station that is playing at a very low but very annoying level thru the speakers. I have a 2.4 cordless phone on my desk as well as a printer plugged into the AX. I unplugged the phone and it is not coming from there. I restarted the AX as well as the modem and it's still there. The only way it stops is when I unplug the speakers. So the speakers themselves are somehow picking up this interference it looks like. Any suggestions? It's driving me crazy.
    I wrote to the speaker company:
    I am getting terrible radio/static
    interference on my Klipsch computer speakers. I
    have them plugged directly into my MAC laptop and
    have an almost full signal from a mexican radio
    station. I tried unplugging the modem, unplugging
    the printer, moving the speakers, etc. All to no
    avail. It makes it unbearable to use my speakers
    unless turned way up. What can be done??? Thanks -
    They wrote back:
    I am very sorry to hear of your problem. Try
    plugging the speakers into another source other
    than your computer, eg. CD player, MP3 etc. and
    see if the static problem follows the speakers.
    Let me know what you find.
    When replyling to this e-mail please include
    original and all replies.
    Promedia Dept.
    Klipsch Group Inc.
    I wrote back again:
    I plugged the speakers directly into an iPod and the static is not there. But if plug into the Mac laptop right next to it, the radio interference is there. I closed iTunes and it is still there.
    +INTERESTING that there is no radio static from the iPod, but my silver Powerbook G4 sends out the static the second it is plugged in.+
    +*and now the speaker company wrote back again*....+
    Since the static did not follow the speaker to another source at least you now know that the problem is not in the speakers. I would have the sound card in your Mac checked, something seems to be sending out a strong enough magnetic wave to overcome the shielding in the speakers.
    Thank You,
    When replyling to this e-mail please include original and all replies.
    Promedia Dept.
    Klipsch Group Inc.

    That is unfortunate to put up with.
    There might still be some simple cures yet to try.
    The entire house wiring may be one cause picking up the source and is using your devices as final output.
    1. I'd look for a power conditioned master brick to plug your PowerBook, and other devices.
    USP back up power devices can also condition the power lines noise.
    There are all types available as listed:
    http://www.thecablepro.com/cableDetail.php?cID=120&cgID=1
    Each of the 12 outlets is individually filtered and double filtered from every other outlet providing maximum component to component isolation.
    http://www.crutchfield.com/ search 'surge'
    2. The Cables: as mentioned where chokes are already in place on them. Most USB come with them.
    3. The Speakers: Not sure, but they must be the self powered type as well from AC wall outlet. That brand is known for high quality.
    Could foil the inside of cabinets “Faraday Cage” to reduce radio signals.
    4. AC Outlets: Are they 3 prong grounded type?
    Check your fuse box area to see if a ground cable
    (roughly 4-6 gauge) is fastened to plumbing, and should be.
    You can also pick up a ground fault checker that just plugs into outlet to verify correct outlet wiring. A HomeDepot tool about $6.
    5. Lead from PowerBook to speakers:
    If this lead is extra long leading to speakers, it too could gather radio.
    If you have extra cat 5 laying around, convert the ends to make alternate lead. Each pair in the cable is color coded like Blue/Blue Wt. These pairs are twisted to shield out interference together with foil rapped covering. Or get shielded cable.
    In the old days of Amps doing all the power to speakers, some people would have a pile of wire rolled up behind speaker, and it also made a perfect antenna.
    Lamp cords: Make sure these cords are not mixed in with your devices. As in crossing over each other.
    Dimmers: If you have lamps on line dimmers, they can go bad over time and cause interference.
    Then back to circuit panel and cut off each circuit to isolate other sources.
    Hopefully you solve it.

  • Hi, Mail is driving me crazy by grouping received messages together by subject. I want each message, irrespective of subject, to appear stand-alone on a line of my mailbox. My old Mail did this automatically. How do I get back to old ways! Thanks...Rick

    The new Mail is driving me crazy by grouping messages together according to subject. My old Mail, under OSX 10.5, listed each message independently in my Mailbox by date received. One line in my Mailbox for each message. How do I get this way of posting messages back again? Thanks.

    So nice of you be so responsive. Thank you. Unfortunately, something is just not right even though I pretty much always keep my Macs in good health. When I move that folder (~/Library/Containers/com.apple.mail) and let it create a new one, Mail stops remembering ANY preferences. I can move and resize my windows and change my Prefs, but when I quit and relaunch Mail it goes back to some default state with none of my changes honored. Furthermore, when I search for the string "DisplayInThreadedMode" with BBEdit within that folder and all its subfolders, nothing is found.
    Maybe it has to do with how many things I disable on the recent OS X versions. I routinely disable Spotlight, Notification Center, Dashboard, Auto-Save & Versions, Gatekeeper, Automatic App Termination.... you know, all that stuff that I never asked for and don't need/want ;-)
    Maybe I could try re-enabling Auto-Save or something. Still, no other apps ever seem to behave strangely when I set all these "hidden preferences" to disable these unwanted OS features. Who knows, maybe the Mail team (programmers) just started assuming something was available which they didn't used to assume in 10.8.

  • Spinning beach ball, driving me crazy

    I have been running Safari fine in all my machines until last week. I am trying to remember what I put on the computer before the problem, Dragon diction was just updated and for some odd reason I was asked to update flash and did, but I was running the right version. Since then I dumped flash and reloaded it.
    Problem:
    No reason but all of a sudden when calling any random page I get a spinning beachball. Sometimes after ten to 20 seconds it recovers but in most case I have to do a force quit and start over. Have no issues with Firefox or Camino. But this problem is driving me crazy. Help
    Have a new Power Mac 2.66 with 4GB. Running 10.6.4 and running Safari 5.2
    Thanks

    HI...
    If you didn't repair permissions after updating Flash, that may help.
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn

  • My i tunes won't open. i keep getting error7 (windows error 193) . contacted microsoft(thought it was a windows thing...not) have uninstalled itunes and everything related to it ,re installed and message still comes up. Help please,driving me crazy.

    help. my iTunes wont open. I keep getting the message error7 (windows error 193). contacted Microsoft they said contact iTunes support. I have uninstalled all iTunes componets and then reinstalled everything but message still comes up... its driving me crazy.

    If it's a Windows error, it's typically going to be a Microsoft problem. Uninstall any security software you have and if you have a restore point for your PC, you may want to restore your PC back to when iTunes was working normally. If none of those work you would need to contact Microsoft and demand help.

  • How do I stop iTunes from automatically sorting by Album Artist?  Driving me crazy.

    How do I stop iTunes from automatically sorting by Album Artist?  Driving me crazy.
    I listen to primarily classical music
    All of my music was very deliberatley titled by composers "Last Name, First Name" as the artist.
    iTunes is changing it to the Album Artist.  I have to go in and delete that information - AND THEN IT LATER REVERTS IT BACK!!!
    Hours have been wasted and I am feeling so ticked.
    Any help?

    Purchased or ripped media?
    If these are ripped mp3s then another possibility is multiple embedded tags. iTunes works best with a single ID3v2.3 tag. Some software creates both an ID3v1.0 and IDv2.x tag. With multiple tags it is not certain which iTunes reads or which it updates, and any device may choose differently. Once songs have the correct info. in iTunes you can use Convert ID3 Tags... None several times, then Convert ID3 Tags... v2.3. The process removes any embedded art but otherwise preserves the data that iTunes knows. You could use my script CreateFolderArt before and after to save and then restore the artwork.
    In the long run you may be better off populating Album Artist properly with a copy of whatever is currently in Artist. My script CopyArtistToAlbumArtist can do this effectively.
    tt2

  • I've added to ios6 to my new ipod touch with no problems. I'm trying to now restore the factory settings but the screen is frozen with an itunes sign and lead pointing towards it. The ipod won't even switch off. Can anyone help as it's driving me crazy

    I've added ios6 to my new ipod but tried then to restore the factory settings. It won't extract any settings and the itunes then tells me that the server cannot be reached or is unavailable. I've been trying all day. Now the ipod has a itunes sign and a computer lead pointing towards it on the screen and this is frozen. It won't switch off or do anything else. Any ideas as this is now driving me crazy.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    Hello joelfromn. charleston,
    It seems you are unable to activate iMessage on a device with no carrier service. The following article provides information regarding activation issues:
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    Check your device settings
    Make sure that you’re connected to a cellular data or Wi-Fi network. If you're using an iPhone, you'll need SMS messaging to activate your phone number with iMessage and FaceTime. Depending on your carrier, you might be charged for this SMS.
    Go to Settings > General > Date & Time and make sure that your time zone is set up correctly.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Hi Glenn,
    Kindly try out the steps mentioned in the link below and see if you are able to serialize your software.
    Sign in, activation, or connection errors | CS5.5 and later, Acrobat DC
    Try Solution 2: Clean up cached user login information.
    Please share the results after performing the steps.
    Thanks,
    Atul Saini

  • Mail 2.1.3 on Tiger: mutiples of everything is driving me crazy!

    Hi, I recently had to reformat my hard drive and thus have been trying to reinstall all my email accounts (which I had backed up). I am using MAIL 2.1.3.
    I have several questions (this is driving me crazy!!):
    When I imported the archived files, it created new mailboxes but DID NOT reinstall my mail in it's corresponding email account file (i.e: i have an email account for incoming mail with "username", and then far below I have a mailbox (for EACH account, and I have about 7) which contains all my old mail. I can't seem to merge the two.
    When I recreated my useraccounts (most of which are gmail), I followed online instructions and created all my accounts using IMAP, since my first attempt using the POP version of these same accounts would NOT SEND OUT any of my Gmail mail. Now, for EACH ACCOUNT, not only do I have a "regular mailbox", I have the same "imported" from my old version, AND a third folder under "IMAP".... All this is REALLY driving me crazy!!
    All I want to achieve is what i had before : one version of each of my email accounts, including Gmail, that both recieve AND send mail. Nothing more.
    On the my other computer (leopard) Mail configures itself and everything works: it's bliss!!!
    Can anyone help me clear up this mess (also because as a result everything is SLOW!!)
    Infinite thanks,
    Nicaru

    Thanks BDAqua, Unfortunately I did not do a very good job explaining myself.
    I am not trying to sync two computers (Tiger/Leopard). The Leopard comment was just me venting that it was so much a better program than Tiger....
    No, what I want is simply to recreate my Mail Client the way it looked before: with one inbox per username, a single Sent/Draft/Outgoing mailbox and that's all!!
    Instead for each username I have "normal" Inboxes, PLUS imported folders (each with their own Inbox/Sent/Draft mailboxes) PLUS IMAP folders again with their own individual Inbox/Sent/Draft mailboxes). My homepage when I open Mail contains something like 21 folders, whereas I only want the 7 (one per username).
    This whole thing came about because when I tried to import my old mailboxes (pre-formatting my mac) they imported as separate folders whereas I wanted them to merge into their respective accounts.
    The other issue I had (originally) which led to this mess is that none of my Gmail accounts would SEND mail (receiving is Ok) so I followed the online IMAP instructions and this is where I got triplets....
    Gosh, I don't know how else to explain it... If it's still not clear perhaps I should just erase everything and start from scratch??
    Thanks again,
    Nicaru

Maybe you are looking for