Saving and restoring list selections

I've got a list control in a popup window, supplied by a
dataProvider. The user makes selections, clicks OK, and the
selections are processed -- it all works fine.
However, since it's a popup window, when it's closed the
SELECTION is lost. When the window is opened again, the list has
nothing selected (as expected).
My question is, how do I save what items were selected, and
then show them as selected again when I re-display the list?
Thanks.

Thanks.
What if the data provider is NOT at the root, but in a
component?
In my root app, I have an MXML component referenced
(id="s1"). It's THAT component that's calling the popup and
contains the dataProvider.
How does the window refer to the component that called it?
I'm trying to leave this generic, rather than specific, so I can
use the same popup component several places in the app.
There are multiple components (s1, s2, s3 etc) that call this
window, and I keep the dataProviders in each of these components.
So the window needs to be able to "find" the _aSelectedItems
relating to the screen that "celled" it.
Thanks.

Similar Messages

  • How can i clear the textfield and the list selections?

    How can i clear the textfield and the list selections?
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    <applet code="ListDemo" width=300 height=400>
    </applet>
    public class ListDemo extends Applet implements ActionListener {
    List os, browser;
    String msg = "";
    String text;
    String named = "";
    TextField name;
    Button Ok, reset;
    public void init() {
    Ok = new Button("Ok");
    reset = new Button("reset");
    add(reset);
    add(Ok);
    reset.addActionListener(this);
    Ok.addActionListener(this);
    Label namep = new Label("Name: ", Label.RIGHT);
    name = new TextField(12);
    add(namep);
    add(name);
    name.addActionListener(this);
    os = new List(4, false);
    browser = new List(4, false);
    os.add("default");
    os.add("BMW");
    os.add("BENZ");
    os.add("Lexus");
    os.add("Acura");
    browser.add("default");
    browser.add("Red");
    browser.add("Black");
    browser.add("Silver");
    browser.add("Blue");
    browser.add("Yellow");
    browser.add("Pink");
    browser.add("Grey");
    browser.add("Blue/Black");
    os.select(0);
    browser.select(0);
    add(os);
    add(browser);
    os.addActionListener(this);
    browser.addActionListener(this);
    public void actionPerformed(ActionEvent ae) {
    String str = ae.getActionCommand();
    if(str.equals("Ok")){
    text = "You pressed Ok";
    else
    if(str.equals("reset")){
    browser.select(0);
    os.select(0);
    text = "";
    repaint();
    public void paint(Graphics g) {
    g.drawString("Name: " + name.getText(), 6, 120);
    int idx[];
    msg = "Current Car: ";
    idx = os.getSelectedIndexes();
    for(int i=0; i<idx.length; i++)
    msg += os.getItem(idx) + " ";
    g.drawString(msg, 6, 140);
    msg = "Current Color: ";
    msg += browser.getSelectedItem();
    g.drawString(msg, 6, 160);
    g.drawString(text, 6, 200);

    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    <applet code="ListDemo" width=300 height=400>
    </applet>
    public class ListDemo extends Applet implements ActionListener {
    List os, browser;
    String msg = "";
    String text;
    String named = "";
    TextField name;
    Button Ok, reset;
    public void init() {
    Ok = new Button("Ok");
    reset = new Button("reset");
    add(reset);
    add(Ok);
    reset.addActionListener(this);
    Ok.addActionListener(this);
    Label namep = new Label("Name: ", Label.RIGHT);
    name = new TextField(12);
    add(namep);
    add(name);
    name.addActionListener(this);
    os = new List(4, false);
    browser = new List(4, false);
    os.add("default");
    os.add("BMW");
    os.add("BENZ");
    os.add("Lexus");
    os.add("Acura");
    browser.add("default");
    browser.add("Red");
    browser.add("Black");
    browser.add("Silver");
    browser.add("Blue");
    browser.add("Yellow");
    browser.add("Pink");
    browser.add("Grey");
    browser.add("Blue/Black");
    os.select(0);
    browser.select(0);
    add(os);
    add(browser);
    os.addActionListener(this);
    browser.addActionListener(this);
    public void actionPerformed(ActionEvent ae) {
    String str = ae.getActionCommand();
    if(str.equals("Ok")){
    text = "You pressed Ok";
    else
    if(str.equals("reset")){
    browser.select(0);
    os.select(0);
    text = "";
    name.setText("");
    repaint();
    public void paint(Graphics g) {
    g.drawString("Name: " + name.getText(), 6, 120);
    int idx[];
    msg = "Current Car: ";
    idx = os.getSelectedIndexes();
    for(int i=0; i<idx.length; i++)
    msg += os.getItem(idx) + " ";
    g.drawString(msg, 6, 140);
    msg = "Current Color: ";
    msg += browser.getSelectedItem();
    g.drawString(msg, 6, 160);
    g.drawString(text, 6, 200);

  • Saving and restoring JTable layout

    Users can manipulate a JTable by resizing reordering columns.
    I want to be able to save the layout of the table and restore it the next time a user runs the application.
    I've gotten it to work for column sizing, but what do I interrogate to find out how a user has reordered the columns?

    but what do I interrogate to find out how a user has reordered the columns?Look at the TableColumnModel to see the current order of the columns.

  • Saving and restoring sets of open applications and documents

    Sometimes I have to restart when I have 20 to 30 Word and Excel files, websites, etc., open for work. It's time-consuming to go back and open them all up and get them positioned on various virtual desktops so I can get back to productive work, and every time I do it I swear there's got to be a utility that will save the state of these applications and their open documents for later restoration. Yet I've never been able to find an application to do this. Has anyone dealt with this issue successfully?
    Thanks.

    AFAIK, when you select Restart, you should get a dialog box for each unsaved, open document that allows you to save it, before the app will quit. If that's not working, then you should manually save the open documents and quit the app before you restart.

  • Saving and Restoring a class using Persistence Delegate

    Hi, I have a class that does not comply to the java bean format and thus I have decided to use persistence delegates. All I want to do is be able to save an entire class so I can restore it later.
    So this is what I did:
    XMLEncoder xe = new XMLEncoder(
    new BufferedOutputStream(
    new FileOutputStream(filename)));
    xe.setPersistenceDelegate(Workspace.class,
    new PersistenceDelegate()
    protected Expression instantiate(Object oldInstance, Encoder out)
    return new Expression(oldInstance, oldInstance.getClass(),
    "new", new Object[]
    oldInstance,
    oldInstance,
    oldInstance,
    oldInstance,
    oldInstance,
    oldInstance,
    oldInstance,
    oldInstance
    xe.writeObject(workspace);
    xe.close();
    Where workspace takes in a BufferedImage, int, int, int, int, int, String and String.
    The workspace class Vectors and an array of another class of mine.
    When I run this code I get : java.lang.StackOverflowError
    Can someone point me in the right direction please?
    Thanks in advance,
    Harley.

    When you post code, please use [code] and [/code] tags as described in Formatting Help on the message entry page. It makes it much easier to read.

  • CM01, 02, 03 and 04 List Selection in Overall Profile

    Does anyone know how to create a List Profile for CM01 u2026 CM4 to include in an evaluation profile so that when a user gets in the transaction, they see the predefined set of data? I already have an overall profile and an evaluation profile. Thanks.

    In OPA4 you can define the list profile and assign the same in overall profile in OPA6.

  • Saving and restoring boot drive data

    Hi,
    Sorry, I'm sure this topic has come up a million times, but I'd greatly appreciate advice on transferring all the files from my present start up drive (Macintosh HD icon) to an external drive so that I can replace the present 125GB drive with a 250 GB one (which will become the new boot drive, home to all my important system files, startup items, prefs etc. etc. I've replaced other drives in my G4, but never the 'brain' - so I'm a little scared!
    I've heard about Carbon Copy Cloner - would that do the job? How does it work? (I need to retain dual-boot OS 9/X capability) I know it's a free download, and isn't it as good as Superduper, which is shareware for $$? Or what does the latter do better?
    Of course, my main concern is getting all the files to transfer back to the new drive once it's installed. I've heard there are obscure files buried deeply in the roots of the system that are also vital to operation and if not there, would mess everything up - or at least perhaps cause unexpected disasters and horrible moments...maybe I'm exaggerating.
    Anyway, thanks in advance for advice on a successful and fairly painless main-drive transplant!
    Keith

    Hello Again! Correct in just moving the data drive into the other computer just be sure when moving these disks around that the jumpers are set correctly. Just remember that there are only two drives on an ide/ata cable. If one is jumpered "cable select" they both must be jumpered that way. If one is "master" and on the end of the cable then the other one must be jumpered "slave". The purpose in zeroing the new drive is because often times they do in fact have some bad blocks and if critical system info were to be written to those blocks it could crash the system. I recently installed a new drive and it had two bad blocks. Once you clone the drive go to the system prefs and open the startup disk pane and select the drive you want to startup from and then restart. Kappy means to start in safe mode is to startup holding the shift key down.
    A couple of things to do before starting all this. One repair permissions in disk utility and second startup from another drive (if you already have a bootable system on another disk or from the install disc if you do not) and repair the main drive to be sure the directory is in good shape before you clone it. I personally use DiskWarrior for this but the disk utility will repair common problems.
    In step five he means select the destination drive (the new drive) that you are cloning to and drag it to the destination field and then select the source drive (the startup bootdisk) and drag it to the source field.
    I'd also unhook the external firewire if you are not cloning to it at this time. Before you physically remove the boot drive be sure the clone is working correctly and I wouldn't erase it until I was satisfied the clone was working correctly after a few days of use.
    Once you are satisfied with everything you can remove the original drive and put a bigger one in its place.
    The most important thing is to be sure you understand the jumper settings because if you get them wrong you may not be able to erase the drive to start with and the clone may not work correctly.
    The earlier G4's often won't work with the drives set to cable select and you have to resort to the master and slave settings but if the drive on the particular ide/ata cable is using the cable select setting use the cable select setting for the other drive going on that cable.
    On a last note if you need larger drives in a 128 gig max computer consider a SATA pci card. I have a couple of Sonnet 2 port SATA cards that are bootable (not all are bootable) in my 128 gig limited G4. In fact I have 2 of the Sonnet cards in my G4 running four 320 gig drives!
    Once you've done this it becomes much easier. Just be sure to have time to think out what you are doing and allow time to complete the job at your pace and don't erase anything until you are sure of how everything is working. Tom

  • CAT6500 - VLAN DATABASE saving and restoring - question

    If one wants to change the SUP720 module on a CAT6500, then how is the VLAN DATABASE trasnfered from original to new module. For startup config one can tftp the config from old module and then tftp back the same into new module. How about vlan database. Is there any way of copying vlan database from old module to a tftp server and then back into new module.

    You can copy the vlan.dat using tftp from the const_nvram:. Under that location should should see a file vlan.dat. But as you are warned when you enter the vlan database, vlan.dat is being deprecated and it is recomended to add or delete vlan from the configuration mode. Vlan from the confguration mode is saved in the start-up configuration.
    Router#dir const_nvram:
    Directory of const_nvram:/
    1 -rw- 616 vlan.dat
    126956 bytes total (126340 bytes free)
    Router#copy const_nvram:vlan.dat tftp
    Address or name of remote host []? 10.1.1.1
    Destination filename [vlan.dat]?
    Please rate helpful post.

  • IOS 6 facebook integration with multiple list selection and exception list selection?

    hey guys,
    does anyone know if there is in the iOS 6 facebook integration an option choosing multiple friendlists for posts or even the option to reject friendslists from reading particular posts?
    this is what i miss in the facebook app and why the google plus app is better than the fb app.
    maybe apple is going to introduce this facebook desktop posting feature into ios 6
    greetz

    semir.at wrote:
    thank you meg, i thought because of the hundreds of ios 6 youtube videos anyone can comment this.
    There is no way anyone here can comment on the veracity of those hundreds of videos. Sorry.

  • Backpac: A package state snapshot and restore tool for Arch Linux

    backpac:
    A package state snapshot and restore tool for Arch Linux with config file save/restore support.
    https://aur.archlinux.org/packages.php?ID=52957
    https://github.com/altercation/backpac (see readme on the github repository for more information)
    Summary & Features
    It's a common method of setting up a single system: take some notes about what packages you've installed, what files you've modified.
    Backpac creates those notes for you and helps back up important configuration files. Specifically, backpac does the following:
    maintains a list of installed groups (based on 80% of group packages being installed)
    maintains a list of packages (including official and aur packages, listed separately)
    maintains a list of files (manually created)
    backs up key config files as detailed in the files list you create
    The package, group and files lists along with the snapshot config files allows system state to be easily committed to version control such as git.
    Backpac can also use these lists to install packages and files. Essentially, then, backpac takes a snapshot of your system and can recreate that state from the files and lists it archives.
    Use Cases
    Ongoing system state backup to github
    Quick install of new system from existing backpac config
    Conform current system to given state in backpac config
    Backpac is a very, very lightweight way of saving and restoring system state.
    It's not intended for rolling out and maintaining multiple similar systems, it's designed to assist individual users in the maintainance of their own Arch Linux box.
    Status
    Alpha, release for testing among those interested. Passing all tests right now but will continue to rework and refine. Bug reports needed.
    Why?
    There are a lot of 'big-iron' solutions to maintaining, backing up and restoring system state. Setting these up for a single system or a handful of personal systems has always seemed like overkill.
    There are also some existing pacman list making utilities around, but most of them seem to list either all packages or don't separate the official and aur packages the way I wanted. Some detect group install state, some don't. I wanted all these features in backpac.
    Finally, whatever tool I use, I'd like it to be simple (c.f. the Arch Way). Lists that are produced should be human readable, human maintainable and not different from what I'm using in non-automated form. Backpac fulfills these requirements.
    Regarding files, I wanted to be able to backup arbitrary system files to a git repository. Tools like etckeeper are interesting but non /etc files in that case aren't backed up (without some link trickery) and there isn't any automatic integration with pacman, so there is no current advantage to using a tool like that. I also like making an explicit list of files to snapshot.
    Sample Output
    This is the command line report. Additionally, backpac saves this information to the backpac groups, packages and files lists and the files snapshot directory.
    $ backpac -Qf
    backpac
    (-b) Backups ON; Files will be saved in place with backup suffix.
    -f Force mode ON; No prompts presented (CAUTION).
    (-F) Full Force mode OFF; Prompt displayed before script runs.
    (-g) Suppress group check OFF; Groups will be checked for currency.
    (-h) Display option and usage summary.
    (-p) Default backpac: /home/es/.config/backpac/tau.
    -Q Simple Query ON; Report shown; no changes made to system.
    (-R) Auto-Remove OFF; Remove/Uninstall action default to NO.
    (-S) System update OFF; No system files will be updated.
    (-U) backpac config update OFF; backpac files will not be updated.
    Sourcing from backpac config directory: /home/es/.config/backpac/tau
    Initializing.................Done
    GROUPS
    ============================================================================
    /home/es/.config/backpac/tau/groups
    GROUPS UP TO DATE: group listed in backpac and >80% local install:
    base base-devel xfce4 xorg xorg-apps xorg-drivers xorg-fonts
    GROUP PACKAGES; MISSING?: group member packages not installed:
    (base: nano)
    (xfce4: thunar xfdesktop)
    PACKAGES
    ============================================================================
    /home/es/.config/backpac/tau/packages
    PACKAGES UP TO DATE: packages listed in backpac also installed on system:
    acpi acpid acpitool aif alsa-utils augeas cowsay cpufrequtils curl dialog
    firefox gamin git ifplugd iw mesa mesa-demos mutt netcfg openssh rfkill
    rsync rxvt-unicode sudo terminus-font vim wpa_actiond wpa_supplicant_gui
    xmobar xorg-server-utils xorg-twm xorg-utils xorg-xclock xorg-xinit xterm
    yacpi yajl youtube-dl zsh
    AUR UP TO DATE: aur packages listed in backpac also installed on system:
    flashplugin-beta freetype2-git-infinality git-annex haskell-json
    package-query-git packer wpa_auto xmonad-contrib-darcs xmonad-darcs
    AUR NOT IN backpac: installed aur packages not listed in backpac config:
    yaourt-git
    FILES
    ============================================================================
    /home/es/.config/backpac/tau/files
    MATCHES ON SYSTEM/CONFIG:
    /boot/grub/menu.lst
    /etc/acpi/handler.sh
    /etc/rc.conf
    /etc/rc.local

    firecat53 wrote:I think your plan for handling an AUR_HELPER is good. If AUR_HELPER is defined by the user, then either you might need a list of major AUR helpers and their command line switches so you can pick the correct switch for what needs to be done (most use some variation of -S for installing, but not all), or have the user define the correct switch(es) somehow for their chosen AUR helper.
    That's a good idea. I'll add that to my AUR refactoring todo.
    I also found directory tracking to be a weakness in other dotfile managers that I tried. I think you would definitely have to recursively list out the contents of a tracked directory and deal with each file individually. Wildcard support would be nice...I just haven't personally found a use case for it yet.
    I've been thinking that I could just add the directory and scan through it for any non-default attribute files. If those are found then they get automatically added to the files list. That's pretty close to what etckeeper does.
    Edit: I just compiled the dev version and removed my comments for already fixed things...sorry!
    The master branch should have those fixes as well, but I didn't update the version number in the package build. I'll have to do that.
    1. Still apparently didn't handle the escaped space for this item: (the file does exist on my system)
    Ok, good to know. This wildcard directory business will require some new code and refactoring so I'll also rework my filenames handling.
    2. Suggestion: you should make that awesome README into a man page!
    I was working on one (the pkgbuild has a commented out line for the man page) but I had to leave it for later. Definitely want a man page. Once this stabilizes and I'm sure there aren't any big structural changes, I'll convert it to man format.
    3. Suggestion: add the word 'dotfile' into your description somewhere on this page, the github page, and in the package description so people looking for dotfile managers will find it. You could also consider modularizing the script into a dotfile manager and the package manager, so people on other distros could take advantage of your dotfile management scheme.
    I actually have a different script for dotfile management that doesn't touch packages, but there is definitely overlap with this one. That script isn't released yet, though, and if people find this useful for dotfile management that's great. I'll add that in.
    4. Suggestion: since -Q is a read-only operation, why not just make it run with -f automatically to avoid the prompt?
    Originally, running backpac without any command line options produced the Query output. I was concerned that since it is a utility that can potentially overwrite system files, it is important to give users a clear statement prior to execution about what will be done. Since the Query output is essentially the same as the Update and System reports in format and content, I wanted to be explicit about the Query being a passive no-change operation. The current command line options aren't set in stone though. If you feel strongly about it being different, let me know.
    Long answer to a short question
    5. Another suggestion: any thought to providing some sort of 'scrub' function to remove private information from the stored files if desired? This would be cool for publishing public dotfiles to github. Perhaps a credentials file (I did this with python for my own configs). Probably detecting email addresses and passwords without a scrub file would be rather difficult because dotfiles come in so many flavors.
    Yes, absolutely. In fact, if you look at the lib/local file (pretty sure it's in both master and dev branches in this state) you'll see some references to a sanitize function. The idea there is that the user will list out bash associative arrays like this:
    SANITIZE_WPA_=(
    [FILE]='/etc/wpa_supplicant.conf'
    [CMD]='sed s/expungepattern/sanitizedoutput/g'
    Question: am I missing an obvious option to remove a file from the files.d directory if I delete it from the files list? Or do I have to delete it manually? It might be helpful to add a section to the README on how to update and delete dotfiles from being tracked, and also a more detailed description of what the -b option does (and what is actually created when it's not used).
    You are only missing the function I didn't finish. There should be either dummy code or a TODO in the backpac main script referencing garbage collection, which isn't difficult but I just haven't finished it. The idea being another loop of "hey I found these old files in your files.d, mind if I delete them?" It's on my list and I'll try to get it in asap.
    And finally, just out of curiosity, why did you choose to actually copy the files instead of symlink like so many other dotfile managers do?
    git not following symlinks, hardlinks also out for permissions issues (git wouldn't be able to read the files, change them, etc.)
    I definitely would prefer to not make an entire copy of the file, but I haven't come up with a better option. Shout with ideas, though. Also, if there is a way around the link issues I noted above, let me know. I don't see one but that doesn't mean it's not there.
    edit: I think a Seattle area Arch meetup would be cool! Perhaps coffee someplace? Bellevue? U-district? Anyone else? BYOPOL (bring your own pimped out laptop)
    A general meetup sounds good. I was also thinking it would be fun to do a mini archcon with some demos.

  • Save and Restore Color State

    Hi,
    I'm having troubles saving and restoring the color state with jogl
    This would be an example:
    gl.glPushAttrib(GL.GL_COLOR_BUFFER_BIT);
    gl.glLineWidth(ParCoordsRenderStyle.Y_AXIS_LINE_WIDTH);
    gl.glColor4f(0.8f, 0.8f, 0.8f, 0.5f);
    gl.glBegin(GL.GL_POLYGON);
    gl.glVertex3f(fXTextOrigin, fYTextOrigin, 0.002f);
    gl.glVertex3f(fXTextOrigin + fBackPlaneWidth, fYTextOrigin, 0.002f);
    gl.glVertex3f(fXTextOrigin + fBackPlaneWidth, fYTextOrigin + fBackPlaneHeight, 0.002f);
    gl.glVertex3f(fXTextOrigin, fYTextOrigin + fBackPlaneHeight, 0.002f);
    gl.glEnd();
    gl.glPopAttrib();After that the color before the push is not restored. I might get something wrong here, since I'm not the most experienced opengl programmer. I've tried Jogl 1.0 and the latest RC - same issue.
    I'd appreciaty any help!

    is it imposible?

  • How do i erase a corrupt contact list from iCloud,iPhone, iPad and MacBook Pro and restore Address Book backup to all devices and cloud?

    how do i erase a corrupt contact list from iCloud,iPhone, iPad and MacBook Pro and restore Address Book backup to all devices and cloud?
    I saved a corrected, most up to date version of my master Address Book Contacts as a back-up on my Mac Book Pro.
    then in an effort to "simplify my life"  i attempted to sync my I phone contacts - ( pre clean-up version) with my clean list on Mac Book Pro, New I pad and newly available icloud. DUH!! Using iTunes to do the sync caused the clean MacBOOK Pro list to be commingled with the dirty iphone contacts. amd now the whole mess is in the cloud. 
    I need to clear out the contaminated lists from all iplaces, and startover with Back-up on my macbook pro. BUT HOW???
    Help
    Karen

    I had exported an address book backup: abbu
    so since i wrote, i have found my way into the cloud: selected all entries - deleted them all from the cloud.
    This wiped out contacts on my iphone and i pad, and MBP, as well as on the cloud.  I then imported the abbu back into my now empty address book. 
    To repopulate the crowd, i selected all in my address book and created a single card vCard for export to my desktop.  I then dragged that vcard into my empty cloud.  Now my cloud has the same clean contacts as my MBP addressbook.  The cloud then pushed the clean contacts into my empty ipad and iphone contacts. 
    I had to go back to Address Book>preferences>Accounts and Add an I cloud account - but if you accidentally create a second i cloud account - all of a sudden your address book will duplicate itself.  I quickly reversed it by deleting one of the icloud accounts in my Address Book>preferences>Accounts. 
    I created a new entry on my MBP and it is now on all devices and in cloud
    I also created a new entry on my iPhone and it is now in the address book on my MBP.
    I feel empowered!!
    Have i missed anything??

  • HT1751 After "Restoring iTunes Library Backup" it wont link to the files in the iTunes folder. I've followed the correct procedure, and iTunes lists all my music correctly (but with no artwork), but can't locate any of the files. Using Windows 7. Help ple

    After "Restoring iTunes Library backup" it wont link to the files in the iTunes folder. I've followed the procedure as described, and the iTunes folder is in the correct location. iTunes lists all my music correctly (albeit with no artwork), but can't locate any of the files.
    I've been restoring my iTunes folder from a backup hard drive to a new computer on which I've downloaded the latest iTunes (10.7). If this is a newer version than the one I backed up with could this be the problem? (I had the latest (to my knowledge) iTunes when I backed up the folder about 3 weeks ago, was this version 10.7?)
    Or is the version of iTunes (within recent updates) not an issue when restoring a library?
    Using Windows 7.
    Any help please?

    From the top of the page where the scripts live...
    The general method of use is to download the script to a folder of your choice, e.g. your Desktop, Downloads folder or create a folder at ...\iTunes\Scripts. Select a playlist or highlight some tracks in iTunes and then double-click on the script to execute it. If no specific tracks are selected the script will try to work with all tracks in the current playlist. Some scripts offer a choice of track by track confirmation of changes or fully automatic processing of the selection. Many of the scripts can optionally display a progress bar while running.
    You are strongly advised to backup your entire library, or at the very least the iTunes Library.itl file, before use. Test the behaviour of your chosen script on a small group of files first to make sure it does what you want before applying it to large numbers of files.
    Most builds of Windows will execute *.vbs scripts when you double-click them. If that doesn't happen then you might need to visit the Add/Remove Programs or Programs & Features control panel to enable the Windows Scripting Host. I can track down details if you have issues.
    Backing up and restoring data is an area that is often glossed over. Most people don't try to learn much about it until they've lost something important. (Me too )
    If your iTunes library was in the usual layout then normally copying the whole iTunes folder from the User's Music folder in the old computer to the User's Music folder in the new one will usually work fine. Ideally this is done before iTunes is installed so that there is no empty library to replace, and all settings are picked up from the old library. This post contains more details.
    tt2

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

Maybe you are looking for