How to maintain transparency background for Photostream

I am trying to get some product images on a television using Apple TV.  I have them all up, but I am having aheck of a time keep the transparent background.  I have tried PNG file, TIFF file, and of course I did check the "keep transparency" box when saving in Photoshop.  I just cannot figure it out.  What do you guys think? How do I get them working?

I  guess  it will be SU12 Transaction.
Thanks
Seshu

Similar Messages

  • How to save transparent background images to have transparent background thumbnails with Photoshop 2014?

    In old versions of Photoshop there was a feature that made thumbnail images have a transparent background.  I'm a CC member using Photoshop 2014 on a MacBook Pro running OS X 10.9.4 and every thumbnail of a transparent background image I've created in Photoshop 2014 appears on my desktop with a solid white box background that has a thin black outlined box inside of it.  How do I save the transparent background images I've created in Photoshop 2014 so they will appear on my desktop as thumbnails with a transparent background?   I'd like to continue to be able to replace the default background-less folder icon that that appears on files with transparent background thumbnails to customize my files as I use to do with older versions of Photoshop.

    If your layered document has a Photoshop background layer it visibility need to be set off when saving a PNG or Gif file for Photoshop background layers do not support transparency.
    Thumbnail may be a bit more complicated than you think. I do not use Lightroom, and only occasionally use the bridge.  I believe Lightroom and Bridge  keep thumbnails they develop for image files  in their library databases and caches.  Other programs do not have acces to  these.  RAW Files and Image files have Jpeg previews stored in then.  I believe most application use these previews jpeg to create thumbnails.  Jpeg format does not support transparency.
    Icon on the desktop are not always thumbnails some are embedded icons in application modules other are icon in dll these may well have transparency. However image file on the desktop have generated thumbnails.  However you can create a shortcut for an image png file and create a icon with a transparent background for the png file and change the shortcut's icon for the png file to the transparent ico file you created for it.
    Also many Photoshop release ago an Adobe module created Thumbnails for image files in Windows File explorer and most likely system file dialog. Adobe stopped supporting that stating Microsoft changes how windows works.
    Today I use FastPictureViewer Codec Package to generate image thumbnails for image files including RAW and PSD files in File Explorer and system file dialogs.
    I don't use a Mac don't know what available for your Mac.

  • Transparent background for png sequences

    I have a 30 sec cube rotating with transparent background in After effect cs 5-5.. But I am getting png sequence with Black ground. How to get Transparent background in png sequence ?

    Thank you Barsik.. In after effect cs 4 I was geeting Transparent background for png sequence but in after effect cs 5-5 I was geeting Black Background and this was creating problem in premiere..

  • Transparent background for an accordion in Captivate 6

    How do I remove the background and the shadow from an accordion on interactions? I need a transparent background for an accordion.
    P.S.: I'm not interested in purchasing the version 7, I believe that such a basic thing as this must have been provided for version 6.

    It is not possible, neither in Captivate 7. You take or leave the interactions as they are.

  • Turn off transparent background for reading in Adobe Reader X 10.1

    Up until yesterday, I did not see a transparent background for all things in Adobe Reader X 10.1.  This makes for very annoying reading.  How do I turn off the transparent background?  Any help is greatly appreciated. Thanks!

    If you're talking about the transparency grid, check the following user preference: Edit > Preferences > Page Display > Page Content and Information > Show transparency grid

  • How to set a   background for jFrame?

    Hai.i have a code for background image.i.e
    * TextOver.java
    * Created on June 23, 2008, 1:53 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class TextOver
    private static final String IMAGE_PATH =
    "http://upload.wikimedia.org/wikipedia/commons/b/b5/HMS_Cardiff_%28D108%29_1.jpg";
    private BufferedImage image;
    private JTextArea textarea = new JTextArea(20, 40);
    private JPanel mainPanel = new JPanel()
    @Override
    protected void paintComponent(Graphics g)
    super.paintComponent(g);
    if (image != null)
    g.drawImage(image, 0, 0, this);
    public TextOver()
    URL imageUrl;
    try
    imageUrl = new URL(IMAGE_PATH);
    image = ImageIO.read(imageUrl);
    Dimension imageSize = new Dimension(image.getWidth(), image.getHeight());
    mainPanel.setPreferredSize(imageSize);
    JScrollPane scrollpane = new JScrollPane(textarea);
    textarea.setOpaque(false);
    scrollpane.setOpaque(false);
    scrollpane.getViewport().setOpaque(false);
    mainPanel.add(scrollpane);
    catch (MalformedURLException e)
    e.printStackTrace();
    catch (IOException e)
    e.printStackTrace();
    public JPanel getPanel()
    return mainPanel;
    private static void createAndShowGUI()
    admin_login_code a=new admin_login_code();
    a.setVisible(false);
    JFrame frame = new JFrame("TextAreaOverImage Application");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().add(new TextOver().getPanel());
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(false);
    public static void main(String[] args)
    javax.swing.SwingUtilities.invokeLater(new Runnable()
    public void run()
    createAndShowGUI();
    i want to give this backgground to my existing jFrame something like
    import java.sql.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class admin_login_code extends javax.swing.JFrame {
    String admin_name;
    String password;
    Connection con;
    Statement stmt;
    ResultSet rs;
    public admin_login_code() {
    initComponents();
    jPasswordField1.addKeyListener(new KeyAdapter() {
    public void keyTyped(KeyEvent e) {
    char c = e.getKeyChar();
    if (!(Character.isDigit(c) ||
    (c == KeyEvent.VK_BACK_SPACE) ||
    (c == KeyEvent.VK_DELETE))) {
    getToolkit().beep();
    e.consume();
    jFormattedTextField1.addKeyListener(new KeyAdapter() {
    public void keyTyped(KeyEvent e) {
    char c = e.getKeyChar();
    if (!(Character.isLetter(c) ||
    (c == KeyEvent.VK_BACK_SPACE) ||
    (c == KeyEvent.VK_DELETE))) {
    getToolkit().beep();
    e.consume();
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
    jLabel1 = new javax.swing.JLabel();
    jPanel1 = new javax.swing.JPanel();
    jLabel2 = new javax.swing.JLabel();
    jFormattedTextField1 = new javax.swing.JFormattedTextField();
    jLabel4 = new javax.swing.JLabel();
    jPasswordField1 = new javax.swing.JPasswordField();
    jPanel2 = new javax.swing.JPanel();
    jButton1 = new javax.swing.JButton();
    jButton3 = new javax.swing.JButton();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jLabel1.setFont(new java.awt.Font("Tahoma", 1, 36));
    jLabel1.setForeground(new java.awt.Color(255, 0, 0));
    jLabel1.setText("ADMIN LOGIN");
    jLabel2.setFont(new java.awt.Font("Tahoma", 1, 24));
    jLabel2.setText("Admin Name");
    jFormattedTextField1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jFormattedTextField1ActionPerformed(evt);
    jLabel4.setFont(new java.awt.Font("Tahoma", 1, 24));
    jLabel4.setText("Password");
    jPasswordField1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jPasswordField1ActionPerformed(evt);
    org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
    jPanel1.setLayout(jPanel1Layout);
    jPanel1Layout.setHorizontalGroup(
    jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jPanel1Layout.createSequentialGroup()
    .add(39, 39, 39)
    .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jLabel4)
    .add(jLabel2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 161, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
    .add(43, 43, 43)
    .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jPasswordField1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 190, Short.MAX_VALUE)
    .add(jFormattedTextField1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 190, Short.MAX_VALUE))
    .addContainerGap())
    jPanel1Layout.setVerticalGroup(
    jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jPanel1Layout.createSequentialGroup()
    .add(47, 47, 47)
    .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
    .add(jLabel2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 34, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .add(jFormattedTextField1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
    .add(60, 60, 60)
    .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jLabel4)
    .add(jPasswordField1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
    jButton1.setText("Login");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    jButton3.setText("Exit");
    jButton3.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton3ActionPerformed(evt);
    org.jdesktop.layout.GroupLayout jPanel2Layout = new org.jdesktop.layout.GroupLayout(jPanel2);
    jPanel2.setLayout(jPanel2Layout);
    jPanel2Layout.setHorizontalGroup(
    jPanel2Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel2Layout.createSequentialGroup()
    .add(38, 38, 38)
    .add(jButton1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 93, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 110, Short.MAX_VALUE)
    .add(jButton3, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 93, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .add(55, 55, 55))
    jPanel2Layout.setVerticalGroup(
    jPanel2Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jPanel2Layout.createSequentialGroup()
    .add(38, 38, 38)
    .add(jPanel2Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
    .add(jButton3, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 32, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .add(jButton1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 32, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
    .addContainerGap(30, Short.MAX_VALUE))
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(layout.createSequentialGroup()
    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(layout.createSequentialGroup()
    .add(574, 574, 574)
    .add(jLabel1))
    .add(layout.createSequentialGroup()
    .add(459, 459, 459)
    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING)
    .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .add(jPanel2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))))
    .addContainerGap(521, Short.MAX_VALUE))
    layout.setVerticalGroup(
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(layout.createSequentialGroup()
    .add(149, 149, 149)
    .add(jLabel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 66, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .add(43, 43, 43)
    .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .add(42, 42, 42)
    .add(jPanel2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
    .addContainerGap(250, Short.MAX_VALUE))
    pack();
    }// </editor-fold>
    private void jPasswordField1ActionPerformed(java.awt.event.ActionEvent evt) {
    private void jFormattedTextField1ActionPerformed(java.awt.event.ActionEvent evt) {                                                    
    private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    Object src=evt.getSource();
    if(src==jButton3)
    dispose();
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    Object src=evt.getSource();
    if(src==jButton1)
    admin_name=jFormattedTextField1.getText();
    password=jPasswordField1.getText();
    try
    Class.forName("oracle.jdbc.driver.OracleDriver");
    con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcle","scott","root");
    stmt=con.createStatement();
    rs=stmt.executeQuery("select admin_name,password from admin_registration where admin_name='chandana' and password='8989' ");
    while(rs.next())
    if(admin_name.equals(rs.getString(1))&&password.equals(rs.getString(2)))
    admin_registration a=new admin_registration();
    a.setVisible(true);
    dispose();
    else
    JOptionPane.showMessageDialog(null,"Please enter admin name & password ");
    catch(ClassNotFoundException e)
    e.printStackTrace();
    catch(SQLException e)
    e.printStackTrace();
    public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    admin_login_code a=new admin_login_code();
    a.setVisible(true);
    // Variables declaration - do not modify
    private javax.swing.JButton jButton1;
    private javax.swing.JButton jButton3;
    private javax.swing.JFormattedTextField jFormattedTextField1;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JLabel jLabel2;
    private javax.swing.JLabel jLabel4;
    private javax.swing.JPanel jPanel1;
    private javax.swing.JPanel jPanel2;
    private javax.swing.JPasswordField jPasswordField1;
    // End of variables declaration
    Can any one can help me how to set a background for jFrame?
    Thank you in advance.
    Edited by: forums.com on Jul 14, 2008 1:40 AM

    90% of the code you posted is not relevant to your question.
    If you want further help post a Short, Self Contained, Compilable and Executable, Example Program (SSCCE) that demonstrates the problem.
    And don't forget to use code tags when posting code.

  • Want to create an oval vignette in photoshop elements 10 with transparent background for printing w

    I am fairly new to PSE and I want to create an oval vignette in Photoshop Elements 10 with transparent background for printing on white paper using MS Publisher. Using the white background on inverse selection makes a slight line impression and either it should have a defined "frame" or nothing.
    Appreciate any guidance.

    Try with the Elliptical marquee tool:
    On the tool's option bar set feather 25-40 px (experiment)
    Drag out the Ellipse to embrace the object
    Go to Layer>new>layer via copy, or CTRL+J
    Your selection should fade out as a vignette and be surrounded by transparency
    Save this layer via File>save for web, select PNG-24, and tick "Transparency"

  • Transparent Background for Icon Titles in panel2

    right now I use XFCE4 and I read this section
    https://wiki.archlinux.org/index.php/Xf … con_Titles
    this way for desktop icons ,but  i want Transparent Background for Icon Titles in panel 2
    my icons in panel 2 has white backkground and border ,I want have only icons without white background and border

    henk wrote:According to this topic it is something that can be
    adjusted within the used theme itself.
    Check your /home/<your username>/.themes/<theme>/gtk-*/gtkrc
    thanks,
    I check above link before ,but that post in xfce formus do not solve my problem,
    Last edited by mfaridi (2013-07-21 10:32:02)

  • How to maintain master record for a user before assigning it to group?

    Hi!
    how to maintain master record for a user before assigning it to group?
    I am in SQ03 and would like to assign user to a group, but SAP sais that my user has no user master data... where it is maintained?
    Help will be appreciated,
    Mindaugas

    I  guess  it will be SU12 Transaction.
    Thanks
    Seshu

  • SWF movies Transparent BackGround for TV How?

    I wanna run my SWF ADS Banner for TV with Transparent
    Background, I am unable to do,
    all Banners are runing with default white Background, How I
    gonna solve that problem
    I am using speacial video editing software: via builder ,
    from here I transfer/export/republish the SWF file to file.via,
    than from chracter genrater inscriber hardware that through
    VB made program that display and complile the .via file to run on
    TV screen, but in TV screen I wanna use trasparent BG of SWF,

    You need to use a mask on the banner. This will make the rest
    of the layers under the mask layer transparent.
    So what you need to find is info on masking in flash, if the
    ads move you will need to look for animated masking info.

  • How to make a transparent background for logo

    I've tried creating a transparent backgound for a logo in Photoshop CS4 in numerous ways such as saving the file as a png and using the magic wand (text resolution was very poor) but neither worked. My logo has text and an image.
    Any ideas?
    Thanks.

    I saved the file as a png and the background was not transparent--that is, it retained the white background. Please see the attached image for the pgn settings. In additon to a low resolution web version, I need to save a high resolution version for print.

  • How can you make a psd gif  have transparent background for use in photoshop ?

    Hi Guys
    I'm trying to produce a 2d animation within premier pro cc using photoshop cc and
    i was just intrested if there is some way of changing a gif's  standard background to 
    a transparent background which i can then import  into premier pro cc to produce a 2d animation
    Thanks

    every time i export the image lots of tif files pop up on my desktop is there a more simpler way of producing a file which i can drag and drop into premier pro as an animation with a transparent background ?

  • Rendering transparent background for website video

    I have a comp for a website that I'm doing.
    I have a transparent background and some fading in WHITE text with a light ray animated behind it.
    I have followed instructions on how to render with the transparency intact (Quicktime, PNG, RGB+Alpha, Millions of Colors+).  When I render it out and watch it in Quicktime, the light ray isn't correct and there's no transparency.  Same thing with Final Cut Pro. 
    When I bring the footage back into AE, the transparency is there so I'm assuming that the transparency is there but QT & FC just don't play transparency files.
    I need the transparency bc I want the text to reveal over a background picture I have in my webpage design.
    Is there anyway to get this done right?  I need the file to NOT be 300+ megabytes and when I drag the clip into COMPRESSOR to make it smaller, nothing is showing on the preview screen.  I've been doing some research but haven't found anything to make it work correctly.
    Can someone help me with this?
    In the end, what I'm attempting to do is add the QT video into my iWeb page and have it play. I'm not a coder so I don't know how to make this happen any other way than making a QT movie and then adding it iWeb.
    thanks in advance.

    The only video format that supports transparency in a web browser is a flash player. That really doesn't fully support transparency either. The QuickTime player or any other video player will never ever support transparency in a web browser. Your project design is flawed from the outset. Another words you cannot do what you are trying to do using QuickTime. You will have to redesign for flash. If you redesign with flash, then you will not have a mobile compatible application.
    I don't have much of an explanation of what you are trying to accomplish with your project so I can't give you more pointers than that. Point us to a website that has the features you are trying to implement on your webpage and maybe we can give you some ideas but After Effects is not where you should be looking.

  • Saving image with transparent background for web/Dreamweaver

    How do I save a little image, so that the background stays transparent. I already have the image set up in Photoshop with a transparent background and have saved it as gif and png. When I import it into Dreamweaver the background stays white instead of transparent. What am I not doing right, since I read several posts saying that png and gif are the right formats to save in, if you want a transparent background?
    Thanks for any help with this,
    Anne

    Well now that you have told me to save with some sort of an alpha channel, it works perfectly.
    In CS5:
    Select layer,"Composition,Make movie". Then navigate to "Output module" and choose an option that has "alpha channel" in the title.Choose a name for your project "Output to". I now use "lossless alpha".I don't know if that is the best one, but it seems to be working fine.
    There is no "Quicktime" option in CS5 as in older versions of AE.
    I was trying to save as a video in general or for photoshop and that just wasn't working out well.
    I don't know what the "Frames to Layers import assistant" is that you mentioned though. I still tend to drag and drop, rather then import.
    Thanks for your help.

  • Transparent background for Quick Look thumbnail

    I am writing a Quick Look plug-in and would like to generate a thumbnail with a transparent background.
    If I simply create a graphics context, flush it and exit, I see a solid white square for relevant file icons and Quick Look previews. I can find no way to clear the canvas to transparent - I can paint the contents of my thumbnail onto it just fine, but everything is composited to the white background.
    For example, the following implementation(ish) of GenerateThumbnailForURL results in solid white squares for thumbnails:
    CGContextRef context = QLThumbnailRequestCreateContext(
    thumbnail,
    CGSizeMake(512, 512), /* (For example) */
    false, /* Changing to 'true' for vector context makes no difference */
    NULL
    QLThumbnailRequestFlushContext(thumbnail, context);
    CFRelease(context);
    return noErr;
    Various combinations of CGContextClearRect with and without wrapping the call in CGContextBeginTransparencyLayer and CGContextEndTransparencyLayer, or trying to use CGContextFillRect having set a colour which is fully transparent, have all failed. The solid white background just shines through.
    Am I going about this the wrong way (e.g. should I instead try to generate an image with a mask and send this to Quick Look with, say, QLThumbnailRequestSetImage ?) or is there some Magic Call that I should be using?
    Thanks...

    This isn't nearly as intuitive as I think this should be.
    You're right, video is really hard.
    Looking back over your thread, it's entirely possible the movies have transparency, you're just not looking at it properly, which is, granted, confusing. But alpha channels are not fundamental to video editing, they're special types of clips and you need to learn how to create and use them.
    Motion is set by default to render to the Animation codec but may not be set to millions of colors +, the + sign is the alpha.
    And, no, sorry, it can't be explained in a simple step-by-step post. There are fifty or a hundred pages on alphas in the Motion documentation. Start with the explanation of the Animation codec.
    bogiesan
    bogiesan

Maybe you are looking for

  • Outlook 2011 w. Exchange 2010 - deliver mail to local inbox?

    Hi all. I have a problem with a MacbookPro (OSx 10.6.8, fully updated) and Outlook 2011 (14.2.5, fully updated) using an account on a Exchange 2010 server. Mails sent directly the users e-mail address, is delivered to a local Inbox and is therefore r

  • Implementing abstract methods

    Hello guys, I have a LPQueue class that implements a interface PQueue Here are the fiels: //PQueue interface import java.util.Iterator; interface PQueue<E extends Comparable<E>>   public void insert(E x);   public E peekMax();   public E deleteMax();

  • Help needed with focusing camera

    I have a new 3GS and I am not satisfied with the quality of photos----I could use suggestions on how to focus the camera----yes I am tapping the screen to focus the camera---I am guessing there are "tips and tricks" to get a quality photo BEFORE load

  • Gifting an iPhone application

    I have one question concerning gifting an applications. If the person who I gift the application already have the application, will I get my money back? Or can he spend this money in another app? Thanks in advance.

  • Why are people recieving my messages from my e-mail instead of just my name in their contact book?

    When I send someone a message on iMessage, on their phone the name comes up as my email address instead of my name in their contact list, and it is seperate from the message that they sent me via imessage. How can I fix this?