Load XFCE4 desktop + panels + applets all at once?

This is purely an aesthetic issue. When I boot up to the XFCE4 desktop, there is a slight lag between when the desktop becomes available and when the panel loads. Basically, the panels keep populating themselves with applets for upto a second after the desktop becomes available, and this can clearly be observed, and is not nice to look at.
This is my current desktop http://i.imgur.com/UJ2ALRO.png
Is there a way to either make the entire panel load together, or to make the panel visible only after everything has been loaded? Or alternatively, to load the desktop only after everything is completely ready?

This widget might be more to use for u in this case;
http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/CollapsiblePanelGroupSamp le.html

Similar Messages

  • Load Actions All At Once Instad Of One By One?

    Okay, long time user here but don't know the answer to this one.
    You know how every now and then Photoshop freaks out and sort of re-sets itself and goes back to the default workspace and all?
    Well this happened the other day. I chose my own saved custom workspace after this happened and it reset okay, but my Actions went kaput, so I now have to re-load them all.
    I have a LOT of actions.
    Is there some way to load all of my actions all at once instead of one by one, one action at a time?
    I'm using CS3.

    To expand on Chris's comments when you create a new action, PS does not create an .atn file for you. (The new action is saved in one of Photoshop's preferences files.) .atn files only exist "if you" (or some one else) create them. Here's how...
    Open PS CS4, show the Actions Panel, click on (highlight) the Action Set [folder] where the action(s) you want to transfer reside. Do NOT highlight the  individual action within the Action Set.
    Then choose Save actions... from the Actions Panel flyout menu and follow the prompt. This will create an .atn file which can subsequently be loaded (via Load actions... command) into CS5 (on your system) or e-mailed to a friend or posted for download in a public forum, etc.
    CHRIS: Are the PS CS3 and CS4 versions of Actions Palette.psp fully compatible with CS5 if one wants to perform a "mass migration"?

  • Could not load the preferences panel Desktop

    i can't change the theme of the desktop. Every time i receive: Could not load the preferences panel Desktop & Screen Saver.
    Could you help me? The problem started after I installed Yosemite!!
    Mac Book Air 13"(2012)
    1,8 GHz Intel Core i5
    4 GB 1600 MHz DDR3

    If no progress try verbose mode here.Mac OS X: How to start up in single-user or verbose mode - Apple Support
    and try you "System Preference" > desktop and screen saver >select background....

  • Load text file into applet

    hi,
    I am new to java and really need some help.
    I want to load / read a text file in my applet line by line
    the text file looks like:
    P,161,127,3,ff6599c2
    P,161,127,3,ff6599c2
    P,161,128,3,ff6599c2
    P,161,129,3,ff6599c2
    etc.
    the code I tied and did not work looks like:
    class read
         public void main( String[] args)
              int i;
              if (args.length < 1)
                   System.out.println("Please enter file: read<datei>");
                   System.exit(-1);
              try
                   BufferedReader in =new BufferedReader(new FileReader( args[0]));
                   String line = new String();
                   while((line=in.readLine())!=null)
                        System.out.println( line );
              catch(IOException e2)
    has anybody an idea how to do it?
    Thanks a lot
    Silke

    <PRE>
    First off you need to create a class which extends the
    Applet class. The applet class does not have the
    method "public static void main(String args[])". Instead it has a method "init()". In the "init" method you should
    write the code that you would write in "main". The "init"
    method is only executed once. When the applet is first downloaded. Here is a sample code, but there is one other factor to note. Applets have trouble accessing
    files on computers. This goes above and beyond the
    applet sandbox which locks up an applet. In my experiences I have only managed to read and write text
    files to the desktop through applets. The program can
    be used by entering the file name in the text field
    at the top of the applet and then clicking the "Read File"
    button at the bottom of the applet. This code segment is untested and it has been some time since I have done
    applet programming but it should work. You may have to
    edit the security policy file(security.policy) to grant permission to your codebase before this functions properly because it involves reading from the file system. The grant should look something like this(if you are running under unix/linux I believe you would substitute"file:\\\" with "file:/"):
    grant codeBase "file:\\\<Directory Path that contains
    the MyApplet class" {
    java.io.FilePermission "read", "*"
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    <Applet Code="MyApplet" width="300", height="300">
    </Applet>
    class MyApplet extends Applet
    implements ActionListener {
    TextArea ta=new TextArea();
    Button readFB=new Button("Read File");
    TextField tf=new TextField();
    public void init() {
    setLayout(new BorderLayout());
    Panel tempPan=new Panel();
    tempPan.setLayout(new BorderLayout());
    tempPan.add("West", new Label("File Name:"));
    tempPan.add("Center", tf);
    add("North", tempPan);
    add("Center", ta);
    add("South", readFB);
    readFB.addActionListener(this);
    setSize(300, 300);
    show();
    public void actionPerformed(ActionEvent ae) {
    String action=ae.getActionCommand();
    if(action.equals("Read File")) {
    String strFileName=tf.getText();
    BufferedReader br=new BufferedReader(new FileReader(new File(strFileName)));
    ta.setText("");
    String nextLine="";
    while((nextLine=br.readLine())!=null) {
    ta.append(nextLine+"\n");
    br.close();
    ps: be careful when modifying security policy file.
    It will affect all applet code that is loaded from the
    codeBase specified. If no codeBase is specified it
    will apply to all codeBases leaving you vulnerable
    to malicious applets. Good luck.
    </PRE>

  • Make a portion of desktop viewable at all times

    I'm looking for a way to make a portion of my desktop viewable at all times. I realize that it's easy to write a script that resizes windows to accommodate this, but I'm looking for something with this added twist:
    Just like you can't drag a window behind the menu bar, I'd like to create an area on the left side of my screen, about 300 pixels wide, that windows cannot move over, leaving only that portion of the desktop viewable. When moving windows around, they would just bump into this invisible edge just as they do with the menu bar.
    I'm not entirely sure if this can be done in AppleScript, but I figured it would be a good place to start. Please redirect me if there is somewhere else this question would be better suited. For those wondering, I have a Geektools sidebar on my desktop that I would always like visible to me at all times.

    The dock padding he is talking about is just a variable name he uses to indicate a distance in pixels from the side of the screen...nothing special.
    Trying to get dock abilities, like menu bar abilities, is once again going to be practically impossible. If you want to do all this you will need to write your own program, or edit an open source dock like program, and then give it all the abilities you want in "geek side bar" and have it float on top etc.
    As for the topic of applescripting an applet which monitors and moves windows around. To stop getting "firefox-bin" etc. Change the line
    set Wins2_ to every window of application Aname_
    to the line
    set Wins2_ to (every window of application Aname_) who visible is true
    Should get rid of all the weird hidden ones.
    Finally I made some changes to an old stay open app of mine similar to this but it allows user choice (only through the source code as I didn't want to include more than 1 script) of any border to be extended and won't push your window out beyond the screen (will resize instead).
    on idle
    try
    set horizontalDisplay to 1280
    set verticalDisplay to 800
    set k to 1 --user accuracy in pixels
    set userPixelBorder to {100, 100, 100, 100} -- input of (left,top,right,bottom) borders
    set userPixelBorder to {item 1 of userPixelBorder, item 2 of userPixelBorder, (horizontalDisplay - (item 3 of userPixelBorder)), (verticalDisplay - (item 4 of userPixelBorder))}
    on error
    display dialog "Fatal Initialization Error"
    end try
    try
    tell application "System Events" to set visibleApps to name of every application process whose visible is true
    repeat with i from 1 to count items of visibleApps
    set appName to item i of visibleApps as text
    try
    set windowList to ((every window of application appName) whose visible is true)
    end try
    repeat with j from 1 to count items of windowList
    set windowName to item j of windowList
    set windowBounds to bounds of windowName
    set goodCheck to {false, false, false, false}
    repeat while goodCheck is not equal to {true, true, true, true}
    --xaxis
    if item 1 of windowBounds is less than (item 1 of userPixelBorder) - k then
    set item 1 of windowBounds to ((item 1 of windowBounds) + k)
    if item 3 of windowBounds is less than item 3 of userPixelBorder then set item 3 of windowBounds to ((item 3 of windowBounds) + k)
    else
    set item 1 of goodCheck to true
    end if
    if item 3 of windowBounds is greater than (item 3 of userPixelBorder) + k then
    set item 3 of windowBounds to ((item 3 of windowBounds) - k)
    if item 1 of windowBounds is greater than item 1 of userPixelBorder then set item 1 of windowBounds to ((item 1 of windowBounds) - k)
    else
    set item 3 of goodCheck to true
    end if
    --yaxis
    if item 2 of windowBounds is less than (item 2 of userPixelBorder) - k then
    set item 2 of windowBounds to ((item 2 of windowBounds) + k)
    if item 4 of windowBounds is less than item 4 of userPixelBorder then set item 4 of windowBounds to ((item 4 of windowBounds) + k)
    else
    set item 2 of goodCheck to true
    end if
    if item 4 of windowBounds is greater than (item 4 of userPixelBorder) + k then
    set item 4 of windowBounds to ((item 4 of windowBounds) - k)
    if item 2 of windowBounds is greater than item 2 of userPixelBorder then set item 2 of windowBounds to ((item 2 of windowBounds) - k)
    else
    set item 4 of goodCheck to true
    end if
    end repeat
    set bounds of windowName to {item 1 of windowBounds, item 2 of windowBounds, item 3 of windowBounds, item 4 of windowBounds}
    end repeat
    end repeat
    end try
    return 1 --runs every second
    end idle
    It still leaks memory but I remember it running for days fine when it was done up all pretty in xcode broken into a couple of scripts.
    One more thing as a solution to memory problems is if you want to script a key combination that clears a strip of the desktop sort of like expose. I edited that unreadable code for this one.
    set Wdisp_ to 1280 --width of display
    set Pixnum_ to 300 --number of pixels to clear from the left side
    set Wins1_ to {}
    tell application "System Events" to set A_ to name of every application process whose visible is true
    repeat with i_ from 1 to count items of A_
    set Aname_ to item i_ of A_
    try
    set Wins2_ to every window of application Aname_
    repeat with j_ from 1 to count items of Wins2_
    set end of Wins1_ to item j_ of Wins2_
    end repeat
    end try
    end repeat
    repeat with i_ from 1 to count items of Wins1_
    set W2_ to item i_ of Wins1_
    try
    set B_ to bounds of W2_
    set LB_ to item 1 of B_
    if LB_ < Pixnum_ then
    set RB_ to (item 3 of B_) + (Pixnum_ - LB_)
    if RB_ is less than Wdisp_ then
    set bounds of W2_ to {Pixnum_, (item 2 of B_), (RB_), (item 4 of B_)}
    else
    set bounds of W2_ to {Pixnum_, (item 2 of B_), (Wdisp_), (item 4 of B_)}
    end if
    end if
    end try
    end repeat
    Enjoy

  • How To Edit Parts of XFCE4 Desktop Menu

    I am running Arch 0.7.1 with XFCE4.2. As I have been adding applications with Pacman, some items have started to show up on the XFCE4 desktop menu, but some have not. For example, a Multimedia category has shown up, but xcdroast and xzgv didn't get added.
    No problems I thought, I'll just edit the menu. So I went to the desktop Settings tool, Desktop, Menu, Edit Desktop Menu, and to my surprise, no Multimedia heading shows up. None of the rest of the newly added ones do either - Office, Graphics, Network, etc. Since the headings don't even show up, I can't add things to them. When I check the menu.xml file in my ~/.config/xfce4 directory tree, these headings aren't there either, and yet they definitely ARE there when I click the menu.
    I am stumped! I have checked the Wiki, searched the forums, and spent a bunch of time to no avail. Can anyone tell me why I can't see and edit these things? Thanks!

    OK, solved my own problem - I should have held off posting for a little bit longer. In your ~/.config/xfce4/desktop, there is a file called menu.xml. As I mentioned in my original post, the menus for Multimedia, Network, etc. aren't there. When I went back and carefully examined that file again though, and actually READ all the comments in it, I see that XFCE4 autogenerates a set of menus based on ...  well, I am not sure what it is based on, since some things show up and some don't.
    However, by simply doing as the comments say, and commenting out the line that does this, I can now add all of these items menus and items in manually, and thus get control over what is in the menus and what is not. Once it is commented out, you can use the GUI desktop menu editor to do the grunt work, so at least it is not too painful.

  • Desktop panel

    What are the best and most popular desktop panels? I came across PyPanel in a screenshot on DeviantART but unfortunately development for it was discontinued a couple of years ago. I don't know if this will cause any sort of problem but I would feel much better if the software I was using is being actively developed.
    Anyway, I would preferably like one that includes a system tray, clock and obviously a task/window list. Tint2 looked really good but I would like everything to be incorporated into one single bar without any additional software. I don't want anything heavy such as gnome-panel, it has to be "stand-alone" and not rely on too many dependancies.
    So what are your recommendations for me?

    PyPanel is still very popular, it's very tweakable and still does what most people need. You also can launch, say, the openbox menu with a left-click on an icon using xdotool, and google search for urukrama's dzen2 calendar script.
    Tint2 is also commonly seen, it's in AUR. It doesn't incorporate a notification area (system tray), so people often use trayer or stalonetray with it.
    xfce4-panel, lxpanel and gnome-panel are all i ever see.

  • 1 panel for all without to have to see have all others panels...

    Hi there,
    i'm running xfce, with compiz and i'm using the cube effect. I like to be abe to switch betwen workspace and still be able to see the other process from other window as the wall are transparent.
    e.g.
    http://i62.tinypic.com/210lxec.png
    my problem: because it's transparent, i got to see 4 panels in for differents workspace.  I don't like that. Could it be possible to see only one panel (the one from the current workspace) ?
    and if i switch to another workspace, that i got to still open my panel from there too.
    1 panel for all my workspace, 1 panel (visible only) on my current workspace ...
    i try to code it with xprop, wmctrl, xwininfo, and xdotool...
    but that didn't work, the best i did at some point is to use gdevilspie and made the panel only visile on  1 desktop but then if i switch to my other workspace i was not able to trun xfce4-panel
    *panel mean xfce4-panel
    i dunno, i kind of give up...with other program i can just use gdevilspie as for the whisker menu... you can see on the picture the column, or trace black beside each corner of of my cube, you can even see icons black...hope i been clear, i'm willing to give more details if required.
    -- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --

    I've looked into this but I'm afraid I don't think it's possible. Compiz is only interested in windows, it doesn't manage docks or panels. A panel application will start itself on all available workspaces - that's standard behaviour. If you make the cube transparent you're going to see the panel everywhere.

  • Adobe Creative Cloud Desktop Panel Issues

    First, let me say that I've been an Adobe user for more than 18 years.
    A while back (about two weeks ago) I went as usual to launch the little Adobe Creative Cloud desktop panel that shows what's installed, updated, available apps and available updates. Instead of it launching as normally, I was told that I had to LOG IN.  I'm pretty sure I did just that with my Adobe user name and pwd, but suddenly found myself no longer within the little app management panel, but instead on a screen that told me I could drag and drop files into the cloud there. I did not want to drag and drop any files at all! What I wanted was to use my CC desktop apps management panel so I could INSTALL Dreamweaver CC using the CC desktop apps management panel.
    So I dismissed (exited out of) that "drag your files to here" screen. And now every time I launch the desktop panel, it asks me to log in, and every time I try, it comes back with "You've been signed out / Please sign in to continue." 
    I have been around that loop of changing the password several times over now, with no change to the behavior of the CC desktop apps management panel.  I simply CANNOT log in there any more ... What's perplexing is that I never HAD to log in to it before, either!  I had been using it for MONTHS since I first installed Adobe CC, and it showed me my apps list and available updates and all that just fine for quite a while, but now it has its head stuck in a corner.
    Now when I launch it, I cannot get the panel to display my apps list as it should, but instead it keeps asking me to log in.  I have "changed the password" multiple times now.
    Thing is, I can log in with that same user id and pwd to my CC account online through the Adobe web site, but the little desktop apps management panel is no longer usable.
    Can/should I uninstall and reinstall the apps management panel?  Can I do that with the management panel ALONE and NOT cause problems with the CC programs that I DO have installed already (such as Illustrator CC, InDesign CC, and Photoshop CC?)
    And why does Adobe support keep closing my case at the same time that I'm pleading with them to HELP me resolve this problem?
    Should I simply uninstall the desktop apps management panel and forget about trying to use that and instead control all my CC apps directly from my account via the Adobe website instead?  CAN I do this?
    Two weeks now and still not resolved.

    Sign Out When Sign In http://forums.adobe.com/thread/1450581?tstart=0 may help
    -and http://helpx.adobe.com/creative-cloud/kb/unable-login-creative-cloud-248.html

  • How to load a java card applet into a java card

    Dear All,
    I am a novice to java card technology..
    I have done some search on how to load a java card applet into a smart card but haven't found a satisfactory answer. I have read about installer.jar and scriptgen tool but I want to load the applet from a java program and not from command line. It would be of great help if somebody can help me out.
    If somebody can share a sample program which load a javacard applet(.CAP file) into a smart card, I will be very thankful.
    I am able to find some client applications which help us send APDU commands and recieve response APDU's to interact with an applet loaded on to the smart card but not application which actually load the applet.
    I have heard of OCF and GP.. some say that OCF technology is outdated and no longer in use.. can somebosy throw some light on this too..
    cheers,
    ganesh

    hi siavash,
    thanks for the quick response.. i checked out GPShell as suggested, it looked like a tool by which one can load an applet on to card and send some sample apdu commands... but I want to load the applet from the code.
    My application should look something like this.. it will be a swing applicaton where I have a drop down with a list of readers, I select the one desired and then click on "LOAD" after inserting a blank java card, at this point my applet which is stored in my DB should get loaded on to the java card. The next step should be to personalize it where I enter the values for the static variables of my applet and click "PERSONALIZE", at this point all these values should be embedded into APDU commands and sent to the java card for processing.
    For achieving this I am yet to find a comprehensive sample or documentation on the net.
    Please help...
    regards,
    ganesh

  • JRE 6 freeze browsers and Java Control Panel Applet stops working!

    Hello,
    this is the second time I got this problem with Java JRE 6 ! First one was a month or two ago:
    I have Java JRE 6 update 20 installed on a Windows 7 64bit ultimate. It was working...much time ago...then i found my browser (firefox, google chrome or IE8) was freezing when I open java application or test pages. I tried uninstalling it, cleaning the system with Revo Uninstaller, or CCleaner or JavaRA and reinstalling with no luck. The other problem is the same that user Mass8 had (http://forums.sun.com/thread.jspa?threadID=5372196&start=15&tstart=0)
    ...my java control panel applet is not working and give me this:
    http://www.iouppo.com/lite/pics/df9b61008b5bf9de61a13d8bfa3ddad1.jpg
    I tried disabling UAC, running JRE, starting Win7 in safe mode with network...but browser always freeze. It's not a true freeze, with CPU busy at 100% (cpu stays in idle) but it seems to wait for something. It's not a problem with video card driver on my machine, because I can start java control panel from command prompt...and without the noddraw switch, using this command:
    javaw -Xbootclasspath/a:..\lib\deploy.jar -Duser.home="%HOMEDRIVE%%HOMEPATH%" com.sun.deploy.panel.ControlPanel
    This was the description of my first time.....then I replaced my system with an Acronis image...and I used the system for sometimes....and Java was working until 3-4 days ago! So I did another image of the system with all things working.
    Then this morning...I tried the java test page.....and surprise! It's not working anymore!
    In these days I think I only disabled UAC and Account virtualization....maybe JAVA saves things there...and then when I disabled UAC (Windows7 deleted those folders and files) it can't find there anymore???? Who can help me?
    I don't want to restore my image every month!
    My system is 100% virus free and from the last image restoration I didn't visit suspicious sites and so on....I have antivirus and antispyware software...all is perfectly CLEAN. Any ideas or things to try?

    I'm beginning to think it's something related to Hybernation after using JAVA....I'm using it very often...and if I use it...and I suspect Java is KO...i try control panel and it doesn't works....then I try with browser and it freeze (or keep waiting...and i can only force to close it)
    THEN,
    when I reboot my system I get this window
    http://www.iouppo.com/lite/pics/09501eb799c165bb25ece8fd3261e41c.jpg
    suggesting me to rename the folder C:\Program in C:\Program1 ...and if i don't rename it...java will never work...instead if I allow it...Windows will fix it!......This until...the next hybernation....:(....
    try to replicate this...maybe I found where is the problem..

  • Gnome Panel applet that shows output of system command.

    Hi all;
    Because of the recent hostile takeover of #archlinux channel by tilling WM fanatics..    I will ask here..
    Does any one know of a Gnome Panel applet that shows the output of system command of your choice?
    For people who Conky is a bit too much and they only want a simple piece of data available (like what is the current IP on ppp0 interface) like me..  this is a necessity.
    If its not in existence I would probably make one.. shouldn't take long, I also would like to hear if there is any interest.
    Thanks

    That's exactly what I was looking for!  Thank you!
    Changed code to:
    $dism = "X:\Windows\System32\Cmd.exe /c start CMD /k dism /apply-image /imagefile:D:\W7x86.wim /index:1 /applydir:C:\"
    And voila, new window opened with the live output of dism.
    new... and have a glazed over look about my eyes to prove it...

  • How can i move video and music and narration all at once in the project library

    how can i move video, narration and music all at once in the project library  it is only moving the video

    Select the directory with your pngs in it.
    Right-click>Browse with Adobe Bridge
    Select your pngs
    Tools>Photoshop>Load to photoshop layers (not sure how many layers this can handle--you may wind up having to do this in batches)
    Save your new psd
    In Flash, create a new symbol with a blank timeline
    Ctrl-R, navigate to the psd you made earlier
    Select all the Photoshop layers
    Check "create MovieClips for these layers."
    Convert layers to keyframes or flash layers (not important, since you probaby don't need to keep this symbol)
    OK
    You'll have Movie Clips, not Graphic Symbols, but maybe you can write or find a JSFL to convert them and then you can block select them, click the Properties button, and change the type from MovieClip to Graphc.

  • Animation Question: Changing all keyframe instances in a single layer all at once?

    I am working on an animated piece in Adobe Flash. I have a
    single 'head comp' layer that contains head, eyes, mouth, etc.
    layers within. I have created several keyframes in this layer to
    animate the entire head comp. Furthermore, I have several keyframes
    within that comp for lip sync, eye movements, etc.
    My problem is, I have to manually change every single
    keyframe in the head comp layer to sync up with the animation
    contained within. For example, if I have a keyframe on the main
    head comp layer-- on frame 5-- I have to manually select frame 5,
    go to Properties panel, change to "Play Once," and then type in the
    frame number in the "First" field. I then have to repeat this
    process several hundred times across the entire layer. There must
    be a faster to to sync up the whole layer. Please help!!!

    Thanks again for your help.
    I think my problem here is, I'm not trying to move any frames
    or anything. I just want to change the properties panel of each
    keyframe in the layer to "Play Once" and have the number in the
    "First" field match it's frame number (example: I want to change
    the "First" field to "10" if the keyframe starts on frame 10. That
    way it will match up with my lip sync animation on frame 10 of the
    nested layer within.) Does that make sense? I have been having to
    change each keyframe number in the layer manually. It takes
    forever.
    The "Play Once/Loop/Single Frame" option isnt available if I
    dont create a motion tween. Again, I'm not trying to move my
    animation-- just change all of the Properties at once.
    Also- if this helps- I am working in CS3.

  • Deleting All Emails all at once, I just am too stupid to find it

    I hope somebody can tell me I'm a dunce who has totally missed something obvious. I get over 50 emails a day. I have to delete them ONE AT A TIME! Then they go to trash and I HAVE TO DELETE THEM ONE AT A TIME AGAIN! I know there has to be a better way, I am just too stupid to find it. This is so irritating, I'm considering turning off the email unless I'm out of town or something. How do you empty the inbox ALL AT ONCE!?! Or at least the trash ALL AT ONCE??!!
    If by some weird fact of programming blind idiocy, there is no way to do the most basic thing I am talking about, which is common to every phone email system on earth, would the wise programmers at Apple do an update tomorrow so that we can EMPTY THE INBOX IN ONE MOVE, PLEASE!!!!

    A POP account is designed to be accessed with an email client such as Apple's Mail application on one computer or device only.
    New messages received at the incoming mail server for a POP account are downloaded by the email client used to access the account with an option to remove messages from the server after being downloaded. Sent messages with a POP account using an email client cannot be stored on the server.
    An IMAP account is designed to be accessed with an email client on multiple computers or devices with the ability to store all account mailboxes on the server - the account's Drafts, Sent, Trash and Junk mailboxes with each email client used to access the account and the ability to create additional server stored mailboxes with the email client used to access the account - with the exception of the iPhone's email client. You cannot create additional server stored mailboxes from the iPhone's email client but any additional server stored mailboxes created with the email client used on your computer to access the account will become available with the iPhone's email client automatically.
    All messages with an IMAP account remain on the server until deleted from the server - there is no setting to remove messages from the server when received by the email client used to access the account. All server stored mailboxes are synchronized with the server automatically with the email client used to access the account.
    Receive a new message with the email client used on your computer and read the message, when checking the account with the iPhone's email client, that message will be available in the account's Inbox mailbox and will be marked as already being read since the account's Inbox mailbox stored on the server is kept synchronized with the server automatically. Delete a message from the account's Inbox mailbox with the email client used on your computer and this message will not be available when checking the account with the iPhone's email client. Send a message with the email client used on your computer and the sent message will be available in the account's Sent mailbox with the iPhone's email client automatically and vice-versa for all.
    If you are accessing an IMAP account, instead of deleting all messages from the account's Inbox mailbox with the iPhone's email client one at a time, you can delete all from the account's Inbox mailbox with the email client used to access the account on your computer and all messages will be automatically removed from the account's Inbox mailbox with the iPhone's email client since all server stored mailboxes are kept synchronized with the server with the email client used to access the account.
    Someone has a desktop at their office and a laptop when traveling or when away from the office or in your situation accessing the account with your computer's email client and with the iPhone's email client. An IMAP account provides for keeping all account mailboxes synchronized automatically between multiple computers or devices to access the account.

Maybe you are looking for

  • Restoring Files from TIme Machine

    Hi all, I've been a MAC user for the last 3 years. Few months ago I got my 15" i5 Macbook Pro. Recently, I experienced Kernel Panics on a daily basis. I made an appointment with a Genius and they guy concluded that I had some software problem. So, he

  • IDVD burn disc shows ERROR when playing.

    Once burned a dvd player shows error. I go through the steps of burning and at the end it shows Multiplexing and Burning showing done and ejects the dvd. The iDVD status bar shows time remaining: about one minute and still has a spinning wheel. I sta

  • Message level security: difference digital signature and certificate

    Hi everybody, could anybody please explain the difference between <b>digital signature</b> and <b>certificate</b>? Thans Regards Mario

  • Need program to read document properties

    Dear Experts, I have one requirment, I need a program that i have one document in local folder called c:/client/templete.doc i need to get that templete properties such as title ,author.And that properties should be write in to the excel sheet. Pleas

  • HT2477 how can i make icons out of my bookmarks

    icons out of bookmarks?