Getting the correct color palette for mobile phones

Can someone help me getting the correct colors for the phones? I know there is 256 and occationally 4096 colors, but which are the valid ones?. I keep getting colors melting together since i am using the wrong palette, is it the "webb-safe" colors that are also in the phones? If anyone could please enlighten me I would be really happy, since otherwise I have to write a program that displays them in the emulator and then manually check the hex values to get the correct ones.
Thanks..
/Fnutten

Thanks for the answer, I have downloaded nokias emulators instead to view the colors ( 24bit ). If I someday compile for phones with lower colors I have to take care of it then instead.
/Fnutten

Similar Messages

  • How do I get an SVG file to the same color profile as my illustrator file (U.S. Web Coated (SWOP) v2 and what would be the correct color profile for printing on a shirt?

    How do I get an SVG file to the same color profile as my illustrator file (U.S. Web Coated (SWOP) v2 and what would be the correct color profile for printing on a shirt?
    Thank you.

    dadanas wrote:
    Hi Simcah, I have a similar problem. Have you found out any solution?
    thanks, dan
    You need to ask the printing service provider. Dealing with color totally depends on the printing process involved and of course the machines used.

  • Can't install the correct plug-in for my phone!

    Hello there,
    I have downloaded the correct plug in for my phone (Nokia E65) from nokia website mac section.
    During installation, the following error appears : ( Please update to the latest version of iSync using Software Updates )
    i have iSync 2.4 and it is the latest version of iSync that i can get, besides iSync 2.4 is the requirement as Nokia website says! so what is the problem!
    Edit: I have not changed the location of iSync, it is still in the Main Application and not in any sub folders.
    Thanks in advance.
    Message was edited by: flutooth

    Usually this error is caused by the Nokia installer not being able to locate the iSync application in its default location, in the main Applications folder.
    However, as you have already checked this there may be some other error in the installer. Try running the installer from an account with Admin privileges on your Mac.
    You could also try installing it manually using Pacifist. The plugin should be installed in:
    {Your Mac HD}/Library/PhonePlugins/
    (if that directory doesn't already exist, you can create it yourself.)

  • What is the correct Page Width for Mobile Device???

    Hi All
    Just have a question that "What is the correct Page Width for Mobile Device???"
    Is the Default 380px width is right? or 320px?
    Because the average smartphone is having resolution is 320X480 pixels...
    also in this video http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-designing-for-mobile-devices/ Dani Beaumont created the Mobile version website in 320px width (If you watch the video carefully you can notice the page width is 320px)
    And if the default page width 380px taken, will it be displayed correctly on every smart phone (average & high end)?
    please reply if you have any suggestions

    HI. I have designed a mobile web site that is currently 450pixels wide. This is the first one I have done. When it displays on some mobile phones, the width of the entire page is scaled down and it only fills about 1/2 of the width of the mobile phone with a whole pile of mrgin to the right. Is this because I should have designed it to be 380 pixes wide or have I done something else wrong. The test site is at:
    http://ancasterdental.com/muse/phone/index.html
    Please help me if you can. Thank you.
    john.

  • JRockit_160_05_R27.6.2-20 can not get the correct os name for windows 2008

    JRockit_160_05_R27.6.2-20 can not get the correct os name for Windows Server 2008 SP1 using System.getProperty("os.name").
    System.getProperty("os.name") will return Windows Vista instead of Windows Server 2008 when running on Windows Server 2008 SP1. Is it a bug of this jdk?
    I tested it on Sun JDK 1.6. It returns the correct name Windows Server 2008.
    Any suggestion will be welcomed. Thanks in advanced!
    Edited by: user4516182 on May 13, 2010 12:59 AM

    Staffan, thanks for your update.
    Do we have a workaround for it or fix it in new release?

  • I dont have and cant get the apple id password for my phone

    i dont have and cant get the apple id password for my phone

    till whenever i want my iphone give it back to me
    i was in Condong Catur Yogyakarta,
    my phone number +6287738546695
    i will block the imei if no progress in 1 week

  • I cant get the old appel id for my phone

    i need help getting the old apple id off my phone so i can use mine

    There is only one way to do this.
    Sign out of iCloud on the device. You will need to use the password for the Apple ID it's currently signed in as to do this. If you don't know it you will need to reset the password or get the original user to sign out.
    That is your only option. This is a security feature to prevent people stealing iPhones, erasing them and setting them up as their own.

  • How do i get the videos from my nokia mobile phone ?

    Hi i have a Nokia 6230i mobile/cell phone & i have a Scan Disk memory card in the phone,
    I also have a Mobile Card Reader which is USB but im really confused how to get my videos on the memory card to work with iMovie
    Can anyone help me with this issue please Thankyou

    When you see the files in the finder window, just select the files (Command + Click to select more than one) and drag-and-drop them onto a convenient place on your computer, such as your Desktop.
    From there, open up iMovie and from the "File" menu in the Menu Bar, select Import and then Import from File. Navigate to the files that you imported (for instance, on the desktop). Select the files you want to import (again, command + click selects multiple items). Choose whether you want the files to be moved to the iMovie media folder or copied (I normally choose move). Also, type in an "Event" name for the files to be organized under, as well as a location (the files will be copied/saved to an "iMovie" folder in the "Movies" folder of the drive you select).
    Then, wait for the files to import. This can take some time, depending greatly on your computers performance capacities, the number of clips you are importing, where you are importing them to, and the size of the files.
    Once import is complete, just click the Done button to finish.
    With that, you are able to start editing your movie.
    If you need any more help, or need a more visual way to see what to do, check out www.apple.com/findouthow and go under the "Movies" section for some video tutorials.

  • 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>

  • HT1267 HAVE SET UP AN INCORRECT EMAIL ADDRESS. The call centre set up a new email address as the Username. I am unable to access the new account because the default on my phone is the email that is incorrect. How do I get the correct email as default

    I HAVE SET UP AN INCORRECT EMAIL ADDRESS. The call centre set up a new email address as the Username. I am unable to access the new account because the default on my phone is the email that is incorrect. How do I get the correct email as default??

    Thank you for your help, much appreciated
    Regards
    Geoff

  • HT5312 Hello I have purchased the account from the shop for mobile phones and when Dgt a balance of $ 75 U.S. dollars tried to go down some programs, but ask me to answer questions and there have even when the shop is not accepted to give me any data abou

    Hello I have purchased the account from the shop for mobile phones and when Dgt a balance of $ 75 U.S. dollars tried to go down some programs, but ask me to answer questions and there have even when the shop is not accepted to give me any data about amyl which bearing correctly and password also trueThe name is true, how can I re-answer these questions??? replace phones is that Ahab Please give me the quick fix and sent the answer to Emile is:[email protected]

    Well I can't understand your english at all. If you need to reset your security questions, then try this:
     Account Security Team (AST) 
    Check the AppleCare number for your country here:
    http://support.apple.com/kb/HE131
    Call them up, and let them know you would like to be transferred to the Account Security Team.
    Or… click on the blue "Start your support request online" links.

  • Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How can I get the correct Ship To (KNVP-KUNNR2) for a Sales Document?

    I am trying to generate a report that will (among other things) display the Ship To ID and Name for a given Sales Document.  I know the following information:
    VBAK-VBELN - Sales Document
    VBAK-VKORG - Sales Org
    VBAK-VTWEG - Distribution Channel
    VBAK-SPART - Division
    VBAK-KUNNR - Sold To Party
    I know that the table KNVP will return a list of Ship-To Customer numbers (KUNNR2) for a Sold-To Customer (VBAK-KUNNR) if I also filter by VKORG, VTWEG, and SPART (using SE16N).  What I don't know is which one of the returned values is being used in a particular Sales Document.  The customer in question has 29 Ship-To locations.  How do I find out which Partner Counter (KNVP-PARZA) the Sales Document uses? I don't know where that value would come from.  Once I can get the correct Ship-To Customer Number, I should be able to search the table KNA1 by WHERE KUNNR = KNVP-KUNNR2 and return KNA1-NAME1 for the Name of the Ship-To location.

    For a sales document?  Use VBPA with PARVW = 'WE'.  Also, use the ADRDA field to determine whether the address on the document has been manually changed.  In any case, you can use one of the many address management functions or just ADRC directly to get the name, address, etc., using the ADRNR field from VBPA or if the address is from the customer master, KNA1.

  • Why cannot get the LR app in Adobe creative cloud? Now LR is a trial on my laptop and I am paying every month for CC. I am desperate, becaus I didn't get the solution. Also LR mobile I cannot intall it anymore.

    I hope I get the solution now after trying days and days  I am a member of CC and I pay every month. So why there is not a good helpdesk to communicate with.

    Thans alle. I will try this Tomorrowland
    Verstuurd vanaf mijn iPhone
    Op 10 mei 2014 om 19:10 heeft Simon G E Garrett <[email protected]> het volgende geschreven:
    Why cannot get the LR app in Adobe creative cloud? Now LR is a trial on my laptop and I am paying every month for CC. I am desperate, becaus I didn't get the solution. Also LR mobile I cannot intall it anymore.
    created by Simon G E Garrett in Photoshop Lightroom - View the full discussion
    Try this:
    Go to http://prodesigntools.com/adobe-cc-direct-download-links.html and download and install LR5.4 from there.
    You MUST follow the instruction under the heading "Note: Very Important Instructions".
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6371505#6371505
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Lightroom by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • I cannot watch video's in the mobile web without a currect flash player for mobile phone! what virsion of player i need?

    I can't watch video's in the mobile web without a currect flash player for mobile phone's. what do I need to do(what is the currect virsion)?
    If you have an answer just send it to me by e-mail!
    [email protected]

    If you find anything out please share.  I have flash projects (SWF) files created in Captivate 5 that play fine in Flash and Dreamweaver, but freeze up on the web in safari, firefox, opera and chrome.  Even files that used to play just fine.  This upgrade has been a nightmare - I have spent hours troubleshooting to no avail.  It does not seem to be a problem for windows users - only macs.

Maybe you are looking for