My RGB colors are turning to cmyk while bringing image from illustrator or photoshop. Why?  Removing the image from that page bright RGB colors are back.. hmm

My RGB colors are turning to cmyk while bringing image from illustrator or photoshop. Why? 
Removing the image from that page bright RGB colors are back.. hmm

Edit > Transparency Blend Space > Document RGB

Similar Messages

  • My husband bought an iPad 2.  I have a Mac.  ITunes is in my name but I have turned sharing on.  When we updated to OS5 we lost all the free apps that he downloaded in his user name.  Is there no way to update using my iTunes without losing his software.

    My husband bought an iPad 2.  I have a Mac.  ITunes is in my name but I have turned sharing on.  When we updated to OS5 we lost all the free apps that he downloaded in his user name.  Is there no way to update using my iTunes without losing his software.  He is frustrated using the iPad because he never knows whether to use his user name or my user name.

    Apps are only tied to one account... You can set up two iTunes accounts on your computer, however, and let his iPad sync to his account. If he has never backed up his apps to a computer, however, he will have to redownload all the apps. Afterwards, he can backup to iCloud instead of your computer.
    http://support.apple.com/kb/ht1495

  • How can I erase the data on my 2009 macbook pro that won't turn on because of a faulty motherboard? Do I just remove the hard drive, install it in a working mac, and erase it that way?

    How can I erase the data on my 2009 macbook pro that won't turn on because of a faulty motherboard? Do I just remove the hard drive, install it in a working mac, and erase it that way? Thanks.

    You put the internal drive in an enclosure. If you choose to keep the drive, you don't need to erase it.
    (110687)

  • Getting error , while passing parameters from one page to another page

    Hello friends,
    i am getting error, while passing parameters from one page to another page, below code i wrote.
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    ArrayList arl=new ArrayList();
    EresFrameworkAMImpl am=(EresFrameworkAMImpl)pageContext.getApplicationModule(webBean);
    ERecordImpl ERecordObj=new ERecordImpl();
    HashMap hMap = new HashMap();
    hMap.put("1",ERecordObj.getTransactionName());
    hMap.put("2",ERecordObj.getTransactionKey());
    hMap.put("3",ERecordObj.getDeferredMode());
    hMap.put("4",ERecordObj.getUserKeyLabel());
    hMap.put("5",ERecordObj.getUserKeyValue());
    hMap.put("6",ERecordObj.getTransactionAuditId());
    hMap.put("7",ERecordObj.getRequester());
    hMap.put("8",ERecordObj.getSourceApplication());
    hMap.put("9",ERecordObj.getPostOpAPI());
    hMap.put("10",ERecordObj.getPayload());
    // hMap.put(EresConstants.ERES_PROCESS_ID,
    if(pageContext.getParameter("item1")!=null)
    pageContext.forwardImmediately(EresConstants.EINITIALS_FUNCTION,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    hMap,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES
    Error(71,2): method forwardImmediately(java.lang.String, byte, null, java.util.HashMap, boolean, java.lang.String) not found in interface oracle.apps.fnd.framework.webui.OAPageContext
    Thanks
    krishna.

    Hi,
    You have imported the wrong class for HashMap.
    Import
    com.sun.java.util.collections.HashMap; instead of java.util.HashMap
    Thanks,
    Gaurav

  • Are the PDF's that Pages exports in CMYK or RBG?

    Occasionally I have problems when sending PDF's created in Pages to an online printer such as Uprinting.com or Gotprint.com.  The frustrating part is that it seems to be random.  Most of the time the files print just fine.  My most recent problem was an order of business cards through GotPrint.com.  The colors were way off there were some weird gray boxes around one of the logos and even one of the text boxes - as if the boxes weren't set to be transparent - which they were.  Any suggestions?

    > The colors were way off. There were some weird gray boxes around one of the logos and even one of the text boxes - as if the boxes weren't set to be transparent - which they were. Any suggestions?
    Answer:
    1. The colours were way off because the print service did not provide you with the ICC profile for the printing condition.
    2. The system graphics service detected that you used transparency. Therefore, the system set the PDF version to 1.4 where device independent transparency operators are supported. The print service did not detect that your PDF was version 1.4 and processed it as version 1.3 which has no support for device independent transparency operators.
    There are three problems here:
    a. Apple does not clearly and concisely state that rendering transparency requires a RIP Raster Image Processor that has a frontend for PDF 1.4 or higher (inside a RIP there is a conversion from PDF at the frontend to PostScript at the backend).
    b. The print service does not correctly detect PDF 1.4 and does not describe either the ICC profile(s) for its printing condition(s) or the rendering requirements for its printing condition(s) including resolution.
    c. You did not know that in order to manually render device-independent transparency into a device-dependent representation, you need to use the Apple ColorSync Utility (which is the system ICC service for colour matching) in combination with system level transparency flattening.
    Look up my name and you will find a link to a short technical summary. I'm on another machine and don't have the bookmark available.
    /hh

  • Problem while passing parameter from standard page to custome page

    Hi,
    We are calling a custom page from standard page.
    Standard page Extended CO
    PR
    String wcHeader = pageContext.getParameter("WcHeaderId");
    pageContext.putTransactionTransientValue("WcHeaderId",wcHeader);
    PFR
    String wcHeader=(String)pageContext.getTransactionTransientValue("WcHeaderId");
    pageContext.putTransactionTransientValue("WcHeaderId",wcHeader);
    Till here we are able to put the Parmeter in Tranasction
    After calling the custom page from standard page while we are using the Transaction value it is returning null.
    Custom page CO
    PR
    String wcHeader=(String)pageContext.getTransactionTransientValue("WcHeaderId");
    we are getting nulll here.
    Please provide the solution for this
    Thanks,
    Narayana

    Hi Meher Irk,
    i got WcHeaderid value in Custom CO. but i want to set value Custome page to Standard page in custom page i have a total value this value i want to set to Standard page.
    Custom CO code
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package xxbb.oracle.apps.pos.xxwc.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import xxbb.oracle.apps.pos.xxwc.server.WithholdAMImpl;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OADBTransaction;
    import oracle.cabo.ui.validate.Formatter;
    import oracle.apps.fnd.framework.webui.OADecimalValidater;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    import oracle.apps.fnd.framework.webui.beans.table.OAColumnBean;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.*;
    import oracle.apps.fnd.framework.webui.*;
    import oracle.apps.fnd.framework.webui.beans.table.OATableFooterBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageTextInputBean;
    import oracle.apps.fnd.framework.webui.beans.table.OATableBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.server.OAViewRowImpl;
    import oracle.apps.fnd.framework.webui.beans.nav.OAButtonBean;
    import oracle.jbo.domain.Number;
    import java.util.Enumeration;
    import oracle.apps.pos.wc.webui.WcRespondCO;
    //import oracle.apps.pos.wc.webui.*;
    * Controller for ...
    public class WithholdCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    String wcHeader=new String();
    Formatter formatter=new OADecimalValidater("#,##0.00;(#,##0.00)","#,##0.00;(#,##0.00)");
    OAColumnBean columnBean=(OAColumnBean)webBean.findIndexedChildRecursive("Amountcol");
    columnBean.setAttributeValue(ON_SUBMIT_VALIDATER_ATTR,formatter);
    //String wcHeader=(String)pageContext.getTransactionTransientValue("WcHeaderId");
    pageContext.writeDiagnostics(this,"zzzzzz"+wcHeader,1);
    if(pageContext.getSessionValue("WcHeaderId") != null&& !pageContext.getSessionValue("WcHeaderId").equals(""))
    wcHeader=pageContext.getSessionValue("WcHeaderId").toString();
    pageContext.writeDiagnostics(this,"If get session condition "+wcHeader,1);
    /* OAMessageTextInputBean item=(OAMessageTextInputBean)webBean.findIndexedChildRecursive("item3");
    item.setValue(pageContext,"10");*/
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    if("AdvancedRN".equals(pageContext.getParameter(SOURCE_PARAM))
    && ADD_ROWS_EVENT.equals(pageContext.getParameter(EVENT_PARAM)))
    am.invokeMethod("xxInsertRow");
    // am.xxInsertRow();
    if(pageContext.getParameter("Save")!=null)
    am.invokeMethod("xxSaveTransaction");
    am.invokeMethod("xxUnitotal");
    OAViewObject vo = (OAViewObject)am.findViewObject("TotalVO1");
    vo.reset();
    vo.next();
    OARow totRow = (OARow)vo.getCurrentRow();
    Number total = (Number)totRow.getAttribute("Total");
    throw new OAException("Records Saved Successfully",OAException.CONFIRMATION);
    if(pageContext.getParameter("Delete")!=null)
    am.invokeMethod("xxDeleteRow");
    am.invokeMethod("xxSaveTransaction");
    //am.xxDeleteRow();
    // am.xxSaveTransaction();
    throw new OAException("Records Deleted Successfully",OAException.CONFIRMATION);
    if(pageContext.getParameter("Close")!=null)
    pageContext.setForwardURL("OA.jsp?page=/oracle/apps/pos/wc/webui/WcRespondPG&param=FrmWithHoldPG"
    ,null
    ,OAWebBeanConstants.KEEP_MENU_CONTEXT
    ,null
    ,null
    ,true
    ,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
    ,OAWebBeanConstants.IGNORE_MESSAGES);
    Thanks,
    Narayana

  • TS2972 Troubleshoot HOME SHARING. Everything is connected. Everything is up to date. Everything is turned on. Everthing is enabled and My network works!! The ONLY thing that is not working is Home Sharing and this JUST happened after I updated iTunes.

    I had NO problem with Home Sharing until I updated iTunes. INSTANTLY, Home Sharing quit. I have two AppleTV's, two computers running Win7 and iTunes. All have worked seamlesly until I updated iTunes last night. I have tried all of the Home Sharing trouble shooting suggestion with no luck. My network connections are good and I can stream EVERYTHING ( Netflix, Youtube, NetRadio etc ) EXCEPT I cannont connect to Home Sharing. What gives Apple Support? Where is the fix? Anyone?

    Has there been any response that helped?  Why hasn't someone from Apple responded with a solution?  This post was created back in 2012 and I did an update on my iTunes to 12.1.1.4 and all of a sudden my Home Sharing stopped working.  I even reset my settings on my Apple TV hoping that would work and no, it didnt.  Does anyone have a solution? 

  • Viewer slow while retrieving data while changing value from a page item

    Hi, I am using 9.0.2 to create reports. My end-users are using Viewer to run these reports. Recently, we are experiencing performance problems with Viewer. We have reports with Page Item. Let say a report takes 1 min to run. After running the report if a different value is selected for a page item, it is takes another 1 min to get new data. Whereas, Desktop is not taking any additional time (noticable) for a different value for the page item. Recently, we are experiencing this problem. I thought that it was cache problem in Application server, so we restarted all the pieces in aps server. However, the problem still exists. We are using a materialized for this particular report.
    Any tips would be highly appreciated. Thanks.

    The performance differences can be attributed to the differences in product. Desktop is a client server product. A query executes and ALL data is returned to the desktop. You can manipulate that data in any way and the database is not required. Web (Plus/Viewer) only return the data needed to satisfy the query currently being viewed. If you change a page item, a database call is made to retreive additional/different data.
    In other words this is just how things work. You can alter settings in your prefs.txt file to improve performance in Viewer/Plus. Changing number of rows returned, memory settings, row fetch limits, rows per fetch all can improve/reduce performance.
    As best I know there is not a "magic" setting for these values. It is based on the server/volume of data/workbook content/ workbook layout. etc. Crosstab workbooks are much slower to return data than page -detail.

  • How are I supposed to make a 3D spinning icon after Photoshop CC removed the 3D Scene Position?

    I've read about how to make a portion of my logo into a spinning icon but all of the tutorials involve using the 3D Scene Position adjustment in the timeline. However, with a recent update Adobe removed this feature. Is there another way to accomplish this? I cannot get the keyframes to work the same way using any of the other options, e.g. 3D camera position, 3D render settings, position, etc. Every time I set a keyframe the older one resets. Any help would be greatly appreciated, thank you.

    I more or less figured out a way to do it. Use the 3D Mesh keyframes in the timeline layer of the object you are trying to animate.

  • Turning ADF Security on fails navigation from home page to taskflows

    When my applications starts, it shows login page where user enters credentials, and if it is correct, it takes user to home page. My home page contains navigations through commandLinks to different bounded taskflows. When i click one of the commandLink, nothing happens. All these navigations are running perfectly when i disable security. Any though on this. I have also shown only those links which are allowable to logged in user using this:
    rendered="#{securityContext.taskflowViewable
    ['/WEB-INF/taskflows/maintain_stocks_tf.xml#maintain_stocks_tf']}"
    So when i gives grants to user, it is shown visible but navigation does not work which perfectly works without security.

    just to debug check if it return true or false..
    <af:outputText value="#{securityContext.taskflowViewable['/WEB-INF/taskflows/maintain_stocks_tf.xml#maintain_stocks_tf']}"

  • Why have the Firefox Themes that i was using now stopped working and why are they unavailable to me?

    After upgrading again just days after a previous Mozilla Firefox update, my themes are now completely unavailable to me and do not appear at the top of the Firefox page even if i try changing from one to another and instead i have (Private Browsing) being displayed instead like i'm supposed to know or care what that means?
    Isn't all non - public browsing, "private browsing"?
    Is that to be my new theme?
    How hard is it for Mozilla to just leave the well - enough alone with the page and why provide upgrades every five days, your customers HATE it!

    hello, it is a known issue that light-weight themes are currently not shown when firefox is set to never remember history (a.k.a. always run in private browsing mode) in firefox/tools > options > privacy. this will be corrected in the upcoming firefox release.

  • I am getting error while calling FNDCPPROGRAMPAGE from OA page

    Hi,
    I need to submit a concurrent request with user
    given parameters from an OA page.
    Here is the codepart written in CO.....
    HashMap params = new HashMap();
    String url = "OA.jsp";
    params.put("akRegionApplicationId", "0");
    params.put("akRegionCode", "FNDCPPROGRAMPAGE");
    params.put("programApplName", "AHL");
    params.put("programName", "AHLUMATF");
    params.put("programDesc", "Build Material Stream for Planned
    Maintenance");
    params.put("programRegion", "Show");
    params.put("parameterRegion", "Show");
    // params.put("scheduleRegion", "Show");
    // params.put("notifyRegion", "Show");
    // params.put("printRegion", "Show");
    //params.put("requestMode", "DEFERRED");
    try {
    pageContext.setForwardURL(url,
    null,OAWebBeanConstants.KEEP_MENU_CONTEXT, null,
    params, true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAWebBeanConstants.IGNORE_MESSAGES);
    catch (Exception e)
    throw new OAException("SetDeferredException " +
    e.getMessage(),OAException.ERROR);
    I am getting the request page with the following errors
    "Could not create webbean, could not create item metadata item Name
    (FndCpLanguageTable); Region: (FNDCPPROGRAMSTATION);"
    "Could not create webbean, could not create item metadata item Name
    (FndCpCopyRequest); Region: (FNDCPPROGRAMCONTAINER);
    Please advise me, is there anything missing in code or what could be
    done to resolve the error.
    Thanks in Advance for your help.
    Regards,
    Balaji

    Hi,
    you can use this code...
    import oracle.apps.fnd.cp.request.ConcurrentRequest;
    import oracle.apps.fnd.framework.server.OADBTransaction;
    public int submitCPRequest(Number headerId) {
    try {
    OADBTransaction tx = (OADBTransaction)getDBTransaction();
    java.sql.Connection pConncection = tx.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(pConncection);
    String applnName = "PO"; //Application that contains the concurrent program
    String cpName = "POXXXX"; //Concurrent program name
    String cpDesc = "Concurrent Program Description"; // concurrent Program description
    // Pass the Arguments using vector
    // Here i have added my parameter headerId to the vector and passed the vector to the concurrent program
    Vector cpArgs = new Vector();
    cpArgs.addElement(headerId.stringValue());
    // Calling the Concurrent Program
    int requestId = cr.submitRequest(applnName, cpName, cpDesc, null, false, cpArgs);
    tx.commit();
    return requestId;
    } catch (RequestSubmissionException e) {
    OAException oe = new OAException(e.getMessage());
    oe.setApplicationModule(this);
    throw oe;
    Now to go to the Monitoring page.
    set the forward url to
    String url = "OA.jsp?akRegionCode=FNDCPREQUESTVIEWREGION&akRegionApplicationId=0";
    try {
    pageContext.setForwardURL(url,
    null,OAWebBeanConstants.KEEP_MENU_CONTEXT, null,
    params, true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAWebBeanConstants.IGNORE_MESSAGES);
    catch (Exception e)
    throw new OAException("SetDeferredException " +
    e.getMessage(),OAException.ERROR);
    }

  • ITunes on my phone is no longer playing some songs, even those I have purchased with my phone.  They will play fine on my pc itunes.  I also cannot remove the audio books that are on my phone and add others and the audio books on my phone will not play.

    I am unable to play new songs purchased on my phone and some old songs on my ipod/iphone.  They all work fine in iTunes on my computer.  I also cannot remove the audiobooks from my phone when I sync even though I have unchecked said books, and I cannot play them either.

    C Mawle wrote:
    Thanks.  I have followed all the instructions as recommended and nothing has worked so it looks like the restore/update may have been interrupted - would loss of internet connection do this?
    Yes it would, possibly even brick it.
    Have successfully connected my ipod nano with iTunes so looks like the device driver is working.
    Can I use my ipod nano USB connector to check?
    It is not much help to you, since the device that you need still not recognized.
    Anyway looks like I may have to swallow the loss of data.  Have set-up a call for tomorrow with Apple support so will wait until after this before doing the factory restore!
    Good luck, but if you expect miracle from that call good luck again.

  • HT1766 My Ipad is currently frozen and the msg on the screen is that my Ipad has not been Backed up for 5 weeks, i can't turn it off to restart neither can i use it, what do i have to do?

    My Ipad os frozen and i can't use it at all....i'm really frustrated and i need help

    Do a hard reset by holding down the power and home buttons for 10+ seconds.  You'll know it worked when the screen goes black and the Apple logo appears.

  • How to turn off 3G while open 2G for iphone 4s?

    How to turn off 3G while open 2G for iphone 4s?

    Apple removed the ability to disable 3G on the iPhone 4S. iOS 5.1 beta has added the switch back. Whether we'll see it in the final release is unknown. We'll just have to wait & see.

Maybe you are looking for