Foreground/background colors back to front

I am running CS4 64 bit and since installing it, when you select a color either from an image or the swatches pallet using the eyedropper the selected colour automatically defaults to the background. It does the same when you are using the brush tool and alt click to select a new color when painting. I have checked Adobe help and it says you should alt/click to put the colour in the background, if I alt click with the eyedropper it places the new colour in the foreground, which is the opposite of what it is meant to be. This is very annoying, can anyone help me with this?
Chris

http://www.adobeforums.com/webx/.59b503eb
It always pays to read the FAQs!

Similar Messages

  • What is the purpose of the foreground/background color?

    I want to know what is the purpose of the foreground/background color in photoshop, am knew to PS, so am just trying to figure what are the purposes of some of these stuff.
    Regards,
    Jamaine Semple

    Please read the Help files.  Start with "Creating, Opening and Importing images".
    • Select a canvas color option.
    White Fills the background or first layer with white, the default background color.
    Background Color Fills the background or first layer with the current background color.
    Transparent Makes the first layer transparent, with no color values. The resulting document has a single, transparent layer as its contents.
    The Foreground Color is chosen for the brush, shapes, etc.
    Eventually, you want to read the entire content of the Help files, and maybe, hopefully, a book like " Photoshop Classroom in a Book".
    Photoshop is a professional level application that makes no apologies for its long and steep learning curve.
    Take a class at a community college.  Teaching you Photoshop from the ground up far exceeds the scope of the forum.

  • How to get the foreground/background color in photoshop.

    I want to get the foreground or background color at runtime ( by any action ) in photoshop.
    What steps should I follow.

    For example here is a script I use within Photoshop Actions to save and restore the users foreground and background colors so the action can mess with Photoshops foreground and background colors during its processing.
    SaveAndRestoreColors.jsx
    /* ======================================================================================
    // 2009  John J. McAssey (JJMack)  http://www.mouseprints.net/
    // This script is supplied as is. It is provided as freeware.
    // The author accepts no liability for any problems arising from its use.
    // This script is designed to be used by a Photoshop Action twice
    // A good pratice to use when creating an actions that use this scipt is for the action
    // not to do a save or play some other action between its two useages of this Script.
    // The first time this script is used by an action Photoshops Current Forground
    // and Background Colors are saved into the document's meta-data Info Instructions field.
    // The second time this script used by the action the script retreives what was
    // saved in the meta-data during the first usage and these colors are set.
    // and the saved data is removed from the document's meta-data Info Instructions field.
    // ===================================================================================== */
    <javascriptresource>
    <about>$$$/JavaScripts/SaveAndRestoreColors/About=JJMack's SaveAndRestoreColors.^r^rCopyright 2009 Mouseprints.^r^rRun twice script utility for action.^rNOTE:Don't play other actions between runs!^r^rFirst Run records Photoshops foreground and background swatch colors.^rSecond Run restores the recorded colors and removes the recording.</about>
    <category>JJMack's Action Run Twice Utility</category>
    </javascriptresource>
    if (app.documents.length > 0) {
    if (app.activeDocument.info.instructions.indexOf("<Colorf>") == -1 ){ // no footprint fisrt useage
    //alert("first");
    // Retreive Document information for Foot Print
    saveforeColor = new SolidColor;
    saveforeColor.rgb.red = app.foregroundColor.rgb.red;
    saveforeColor.rgb.green = app.foregroundColor.rgb.green;
    saveforeColor.rgb.blue = app.foregroundColor.rgb.blue;
    savebackColor = new SolidColor;
    savebackColor.rgb.red = app.backgroundColor.rgb.red;
    savebackColor.rgb.green = app.backgroundColor.rgb.green;
    savebackColor.rgb.blue = app.backgroundColor.rgb.blue;
    // put footprint in metadata info instructions
    app.activeDocument.info.instructions = app.activeDocument.info.instructions + "<Colorf>" + saveforeColor.rgb.red + "," + saveforeColor.rgb.green + "," + saveforeColor.rgb.blue + "</Colorf>" + "<Colorb>" + savebackColor.rgb.red + "," + savebackColor.rgb.green + "," + savebackColor.rgb.blue + "</Colorb>";
    //alert( "Saved ="  + "<Colorf>" + saveforeColor.rgb.red + "," + saveforeColor.rgb.green + "," + saveforeColor.rgb.blue + "</Colorf>" + "<Colorb>" + savebackColor.rgb.red + "," + savebackColor.rgb.green + "," + savebackColor.rgb.blue + "</Colorb>");
    else {
    //alert("second");
    // Retreive saved information
    colorfOffset = app.activeDocument.info.instructions.indexOf("<Colorf>") + "<Colorf>".length;
    colorfLength = app.activeDocument.info.instructions.indexOf("</Colorf") -colorfOffset;
    saveforeColor = app.activeDocument.info.instructions.substr(colorfOffset, colorfLength);
    colorbOffset = app.activeDocument.info.instructions.indexOf("<Colorb>") + "<Colorb>".length;
    colorbLength = app.activeDocument.info.instructions.indexOf("</Colorb") -colorbOffset;
    savebackColor = app.activeDocument.info.instructions.substr(colorbOffset, colorbLength);
    //alert("Colorf = " + saveforeColor + " Colorb = " + savebackColor );
    // Restore Colors
    app.foregroundColor.rgb.red = saveforeColor.substr(0,saveforeColor.indexOf(","));
    saveforeColor = saveforeColor.substr(saveforeColor.indexOf(",") + 1,saveforeColor.length);
    app.foregroundColor.rgb.green = saveforeColor.substr(0,saveforeColor.indexOf(","));
    saveforeColor = saveforeColor.substr(saveforeColor.indexOf(",") + 1,saveforeColor.length);
    app.foregroundColor.rgb.blue = saveforeColor ;
    app.backgroundColor.rgb.red = savebackColor.substr(0,savebackColor.indexOf(","));
    savebackColor = savebackColor.substr((savebackColor.indexOf(",") + 1),savebackColor.length);
    app.backgroundColor.rgb.green = savebackColor.substr(0,savebackColor.indexOf(","));
    savebackColor = savebackColor.substr(savebackColor.indexOf(",") + 1,savebackColor.length);
    app.backgroundColor.rgb.blue = savebackColor ;
    // Remove footprint from metadata info instructions
    before = app.activeDocument.info.instructions.substr(0,app.activeDocument.info.instructions.indexO f("<Colorf>"));
    afterOffset = app.activeDocument.info.instructions.indexOf("</Colorb>") + "</Colorb>".length;
    after = app.activeDocument.info.instructions.substr(afterOffset, app.activeDocument.info.instructions.length - afterOffset);
    //alert ("before = " + before + " after = " + after);
    app.activeDocument.info.instructions = before + after;
    else { alert("You must have at least one open document to run this script!"); }

  • How can I set the foreground/background color after using CSPickColor()?

    Hello all,
    Is there any one who has experience on changing foreground or background color using Photoshop Plug-in SDK?
    Currently I can get a returned color from CSPickColor(), but have no idea how to use it.
    Thanks!

    You can try a linear-gradient that starts at gray 0% and ends at white <whatever the percentage the thumb is at>.
            final Node track = slider.lookup(".track");
            slider.valueProperty().addListener(new ChangeListener<Number>() {
                public void changed(ObservableValue<? extends Number> ov, Number t, Number t1) {
                    double pct = (t1.doubleValue()-slider.getMin())/(slider.getMax()-slider.getMin())*100;
                    track.setStyle("-fx-background-color: linear-gradient(to right, gray, gray " + pct + "%, white" + pct + "%, white);");
            });Edited by: dgrieve on Apr 12, 2012 12:19 PM

  • Is there any way to get the black background color back in fullscreen mode?

    The current background color in fullscreen mode is grey and it's distracting.  It used to be black.  Is there a way to change the color outside of the document boundaries?

    AndyboyMac wrote:
    The only way you can get themes for your ipod is by a jailbrake, jailbraking is illegal, and yes,, you can downgrade your iOS.
    Jailbreaking is actually not illegal due to exemptions in the DMCA documentation (http://en.wikipedia.org/wiki/IOS_jailbreaking#cite_note-22).
    I've got no explanation on to why the trusty interface for the old iPod style app was butchered, unfortunately (I think we're all at a loss, besides someone being given too much free reign). I came here to supplement the original question with, another alternative question:
    Is there a way, similar to downgrading 3rd party apps, downgrade the Music app or restore the old iPod app as an additonal app? Without jailbreaking?
    < Edited By Host >

  • Error message when trying to change Foreground/Background color

    Just in case anyone is having this problem in Photoshop CC where when you try to change/exchange or set to default the Background/Foreground colors and you get an error message of something like "Could not complete because of program error". I found the cure for this in an archive from when CS6 was in beta testing. Basically you have to delete the preferences file and restart the program. Here's a link to the article  http://forums.adobe.com/message/4336237. Apparently this "beta" problem can still occur as I am using the most recent version  of Photoshop CC.

    If you are trying to change the settings of your Router using the LELA software, and if you are getting an error message "Unable to Save the Data" its better you can exit from the LELA software and change all the Configuration settings on your Router Manaully.
    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case...
    For Wireless Settings,  Click on the Wireless tab
    Below you can make the changes on your Router ( SSID, Channel and let the SSID Broadcast should be Enable) and click on Save Settings... 
    For Wireless Security : -
    Click on the Sub tab under Wireless > Wireless Security...
    Change the security Mode to WPA Personal and under Passpharase type in your Security password and click on Save Settings.. 
    Once done, Now on your computer try to connect to your Wireless Network. Once connected you should be Online from your Computer. 

  • Changing foreground/ Background color in a High-Level GUI MIDlet

    I have created MiDlet and all the Screens in the MIdlet are High-Level GUIs (Elements from Palette) and I didn't use any Canvas.
    Now, I want to give color customization capability to my application.
    I know its possible to change colors in a canvas.
    But, my MIdlet doesn't use any canvas.
    So, is there any possibility to achieve this ? (even if it takes to add canvas to my MIdlet, no problem, I just want it accomplished anyhow)
    Please give me any slightest of ideas to achieve this.

    I am not sure this will help you or not.... any way if u just want to add some animation or graphics to form its possiable thur javax.microedition.lcdui.CustomItem.
    You can see it as a small canvas inside your form.
    import javax.microedition.lcdui.*;
    public class MyCustomItem extends CustomItem
        int W,H;
        public MyCustomItem(String label, int Width, int Height)
            super(label);
            W=Width;
            H=Height;
            protected int getMinContentWidth() {
            return W;
        protected int getMinContentHeight() {
            return H;
        protected int getPrefContentWidth(int i) {
            return getMinContentWidth();
        protected int getPrefContentHeight(int i) {
            return getMinContentHeight();
        protected void paint(Graphics g, int i, int i0) {
            g.setColor(100,0,0);
            g.fillRect(0,0,i,i0);
            g.setColor(0,255,0);
            g.drawString("Hello Thank God Its Working",10,10,Graphics.TOP|Graphics.LEFT);
    }you can use MyCustomItem in your midlet
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.MIDletStateChangeException;
    public class CustomItemDemo1 extends MIDlet
        private Display disp;
        private Form frm;
        private MyCustomItem cust;
        protected void startApp() throws MIDletStateChangeException {
        disp=Display.getDisplay(this);
        frm=new Form("CustomItem Demo1");
        cust=new MyCustomItem("This is Cool...",100,100);
        cust.setLayout(CustomItem.LAYOUT_NEWLINE_BEFORE|CustomItem.LAYOUT_CENTER|CustomItem.LAYOUT_NEWLINE_AFTER);
        frm.append("hi this is Before Adding");
        frm.append(cust);
        frm.append("This is After Adding");
        disp.setCurrent(frm);
        protected void pauseApp() {
        protected void destroyApp(boolean b) throws MIDletStateChangeException {
    }Just like canvas we can even add key press and other events inside CusomItem
    you can even add traversal features by
        protected void traverseOut()
            // do some thing here
        protected boolean traverse(int dir, int viewportWidth, int viewportHeight, int[] visRect_inout) {
            //do some thing here....
    return false; // or true;
        }Rest test and discover your self....
    Hope it helps..
    Edited by: Zac-Mathews on Jun 15, 2008 10:52 PM
    Edited by: Zac-Mathews on Jun 15, 2008 10:56 PM

  • Background color of front panel when printing

    My vi has a control named "print" which allows the user to print the front panel during execution. The background color of the front panel is white, to avoid filling the printed page with any color. In labview 7.1 (and also 6.0), this worked perfectly. I recently updated to labview 8 and now the background color of the print is gray. Does anybody have any idea how to avoid this?
    I am using the "print panel.vi" found in the "vi.lib\utility\printvi.llb". I also tried with the "Easy Print VI Panel or Documentation.vi", with the same result. The same problem also occurs when exporting the front panel to a ".png" file.
    Best regards

    I tried with different colors, without any success.
    I think that this is a bug !  Good catch !
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Background color bug.vi ‏11 KB

  • How can I get the foreground/background swatches in my panel?

    Howdy all-
    Been loving this forum, it's been extremely helpful getting started with Configurator. I'm pulling together a panel for my students to guide their retouching work and the last thing I am trying to get in is the foreground/background swatches like at the bottom of the toolbar. Is this possible? I haven't found it in the provided libraries- is it something that would need a script or am I looking in the wrong places?
    thanks so much again for the forum and any help anyone can provide.

    Hi
    You can only switch foreground/background color   or   set them to default color
    As in the previous thread ( by ipf55 )
    you have the possibility to insert the color picker.
    so the workaround is :
    switch to foreground ( or background as you prefer)
    choose a color with the color picker button (Now the foreground is  set with the color you choosed)
    then repeat te step for the background
    to choose a color you could also ( e.g.) insert into your panel a button that open the swatches panel
    This is the link to develop a panel with the caratheristic i suppose you are looking for
    Adobe® Photoshop® Panel Developer's Guide
    http://www.adobe.com/devnet/photoshop/pdfs/photoshop_panel_developers_guide.pdf
    ( go to pag 26-The Color Picker Panel tutorial)
    You could also take a look to the link to  adobe exchange I mentioned in the thread  above

  • Getting the background color from a row

    I'm displaying a table that has alternating row colors for odd and even... when I click on a row I am changing the color to blue. When I click on a different row I want to set the background color back to what it was for the originally selected row and change the currently selected row to blue. This worked just fine when I had the colors hard coded into the code... but as soon as I started using style sheets it stoped working,
    My questions is how do I get the background color from a row... for instance, the following alert dislays nothing. How can I get the actual color out for the row?
    var tableElem = document.getElementById('table');
    var rowElem;
    rowElem = tableElem.rows[0];
    alert(rowElem.bgColor);
              

    If you're working with style sheets, then ignore the background color. You don't want to care what color is actully being used, only that the correct style is in place.
    Worry instead about the className property for your row:<style>
    .highlightRow {
       color: white;
       background-color: gray;
    .normalRow {
       color: black;
       background-color: white;
    </style>
    var tableElem = document.getElementById("table");
    var rowElem = tableElem.rows[0];
    alert(rowElem.className);
    <table id="table">
    <tr class="normalRow"><td>...</td></tr>
    <tr class="highlightRow"><td>...</td></tr>
    </table>

  • How can I reset the background color of a JPanel to it's default value?

    I have some JPanels that I set their background color to white when I add some objects in them. After some operations the objects are removed and I'd like to reset the background color back to it's default gray. Any suggestions on how to do this? Thanks.

    I took a guess and I figured it out. Just set the background color to null.
    JPanel panel = new JPanel();
    panel.setBackground(Color.white);       //Set Panel to White
    Operations......
    panel.setBackground(null);                 //Reset Panel Color to Default Gray

  • Problem during upgrade from 10g R1 to R2 - background color

    We are using Oracle 10g Forms , where we will have date and time display in every page of the form. Now we have upgraded the version from 10g R1 to R2.
    In R1 , when the date&time flickers the background color will be in white color.
    But in R2, when the date&time flickers the background color is in Grey color.
    How to change the background color back to white. the date & time display calls the jar file to display the time. No change in the jar file.. I have changed the background color in the property palette of the date&time as white.. but still the problem exist..
    Any suggestions or solutions , plsssss.......

    In R2:
    HTMLbeforeForm=<SCRIPT LANGUAGE="JavaScript">window.opener = self;</SCRIPT>
    # HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    width=750
    # Forms applet parameter
    height=600
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for Microsoft Internet Explorer native JVM
    archive_ie=frmall.cab
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    heartBeat=30
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0026-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,26
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.26
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=1
    In R1 :
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms90/l90servlet
    # Forms applet parameter
    codebase=/forms90/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    width=750
    # Forms applet parameter
    height=600
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=f90all_jinit.jar
    # Forms applet archive setting for Microsoft Internet Explorer native JVM
    archive_ie=f90all.cab
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=f90all.jar
    # heartBeat 8/16/2006 czlapinski
    # heartBeat changed to 30 8/29/2006 czlapinski
    heartBeat=30
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms90/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0026-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,26
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.26
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/plugin/1.3/plugin-install.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;version=1.3
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=1
    Using the same Jinitator version , but the version for jpi differs.

  • Highlight colors change (invert) on some backgrounds, i can make it back by changing use system colors and or background color, i would like to knoe if there is a setting to stop the change ?

    i set my highlight colors to yellow background and black foreground in windows , it uses the same colors in firefox except as i highlight over some colors the foreground and background colors invert yellow on black , if there is a setting (or one can be added) in about:config to make the highlight always stay as yellow back and black foreground ? , im not sure if it is done within firefox though or if it is win xp but itcan be changed inside firefox about:config with browser.display.use_system_colors and/or browser.display.background_color .

    that sort of makes sense but when you look at youtube messages , each alternate line is a very pale blue and when highlighted each alternate line the color is switched , this also happens on all web pages with simuler shading (not just pale blue) .
    about the purple highlighting , ive never seen that , i have firefox on 2 PCs , a laptop and a notepad and they all use the colors set in win xp for highlight , even when use system colors is set to false , all that happens then is they swap about (invert) agen , i some times have to switch browser background color as well . sorry for being repetetive , im just trying to be clear , i have tried fine tuning BG color but on some pages just 1 single number away from white makes the switch,on other pages you can go nearly all the way to black befor it switches .ive just seen add images , ill send some pics to show what im trying to say .

  • My background color for all pages has changed to pink, how do I get it back to white?

    The background color in all of my screens has switched to pink. How do I get it back to white? I wonder if it changed when I was shopping in a web site and had clicked on a pink watch(?)

    Check the default color settings:
    *Tools > Options > Content : Fonts & Colors > Colors
    * [X] "Allow pages to choose their own colors, instead of my selections above"
    *https://support.mozilla.com/kb/Changing+fonts+and+colors

  • The new operating system changed the background color of the photos app from black to white.  How do I change the color back to black?

    The new operating system (IOS 7) changed the background color of the Photos App (Camera Roll) from black to white.  How do I change the color back to black?

    You can't. Sorry.
    http://www.apple.com/feedback/
    You can tell apple that you'd like it and see if they respond....eventually. (you don't get responses from your feedback mails but they have been known to issue changes that users have asked for, such as the ability to mass delete apps)

Maybe you are looking for

  • Can I use Remote Desktop to run Windows software from my Mac

    Here's what I want to do: 1) Set up a small office LAN with an Apple Xserve as the file server; clients are mostly iMacs but a few PCs. 2) There are one or two software apps I need that exist only in the Windows world (such as a good document compari

  • PDF files in Launchpad ????

    Hello everyone I get to download Magazines in PDF format So is there anyway I can put each magazine as a seperate file in the launchpad ??? I know launchpad is for applications, but is there a way I can put my pdfs onto the launchpad ? whether sepera

  • SAP Predictive Analysis and SAP Infinite Insight Product Road Map

    Hi everyone, where can I find the current SAP Predictive Analysis and SAP Infinite Insight Product Road Map? The latest version I found on SCN is from Dec. 2013. Best Regards, BJE

  • IPhoto 11 - Not satisfied....

    I bought iPhoto 11 for my 2 month old 27'' iMac this week with much anticipation for the new features. I have to say that I am a bit disappointed by the performance. Some of the features are pretty good like the full screen display and the slideshows

  • [ASA5520] Configuration authentication depends on source ip

      It´s possible do create an access policy to authentication on my ASA 5520 [8.2(1)] vpn based on source ip. For ex.: an ip 172.16.0.0/16 , when try to connect on my vpn will get an specific ip from specific range in my inside interface. thks,