Help with the basics.

1. Does backing up (MacBook Pro, iPhone 4, iPad 2) to iCloud REPLACE  backing things up elsewhere? I have always backed things up to a separate storage drive. Do I still need to do my own separate back up?
2. Does iCloud back up my MacBook Pro completely - system, data, etc.?
Thanks!

1) It's always advisable to have a second (and even third) backup, just in case something should happen to the first.
2) No, iCloud doesn't backup Macs at all - it only syncs the data types you have selected for syncing in the iCloud system preferences pane.

Similar Messages

  • Need Help with the basics

    I'm attempting to take something in post fix notation and compute its calculation
    I'm having problems with my main and passing things to and from the stack. The print statement is just there to make sure its taking the #s in correctly
    Ex. 1 3 - 4 5 * +
    = 18
    import java.util.*;
    public class ABStack // Array-based implementation of a stack data structure
    //instance variables
    int [] pile; // This array holds the contents of the stack. The stack grows rightward from element 0.
    int count; // # of elements in stack. This value is also the index of the next available array element.
    public ABStack(int size) //constructor
    if(size > 1)
    pile = new int[size];
    else
    pile = new int[1];
    count = 0;
    public boolean isEmpty()
    return(count==0);
    public boolean isFull()
    return(count==pile.length);
    public int size()
    return count;
    // Add a new value to the top of the stack.
    // Do nothing if the stack is full.
    public void push(int n)
    //add n to stack top
    if(!isFull()) //have room
    pile[count]=n;
    count++;
    // Remove (and return) th value on the top of the stack.
    // If the stack is empty, return -99999 as a sentinel value.
    public int pop()
    if(isEmpty())
    return -99999;
    else
    count--;
    return pile[count];
    public static void main(String[] args)
    Scanner sc = new Scanner(System.in);
    System.out.print("Please enter numbers in Postfix notation: ");
    String note = sc.nextLine();
    char note2[] = note.toCharArray();
    int opt1, opt2;
    char c;
    for (int i=0;i < note2.length;i++)
    if (note2>= '0'&& note2[i]<='9')
    String nextchar = "" + note2[i];
    int nextnum= Integer.parseInt(nextchar);
    System.out.print(+nextnum); // Can't figure out how to pass my stuff to and from the stack
    Message was edited by:
    jaydon34
    Message was edited by:
    jaydon34

    import java.util.*;
    public class ABStack // Array-based implementation of a stack data structure
    //instance variables
    int [] pile; // This array holds the contents of the stack. The stack grows rightward from element 0.
    int count; // # of elements in stack. This value is also the index of the next available array element.
    public ABStack(int size) //constructor
    if(size > 1)
    pile = new int[size];
    else
    pile = new int[1];
    count = 0;
    public boolean isEmpty()
    return(count==0);
    public boolean isFull()
    return(count==pile.length);
    public int size()
    return count;
    // Add a new value to the top of the stack.
    // Do nothing if the stack is full.
    public void push(int n)
    //add n to stack top
    if(!isFull()) //have room
    pile[count]=n;
    count++;
    // Remove (and return) th value on the top of the stack.
    // If the stack is empty, return -99999 as a sentinel value.
    public int pop()
    if(isEmpty())
    return -99999;
    else
    count--;
    return pile[count];
    public static void main(String[] args)
    Scanner sc = new Scanner(System.in);
    System.out.print("Please enter numbers in Postfix notation: ");
    String note = sc.nextLine();
    char note2[] = note.toCharArray();
    int opt1, opt2;
    char c;
    for (int i=0;i < note2.length;i++)
    if (note2>= '0'&& note2<='9')
    String nextchar = "" + note2;
    int nextnum= Integer.parseInt(nextchar);
    System.out.print(+nextnum); // Can't figure out how to pass my stuff to and from the stack
    }Message was edited by: 

  • Help with the basics please

    hello, i am trying to create a window that displays a grid of 100 buttons arranged 10 x 10. I then would like to place a couple of buttons nicely beneath this grid that might exit the program or whatever.
    my problem here is that i can't control the size of the grid the two nested for loops create and it just fills the entire window and dosen't even stay in a 10 x 10 formation, instead it randomly arranges them to fit the two buttons in at the bottom!
    is there some sort of setSize comand i can use so the grid is set to a certain size, maybe of the EAST of the screen?????
    here is my code so far!
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class trialgrid extends JFrame
    public trialgrid()
                   JFrame frame = new JFrame("One Player");
                   frame.setSize(620, 650); // sets size of window displayed
                   Container content = frame.getContentPane();     
                   JPanel grid = new JPanel();                         
                   content.setLayout(new GridLayout(10, 10)); // contains the grids info
                   content.setSize(100, 100); // this is doing nothing!!!
                   for (int i = 0; i < 10; i++)
                        for (int j = 0; j < 10; j++)
                             JButton square = new JButton();
                             square.setBackground(Color.blue); //nested for loops to create 10 x 10 grid of buttons
                             content.add(square);
                   content.add(grid, BorderLayout.NORTH); // trying to create some sort of layout
                   JPanel form = new JPanel(); // second panel that i want to go beneath grid of buttons
                   form.add(new JButton("OK"));
                   form.add(new JButton("Exit"));
                   content.add(form, BorderLayout.SOUTH); // here i'm trying to put south below "north" grid
                   frame.setVisible(true);
                   frame.setResizable(false);
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public static void main (String args[])
         trialgrid gl = new trialgrid();
    }

    1.
    The only problem i have left is one of my original
    l ones..... i need to be able to control the actual
    size (height and width) of the grid that is produced
    by the for loops!!
    Because i want to set the size of the window to 620
    by 650 pixels i wondered if you could control the
    size of the panel and then maybe centralize it in the
    middle so it would have spaces either side and top
    and bottom??
    Read More about:- Layout managers. setPreferredSize(), getPreferredSize() etc
    Subclass a JPanel so that it returns your preferred Dimensions
    2.
    The thing about the buttons is i am later going to
    use something like mouseClicked(MouseEvent);
    getX(),
    getY() to locate the mouse's location to
    manipulate actions. So im not sure yet if i need to
    be able to name each button or get rid of the buttons
    completely!!If you want the effect of buttons and don't want to go to all the extra trouble of interpreting which one was clicked from the mouse coordinates, which is going to be a real pain if you resize anything.. you could try something along these lines...
           private void fillPanelWithLotsOfButtons( JPanel inPanel )
                          JButton currentButton;
                          String s = "";
                          int buttonNumber = 0;
                           GridLayout grid = new GridLayout( 10, 10, 5, 5 ); // 5Pixel spaces Horizontal and vertical
                          inPanel.setLayout( grid );
                         for( int i = 0 ;  i < 10 ; i ++ )
                                      for( int j = 0; j < 10 ; j ++ )
                                                  buttonNumber = ( i * 10 ) + j;
                                                  s =  Integer.toString( buttonNumber).trim();
                                                  currentButton = new JButton(); // you might want to add a Subclass of Button that is set to your wanted size....
                                                 // Or you could do currentButton = new JButton( s );
                                                 currentButton.setActionCommand( s ); // will be "0", "1", "2", ......................................
                                                 currentButton.addActionListener( this ); //  assumes that this classs implements ActionListener
                                                 inPanel.add( currentButton );
            // Then Further on in your code
           // you can tell which button was pressed fairly easily
          public void actionPerformed( ActionEvent event )
                            String myAction = event.getActionCommand();
                            int buttonNumber = Integer.parseInt( myAction );
                            System.out.println( "Button Number " + buttonNumber );
           }or something along those sort of lines
    To Flounder, that idea does interest me a lot, i have
    been thinking i need more panels, maybe East, North
    and West and fill these with ships, a title and
    instructions respectively. **To make sense of this i
    am creating a battleships game** So i need to make
    another 5 panels really so i'm not sure if i could
    add all these to a 6th panel?
    After reading this, I'd suggest using JToggleButton
    you could make a custom subclass with appropriate Images, for selected and not selected
    any code or suggestions greatly appreicated!! Thank
    you

  • Hi can you help with the following panic attack report,

    hi can you help with the following panic attack report, macbook pro OS 10.7.3
    Interval Since Last Panic Report:  157997 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7ADCF50C-CC18-405E-9D5C-03325D3A83FA
    Thu Mar 29 05:37:28 2012
    panic(cpu 0 caller 0xffffff80002c266d): Kernel trap at 0xffffff800021d905, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffef801a845328, CR3: 0x0000000019452019, CR4: 0x00000000000606e0
    RAX: 0xffffff801a8450d8, RBX: 0xffffff800e79f340, RCX: 0xffffff801a8450d8, RDX: 0xffffef801a8450d8
    RSP: 0xffffff80a4623e90, RBP: 0xffffff80a4623eb0, RSI: 0x0000000020c85580, RDI: 0x0000000000000001
    R8:  0xffffff80008bd890, R9:  0xffffff80058aeac8, R10: 0xfffffe80539a9928, R11: 0x0008000000053d89
    R12: 0xffffff800e79f370, R13: 0xffffff8000846288, R14: 0xffffff801a8450c0, R15: 0x0000000000000001
    RFL: 0x0000000000010206, RIP: 0xffffff800021d905, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffef801a845328, Error code: 0x0000000000000002, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80a4623b50 : 0xffffff8000220702
    0xffffff80a4623bd0 : 0xffffff80002c266d
    0xffffff80a4623d70 : 0xffffff80002d7a1d
    0xffffff80a4623d90 : 0xffffff800021d905
    0xffffff80a4623eb0 : 0xffffff800021daad
    0xffffff80a4623ee0 : 0xffffff800023caa9
    0xffffff80a4623f10 : 0xffffff800023cb36
    0xffffff80a4623f30 : 0xffffff80005a3258
    0xffffff80a4623f60 : 0xffffff80005ca448
    0xffffff80a4623fb0 : 0xffffff80002d7f39
    BSD process name corresponding to current thread: SophosAntiVirus
    Mac OS version:
    11D50b
    Kernel version:
    Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64
    Kernel UUID: 7B6546C7-70E8-3ED8-A6C3-C927E4D3D0D6
    System model name: MacBookPro8,3 (Mac-942459F5819B171B)
    System uptime in nanoseconds: 5720232329361
    last loaded kext at 5694112402758: com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.3 (addr 0xffffff7f807a3000, size 86016)
    last unloaded kext at 248390619372: com.apple.driver.AppleUSBUHCI          4.4.5 (addr 0xffffff7f80a4e000, size 65536)
    loaded kexts:
    com.sophos.kext.sav          7.3.0
    com.apple.driver.AppleUSBCDC          4.1.15
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AppleHDA          2.1.7f9
    com.apple.driver.AppleMikeyDriver          2.1.7f9
    com.apple.driver.AppleIntelHD3000Graphics          7.1.8
    com.apple.driver.AGPM          100.12.42
    com.apple.kext.ATIFramebuffer          7.1.8
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleMuxControl          3.0.16
    com.apple.driver.AppleLPC          1.5.3
    com.apple.ATIRadeonX3000          7.1.8
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AirPort.Brcm4331          513.20.19
    com.apple.iokit.AppleBCM5701Ethernet          3.0.8b2
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleUSBEHCI          4.5.8
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.3.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.1
    com.apple.driver.AppleIntelCPUPowerManagement          167.3.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.3
    com.apple.iokit.IOUSBMassStorageClass          3.0.1
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleAVBAudio          1.0.0d11
    com.apple.driver.DspFuncLib          2.1.7f9
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.iokit.IOBluetoothSerialManager          4.0.3f12
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.driver.AppleHDAController          2.1.7f9
    com.apple.iokit.IOHDAFamily          2.1.7f9
    com.apple.iokit.IOAudioFamily          1.8.6fc6
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.kext.ATI6000Controller          7.1.8
    com.apple.kext.ATISupport          7.1.8
    com.apple.driver.AppleIntelSNBGraphicsFB          7.1.8
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.3f12
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.3f12
    com.apple.iokit.IOBluetoothFamily          4.0.3f12
    com.apple.driver.AppleThunderboltDPInAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.5.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.1
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          4.5.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.3
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.3
    com.apple.driver.AppleThunderboltNHI          1.3.2
    com.apple.iokit.IOThunderboltFamily          1.7.4
    com.apple.iokit.IOUSBUserClient          4.5.8
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IO80211Family          412.2
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IOUSBFamily          4.5.8
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331.3
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.8
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro8,3, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 4 GB, SMC 1.70f5
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.19)
    Bluetooth: Version 4.0.3f12, 2 service, 18 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0245, 0xfa120000 / 4
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    Get rid of Sophos Anti-Virus software you have installed. Use the uninstaller or:
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead.  Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
    AppZapper
    Automaton
    Hazel
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Problems with the basics

    Hi, I recently purchased a copy of Photoshop so that I could creat custom artworks for a few of my new websites:
    <links removed>
    Unfortunately I'm not very good at using this software, so can anyone suggest a good basics guide to use for this software as i'm just getting confused by the help files that come with it.
    Cheers
    John A

    You have a lot of company.  The learning curve for photoshop is quite steep, but the program has huge potential.
    The Adobe Classroom in a Book is good to start with the basics and move forward.  Adobe also sends out a DVD with numerous tutorial on in.
    Another book that is good is Adobe Photoshop by Martin Evening.
    There are also many free tutorials on Adobes' website and and the web.
    If you really want to learn the nuts and bolts with video tutorials Lynda.com is probably the best.  It is a paid service, but you can view as many tutorials as you want while subscirbed.  So if you subscribe pick a month where you have extra time to spend learning.
    Hope this helps, and good luck.
    Welcome to the photoshop community.

  • Hello applecare  can you help with the macbook pro i did the update the last one and safari doesn't open anything .. what should i do ?

    hello applecare  can you help with the macbook pro i did the update the last one and safari doesn't open anything .. what should i do ?

    Hello John...
    You may have a Safari third party add on installed that was compatible with the previous version of Safari but not 5.1. Try troubleshooting > Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    FYI... this is a user to user forum. If you can't resolve the issue, information for contacting AppleCare  here.

  • Need some help with the colour profile please. Urgent! Thanks

    Dear all, I need help with the colour profile of my photoshop CS6. 
    I've taken a photo with my Canon DSLR. When I opened the raw with ACDSee, the colour looks perfectly ok.
    So I go ahead and open in photoshop. I did nothing to the photo. It still looks ok
    Then I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    And the colour started to get messed up.
    And the output is a total diasater
    Put the above photo side by side with the raw, the red has became crimson!!
    So I tried the other option, Use the embedded profile
    The whole picture turns yellowish in Photoshop's interface
    And the output is just the same as the third option.
    Could someone please guide me how to fix this? Thank you.

    I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    always use the embedded profile when opening tagged images in Photoshop - at that point Photoshop will convert the source colors over to your monitor space correctly
    if your colors are wrong at that point either your monitor profile is off, or your source colors are not what you think they are - if other apps are displaying correctly you most likely have either a defective monitor profile or source profile issues
    windows calibrate link:
    http://windows.microsoft.com/en-US/windows7/Calibrate-your-display
    for Photoshop to work properly, i recall you want to have "use my settings for this device" checked in Color Management> Device tab
    you may want to download the PDI reference image to check your monitor and print workflows
    and complete five easy steps to profile enlightenment in Photoshop
    with your settings, monitor profile and source profiles sorted out it should be pretty easy to pinpoint the problem...

  • Hi, please help with the installation of Lightroom 4, I bought a new Mac (Apple) and I want to install a software that I have on the album cd. My new computer does not have the drives. Can I download software from Adobe? Is my license number just to be ab

    Hi, please help with the installation of Lightroom 4, I bought a new Mac (Apple) and I want to install a software that I have on the album cd. My new computer does not have the drives. Can I download software from Adobe? Is my license number just to be able to download the srtony adobe.

    Adobe - Lightroom : For Macintosh
    Hal

  • Need help with the Vibrance adjustment in Photoshop CC 2014.

    Need help with the Vibrance adjustment in Photoshop CC 2014.
    Anytime I select Vibrance to adjust the color of an image. The whole image turns Pink in the highlights when the slider is moved from "0" to - or + in value.  Can the Vibrance tool be reset to prevent this from happening? When this happens I cn not make adjustments...just turns Pink.
    Thanks,
    GD

    Thank you for your reply. 
    Yes, that does reset to “0” and the Pink does disappear.
    But as soon as I move the slider +1 or -1 or higher the image turns Pink in all of the highlights again, rather than adjusting the overall color.
    GD
    Guy Diehl  web: www.guydiehl.com | email: [email protected]

  • I need help with the iPad Remote app to connect to apple TV 2

    I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something 

    Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
     Cheers, Tom

  • Stuck with the basics..

    Hi!
    this is not a programming problem, but it seems that i am stuck with the basic , i am trying to implement my custom  PushBufferDataSource and a PushBufferStream, but i am not able to understand that how the      read(Buffer buffer) method and the transferHandler thing work..(i.e. when they are called and by whom)
    i would be thankful if someone can briefly explain me these things..

    There are 2 functions on a processor, setMediaTime (start time) and setStopTime(end time) that you can use to make a processor play only a portion of a file and then stop. So, if you use those to make a processor only play part of a file, you can make the datasink attached to the processor only save a portion of the file. No special implementations needed.
    Take a look at the API, and play around with it.
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/apidocs/
    That should be enough to get you going...

  • I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    Freezing, or crashing?
    ID on the Mac can produce reports that may (or may not) prove helpful in diagnosing the problem. I suspect this is something not directly related to InDesign, and maybe not to any of the Adobe apps directly since you seem to be having a problem in more than one. That often inidcates a problem at the system level.
    Nevertheless, it won't hurt to try to gather the reports. You'll find driections for how to generate them, and to post them on Pastebin.com (then put a link to them here) so we can see what's going on at Adobe Forums: InDesign CS5.5 Not Responding
    Do you happen to run a font manager? If so, which one, and waht version?

  • Need help with the session state value items.

    I need help with the session state value items.
    Trigger is created (on After delete, insert action) on table A.
    When insert in table B at least one row, then trigger update value to 'Y'
    in table A.
    When delete all rows from a table B,, then trigger update value to 'N'
    in table A.
    In detail report changes are visible, but the trigger replacement value is not set in session value.
    How can I implement this?

    You'll have to create a process which runs after your database update process that does a query and loads the result into your page item.
    For example
    SELECT YN_COLUMN
    FROM My_TABLE
    INTO My_Page_Item
    WHERE Key_value = My_Page_Item_Holding_Key_ValueThe DML process will only return key values after updating, such as an ID primary key updated by a sequence in a trigger.
    If the value is showing in a report, make sure the report refreshes on reload of the page.
    Edited by: Bob37 on Dec 6, 2011 10:36 AM

  • Need some help with the Select query.

    Need some help with the Select query.
    I had created a Z table with the following fields :
    ZADS :
    MANDT
    VKORG
    ABGRU.
    I had written a select query as below :
    select single vkorg abgru from ZADS into it_rej.
    IT_REJ is a Work area:
    DATA : BEGIN OF IT_REJ,
            VKORG TYPE VBAK-VKORG,
            ABGRU TYPE VBAP-ABGRU,
           END OF IT_REJ.
    This is causing performance issue. They are asking me to include the where condition for this select query.
    What should be my select query here?
    Please suggest....
    Any suggestion will be apprecaiated!
    Regards,
    Developer

    Hello Everybody!
    Thank you for all your response!
    I had changes this work area into Internal table and changed the select query. PLease let me know if this causes any performance issues?
    I had created a Z table with the following fields :
    ZADS :
    MANDT
    VKORG
    ABGRU.
    I had written a select query as below :
    I had removed the select single and insted of using the Structure it_rej, I had changed it into Internal table 
    select vkorg abgru from ZADS into it_rej.
    Earlier :
    IT_REJ is a Work area:
    DATA : BEGIN OF IT_REJ,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    Now :
    DATA : BEGIN OF IT_REJ occurs 0,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    I guess this will fix the issue correct?
    PLease suggest!
    Regards,
    Developer.

  • Help with the FM view_get_data

    Hello,
    i need some help with the function module 'view_get_data' ,when i try to execute the function only with the name of the view without conditions( the prameter DBA_SELLIST ), it returns me the table correctly, but when i'm trying to execute the function with conditions, it returns an empty table. Please tell me how to execute the function the conditions so it would work.
    Best regards,
    Udi.

    check first that any view is there for the table other wise the data will not be populated..
    pass the view name inot table DD25V.
    select * from DD25V where viewname = p_view .  " view name passing to fm 
    if sy-subrc = 0.
    CALL FUNCTION 'VIEW_GET_DATA'
      EXPORTING
         VALUE(VIEW_NAME)  =     "Pass table name
      TABLES
          DATA                        = pass internal table with above table name
    else.
    write : 'view does not exist'.
    endif.
    regards,
    Prabhudas

Maybe you are looking for

  • Help needed in opening AW database in Excel

    My wife has a massive AW database doc that needs to go to Excel for Windows but it does not seem to be working to make the move.  I saved it as an ASCII doc but it did not work.  Is this supposed to work?  Also, if I buy Excel for Mac, will this do a

  • Installing itunes 8.1 on vista home premium - please help!

    This is my first ever post in a forum because i can usually work it out from other peoples questions... but i'm at the end of my tether with this: I've just bought a new Dell inspiron 1545, o.s windows vista home premium. I'm trying to install itunes

  • Leave a disc in?

    Is there any problem with leaving a disc in my iMac's drive on a regular basis? I don't use the disc drive very often but my son plays a certain game that is on DVD and I thought--why not just leave it in the drive instead of putting it away every da

  • Import Excel file to update project

    I'm trying to update my current project activities with codes in User Defined Fields created in another version of the project. Everything seems to be okay up to the point when I'm selecting the project to import the excel file to. I try and select a

  • URL to a BO XI 3.1 Infoview Corporate Dashboard

    I'm looking for the syntax used in BO XI 3.1 to create a URL which will open Infoview displaying a specific corporate dashboard. Thanks, Bob