MovieClip disappears from stage when printing

Hi,
I am printing a parent moviclip which is on stage and has many child movieClips with linked classes having all single frames.When I try to print by passing it to printObject which is in external class few things happend as:
1. the object is printed but moviclip is removed from stage
2. also the dynamic text labels are not printed
3.the size is smaller than the original.
how to get to resovle these issues to obtain good print out from flash cs5 using AS
Any help is appreciated
srini

the only way i know to obtain pixel-perfect printing is to instantiate your printjob and using its pageWidth and pageHeight properties, (re)construct the pages you want printed, print and finally ready the no-longer-needed newly constructed pages for gc.

Similar Messages

  • Button Disappears from Stage

    I’ve created a two buttons in a frame labeled
    “child.” The instance name for one button is
    “orientationBtn” and the other is
    “stepBtn.” When you click on the orientationBtn you are
    taken to a frame labeled “orientation” which holds a
    puzzle written in AS3. When the puzzle is complete, two more
    buttons appear. One button (playAgain) will reset the puzzle to
    play again. The other button (noThanks) is a
    gotoAndPlay(“child”) so the user can return to the
    menu.
    If the user presses a certain sequence of buttons –
    orientationBtn, completes the puzzle, noThanks they are taken back
    to the menu. If s/he then chooses to complete the puzzle again and
    presses the same sequence of buttons, the following error message
    appears after pressing the noThanks button - TypeError: Error
    #1009: Cannot access a property or method of a null object
    reference. Interestingly, the null object is that my
    “stepBtn” has disappeared from the stage. Any ideas why
    this would happen?

    Of course. I should have done that initially. Sorry! You will
    see that the noThanks button appears in the function
    puzzleSolved at the very bottom of the code.
    var puzzlePiecesArr:Array;
    var puzzlePiecesFound:Array;
    var topDepth:Number;
    var totalPuzzlePieces:Number;
    var correctPuzzlePieces:Number;
    var puzzleBmp:BitmapData;
    var intervalID:Number;
    var threshold:Number;
    var imagesArr:Array;
    var imageLoader:Loader;
    var requestURL:URLRequest;
    var puzzleBoardClip:MovieClip;
    var holder:MovieClip;
    var dontPlayAgain:Button;
    var doPlayAgain:Button;
    init();
    function init(){
    dontPlayAgain = new Button();
    doPlayAgain = new Button();
    puzzleBoardClip = new MovieClip();
    addChild(puzzleBoardClip);
    totalPuzzlePieces = 8;
    imagesArr = new Array("polycom_200.jpg");
    puzzlePiecesArr = new Array();
    puzzlePiecesFound = new Array();
    correctPuzzlePieces = 0;
    threshold = 0xFFFFFF;
    noThanks.visible = false; //hides button
    playAgain.visible = false; // hides button
    congrats.visible = false;
    /* Create the image Loader */
    imageLoader = new Loader();
    imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,
    onLoadImg);
    /* Create the URL Request */
    var index:Number = Math.floor(Math.random() *
    imagesArr.length);
    requestURL = new URLRequest(imagesArr[index]);
    // Load the image
    imageLoader.load(requestURL);
    // Setup a holdery mc to hold the puzzle pieces
    holder = new MovieClip();
    addChild(holder);
    function onLoadImg(evt:Event):void{
    // Determine the width and height of each puzzle piece.
    // Each puzzle consists of 2 columns and 4 rows.
    var widthPuzzlePiece:Number = imageLoader.width / 2;
    var heightPuzzlePiece:Number = imageLoader.height / 4;
    // Draw the image from the movie clip into a BitmapData Obj.
    puzzleBmp = new BitmapData(imageLoader.width,
    imageLoader.height);
    puzzleBmp.draw(imageLoader, new Matrix());
    var puzzlePieceBmp:BitmapData;
    var x:Number = 0;
    var y:Number = 0;
    // Loop 8 times to make each piece
    for (var i:Number = 0; i < 8; i++)
    puzzlePieceBmp = new BitmapData(widthPuzzlePiece,
    heightPuzzlePiece);
    puzzlePieceBmp.copyPixels(puzzleBmp, new
    Rectangle(x,y,widthPuzzlePiece,heightPuzzlePiece), new Point(0,0));
    makePuzzlePiece(puzzlePieceBmp, i);
    x += widthPuzzlePiece;
    if(x >= puzzleBmp.width)
    x = 0;
    y += heightPuzzlePiece;
    makePuzzleBoard(puzzleBmp.width, puzzleBmp.height);
    arrangePuzzlePieces();
    function makePuzzlePiece(puzzlePiece:BitmapData, index:int){
    var puzzlePieceClip:Bitmap = new Bitmap(puzzlePiece);
    var tmp2:MovieClip = new MovieClip();
    tmp2.addChild(puzzlePieceClip);
    tmp2.name = String(index) // Added for Strict Mode
    holder.addChild(tmp2);
    holder.addEventListener("mouseDown", pieceMove);
    holder.addEventListener("mouseUp", pieceMove);
    puzzlePiecesArr.push(tmp2);
    // This is used to check if the same piece has been placed
    puzzlePiecesFound.push(tmp2.name);
    function pieceMove(evt:Event):void{
    if(evt.type == "mouseDown"){
    evt.target.startDrag();
    } else if(evt.type == "mouseUp"){
    evt.target.stopDrag();
    var puzzlePieceIndex:Number = evt.target.name;
    // ADDED VV 4.3. Check if droppped inside of the grid
    if(evt.target.dropTarget){
    var puzzleBoardSpaceIndex:Number =
    evt.target.dropTarget.name;
    if(puzzlePieceIndex == puzzleBoardSpaceIndex)
    var coordinate:Point = new Point(evt.target.dropTarget.x,
    evt.target.dropTarget.y);
    var coordinateGlobal:Point = new Point();
    coordinateGlobal =
    puzzleBoardClip.localToGlobal(coordinate);
    evt.target.x = coordinateGlobal.x;
    evt.target.y = coordinateGlobal.y;
    if(puzzlePiecesFound.length != 0)
    for(var i:int = 0;i < puzzlePiecesFound.length; i++)
    if(puzzlePiecesFound
    == puzzlePieceIndex)
    puzzlePiecesFound = "Correct";
    correctPuzzlePieces++;
    if(correctPuzzlePieces == totalPuzzlePieces)
    puzzleSolved();
    function arrangePuzzlePieces():void
    var widthPuzzlePiece:Number = puzzlePiecesArr[0].width;
    var heightPuzzlePiece:Number = puzzlePiecesArr[0].height;
    var locationArr:Array = new Array();
    locationArr.push({x:10, y:125});
    locationArr.push({x:10 + widthPuzzlePiece + 5, y:125});
    locationArr.push({x:10, y:125 + heightPuzzlePiece + 5});
    locationArr.push({x:10 + widthPuzzlePiece + 5, y:125 +
    heightPuzzlePiece + 5});
    locationArr.push({x:10, y:125 + (heightPuzzlePiece + 5) *
    2});
    locationArr.push({x:10 + widthPuzzlePiece + 5, y:125 +
    (heightPuzzlePiece + 5) * 2});
    locationArr.push({x:10, y:125 + (heightPuzzlePiece + 5) *
    3});
    locationArr.push({x:10 + widthPuzzlePiece + 5, y:125 +
    (heightPuzzlePiece + 5) * 3});
    var index:Number = 0;
    var coordinates:Object;
    while(locationArr.length > 0)
    coordinates = locationArr.splice(Math.floor(Math.random() *
    locationArr.length), 1)[0];
    puzzlePiecesArr[index].x = coordinates.x;
    puzzlePiecesArr[index].y = coordinates.y;
    index++;
    function makePuzzleBoard(width:Number, height:Number):void{
    var widthPuzzlePiece:Number = width / 2;
    var heightPuzzlePiece:Number = height / 4;
    var puzzleBoardSpaceClip:MovieClip;
    var x:Number = 0;
    var y:Number = 0;
    for(var i:Number = 0; i < 8; i++)
    puzzleBoardSpaceClip = new MovieClip();
    puzzleBoardSpaceClip.graphics.lineStyle(0);
    puzzleBoardSpaceClip.graphics.beginFill(0xFFFFFF,100);
    puzzleBoardSpaceClip.graphics.lineTo(widthPuzzlePiece,0);
    puzzleBoardSpaceClip.graphics.lineTo(widthPuzzlePiece,heightPuzzlePiece);
    puzzleBoardSpaceClip.graphics.lineTo(0,heightPuzzlePiece);
    puzzleBoardSpaceClip.graphics.lineTo(0,0);
    puzzleBoardSpaceClip.graphics.endFill();
    puzzleBoardSpaceClip.x = x;
    puzzleBoardSpaceClip.y = y;
    x += widthPuzzlePiece;
    if(x >= width)
    x = 0;
    y += heightPuzzlePiece;
    puzzleBoardSpaceClip.name = String(i); // Added for Strict
    Mode
    puzzleBoardClip.addChild(puzzleBoardSpaceClip);
    puzzleBoardClip.x = 400;
    puzzleBoardClip.y = 325 - puzzleBoardClip.height/2; //was
    200
    function puzzleSolved():void{
    holder.visible = false;
    var tmp:Bitmap = new Bitmap(puzzleBmp);
    puzzleBoardClip.addChild(tmp);
    noThanks.visible = true;
    playAgain.visible = true;
    congrats.visible = true;
    noThanks.addEventListener(MouseEvent.CLICK, clickDontPlay);
    playAgain.addEventListener(MouseEvent.CLICK, clickPlay);
    function clickDontPlay(evt2:MouseEvent):void
    trace ("remove board clip");
    removeChild(puzzleBoardClip);
    // evt2.target.stop();
    gotoAndPlay("child");
    function clickPlay(event:MouseEvent):void
    var timer:Timer = new Timer(50);
    timer.start();
    timer.addEventListener("timer", puzTrash);
    function puzTrash(evt:Event):void{
    if(threshold > 0xFFFFFF)
    threshold = 0xFFFFFF;
    evt.target.stop();
    init();
    puzzleBmp.threshold(puzzleBmp, new Rectangle(0,0,
    puzzleBmp.width, puzzleBmp.height), new Point(0,0), "<=",
    0xFF000000 | threshold);
    threshold *= 1.2;

  • IBook disappears from network when using Airport

    Hi there. Until recently my wife and her iBook have happily shared files back and forth with my Mini, and she has been able to use my shared printer. Now, when she's connected to the internet through our Airport Graphite, our computers no longer show up on each other's network, and she can't find my shared printer.
    I'm not sure if I have a software or hardware problem, but I can't figure it out on my own.
    We have two desktops (a Mini and an eMac) connected to a cable modem through an ethernet hub. The Airport Graphite is also connected to the hub. The Airport is configured to distribute IP addresses, and ethernet client computers also share a single IP address (using NAT).
    If we unplug the ethernet cable from our eMac and plug it into my wife's iBook, the iBook and Mini can once again "see" each other, and my wife can access my shared printer. When we unplug the ethernet from the iBook and go back to using the Airport, the iBook can still access the Internet, but it disappears from the local network.
    I'm hoping there's a simple explanation that I'm missing. I'd be grateful for some help!
    Mac Mini 1.2 GHz   Mac OS X (10.4.8)  

    Thanks so much for responding, Tesserax.
    My hub is a "Linksys 5-Port Workgroup Hub," model EW5HUB.
    The cable modem is plugged into the port called "Uplink." The Mini is plugged into port 1, the eMac into port 2, and the Airport into port 3.
    The network has functioned properly in the past (the iBook used the printer plugged into the Mini, and we shared files back and forth). Recently, I had to reset the Airport, but I thought I had reconfigured it correctly. In short, Airport configuration would be my main suspect here.
    I'm afraid I don't know what (if anything) is supplying NAT service. I assumed it was something the Airport does -- allowing it to sort out the flow of data to the various computers. The question is beyond my expertise level because I don't really understand what NAT service is. Is the problem in my Airport's Network configuration?
    My ISP assigns IP addresses dynamically, so my Airport doesn't have a static IP address. However, my ISP allows for only two IP addresses, so I need my ethernet computers to also share the Airport's address.
    I hope that, somewhere during my ramblings, a light has gone off in your more enlightened mind. Thanks again for your help!

  • Exchange tasks disappear from Outlook when they appear on the Pre

    I am using EAS on my pre, with Outlook 2007 (and Exchange Server 2007).  In Outlook, I use the calendar weekly view which shows the tasks at the bottom on the day they are due.  My pre has synced without any trouble.  However, when the reminder for a task shows up on my pre, the task disappears from my calendar in Outlook.  It is still in my master task list and to-do bar, but doesn't show up "on the day it's due".  Once I've completed the task, it shows back up on the calendar, marked as completed.  I see all future tasks on the calendar as usual until the reminder shows up.  I was trying to see if I could sync via EAS, without syncing tasks, as a possible solution, but haven't found a way to do that.  Has anyone else encountered this?
    Post relates to: Pre p100eww (Sprint)

    Hi Joseph,
    Could the emails be deleted via OWA and not displaying in Outlook?
    Please try to create a new profile and set it to online mode, then test the issue and see if it still appears in OWA.
    If it doesn’t work, I’d recommend you contact with Exchange admin for further troubleshooting.
    Regards,
    Rebecca
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Recordsets disappear from menu when adding mysql_query ("SET NAMES 'utf8'"); below the connection in php

    I hope someone can help with this. I'm trying to create a
    dynamic site using dreamweaver CS3, with php5 and mysql5 in the
    background but I'm having difficulty with recordsets disappearing
    from the server behaviour menu when tweaking the code to allow set
    characters or set names for utf8.
    For a while, I've been having a problem getting my
    dynamically generated master list pages (eg lists of jobs) to
    display international characters like an accented french e (and
    other languages) and for these to display correctly when viewed in
    phpmyadmin also. So, I've placed headers at the top of the page for
    utf8 and created the content metatag for utf8 in the page code.
    Where needed I've added ENT_QUOTES utf etc for htmlentities and
    added accept-charset utf-8 in the <form> action area.
    (one thing I haven't done in the form action area is add
    <enctype="multipart/form-data">, but I'm not sure if this
    will make any difference)
    In the backend, the innoDB database is collated and built
    using utf8_unicode_ci. I'm on a shared host -so can't directly
    access php.ini or adjust the connection settings through
    phpmyadmin. But I can write .htaccess files (currently with the
    defaultcharset set to utf8 also).
    At this point - all list pages display the correct characters
    when retrieved from the database - indicating that the headers are
    working. But - in phpmyadmin the letters are garbled, and garbled
    on return on update forms (content management). I solved this by
    adding the &#xxxx; equivalents in insert and update forms to
    display the text correctly on the list pages - but again it's not
    convenient to see all of this in phpmyadmin, as I'd like to be able
    to read it there as it should be, and to dispense with the need to
    add &#xxxx references on the insert and update forms.
    So...a bit of searching, and I read that in order for the
    international characters to display in phpmyadmin correctly, I
    needed to amend my php page code so that for all instances where I
    see the connection to the database, before the SELECT, INSERT and
    DELETE queries, I need to add either mysql_set_charset('utf8',
    $connection) or use three lines of code referencing mysql_query SET
    NAMES, SET CHARACTER SET and SET COLLATION_CONNECTION for utf8.
    I did that, and it removed all of my recordsets in the
    sidebar menu! Not too good. I'm left with a task of rebuilding
    pages now.
    So I placed the mysql_set_charset line in the connection.php
    file in the DW Connections folder below the connection there
    instead. [I didn't precede the mysql etc line with a $ sign - I
    wonder if that's the issue?]
    With this change I could use the Insert forms to add the
    international characters directly into the database and see through
    phpmyadmin that all was hunky dory. But then the problems came with
    first loads of the master list page.
    So, I can get international characters into the database now
    (which is a step in the right direction for me), using an insert
    form on the website, but I still can't get the international
    characters to display on the returned page on first loading eg on a
    list of jobs. Note that the detail pages display fine when clicking
    the master links, and when I return from the detail page back to
    the master list - the characters are ok. They just don't seem to
    display when the master page loads for the first time which is
    really perplexing me.
    I suspect that I need to add the mysql_set_charset line below
    the $connection and before the selects, inserts etc at all
    instances on the webpage, but this just removes the recordset from
    the menu, so this doesn't seem to be a good option.
    Can anyone point me in the right direction as I'm been stuck
    on this for ages. It may be something simple like adding $ in front
    of the mysql_query, but then again maybe not.
    I've tried other forums - but people seem to be content with
    viewing but not offering assistance. I don't believe that what I'm
    doing here hasn't been done before....all I want is for my pages to
    display international characters and for these to display correctly
    in phpmyadmin so that when I insert, update and delete records
    using webforms I don't have to resort to using &#xxx inserts.
    Help please!

    .oO(08Green)
    > So...a bit of searching, and I read that in order for
    the international
    >characters to display in phpmyadmin correctly, I needed
    to amend my php page
    >code so that for all instances where I see the connection
    to the database,
    >before the SELECT, INSERT and DELETE queries, I need to
    add either
    >mysql_set_charset('utf8', $connection) or use three lines
    of code referencing
    >mysql_query SET NAMES, SET CHARACTER SET and SET
    COLLATION_CONNECTION for utf8.
    Usually you only need to send a SET NAMES 'utf8' right after
    the
    connection to the DB has been established. That way all data
    that is
    transferred between the DB and your script will be handled as
    UTF-8.
    > I did that, and it removed all of my recordsets in the
    sidebar menu! Not too
    >good. I'm left with a task of rebuilding pages now.
    >
    > So I placed the mysql_set_charset line in the
    connection.php file in the DW
    >Connections folder below the connection there instead. [I
    didn't precede the
    >mysql etc line with a $ sign - I wonder if that's the
    issue?]
    I've never used mysql_set_charset().
    Here in my applications it always works like this:
    * the default charset in my InnoDB tables is ISO-8859-1, I
    only use
    UTF-8 in the columns that really need it (text data, but not
    INT or
    DATE columns)
    * SET NAMES 'utf8' at the beginning
    * all files (HTML and PHP) are encoded as UTF-8 without BOM
    * all pages delivered as UTF-8 (my pages are
    script-generated, so I use
    an appropriate header() call to define the content-type and
    encoding)
    That's it. Oh, and I don't use phpMyAdmin ...
    > With this change I could use the Insert forms to add the
    international
    >characters directly into the database and see through
    phpmyadmin that all was
    >hunky dory. But then the problems came with first loads
    of the master list
    >page.
    In the first part of your posting it sounded as if it worked
    almost
    correctly, before you tried to fix the broken phpMyAdmin
    appearance.
    Is that correct?
    > So, I can get international characters into the database
    now (which is a step
    >in the right direction for me), using an insert form on
    the website, but I
    >still can't get the international characters to display
    on the returned page on
    >first loading eg on a list of jobs.
    They did display correctly first, didn't they? So it seems
    that you
    broke your script just in order to fix some PMA problem.
    Revert that.
    Make your script work for normal input/output from/to a
    website first
    and don't worry about PMA for now.
    What do you need PMA for BTW? It may have many other issues
    as well and
    should only be used if really necessary or if you're not
    familiar with
    the command line interface. The only thing that we are using
    it is to
    get a dump from a remote DB, where I don't have shell access
    to call
    mysqldump directly (yes, I could also write a little PHP
    script for
    that, it's already somewhere on my TODO). But here on my
    local system I
    always use the MySQL command prompt if I have to directly
    work on some
    tables or to import the dump from remote.
    Anyway, if you need PMA, your might try their group or forum.
    I'm sure
    there's an FAQ as well. Maybe it's just a configuration
    issue.
    > I've tried other forums - but people seem to be content
    with viewing but not
    >offering assistance. I don't believe that what I'm doing
    here hasn't been done
    >before....all I want is for my pages to display
    international characters and
    >for these to display correctly in phpmyadmin so that when
    I insert, update and
    >delete records using webforms I don't have to resort to
    using &#xxx inserts.
    The bug here is PMA itself. ;-)
    Micha

  • Keyflex value disappears from page when lov event is fired

    Hi All,
    There is a keyflex field and one lov field in my page. When i select the value from kff and after that selecting any value from lov item my kff value disappears from page.
    Plz help asap.............

    Hitesh,
    Mukul, i can put my own Add another row button and do cusom code,but what about other events?
    Yes, see dev guide and old threads. It has been explained in dev guide claerly and have also replied this in old threads.--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Movies disappearing from AppleTV when iTunes not running

    I have synced my iTunes content to my AppleTV several times and have found that I continue to experience jerky playback of movies (AppleTV will pause to buffer data) and that the movies totally disappear from my AppleTV menu when I shut down iTunes. I believe that the movies files have been copied to AppleTV (ie I am not streaming the files). When I restart iTunes, it appears to need to re-sync only the movies with my AppleTV (music, Podcasts, and photos remain available on AppleTV while iTunes is not running). Please advise 1. why the poor flow when movie is playing on AppleTV and 2. why does it seem to need to keep re-syncing movies to the AppleTV?

    Hi Drew-Bob,
    iTunes should not have to re-sync your purchased movies if they transferred over correctly,
    You might want to try restarting the Apple TV, or restoring it. Information on how to perform this is in knowledge base article 305190 (http://docs.info.apple.com/article.html?artnum=305190).
    Cheers,
    John

  • Email disappearing from iPad when I download in iMac

    My wife is having the problem that looks like the ISP's (GCI.net) email server is deleting email from my iPad.
    With her iMac off, when she is traveling, she can download and read email on her iPad. All the email stays there, unless she intentionally deletes something.
    BUT, when she get home from a trip and goes to check email using Apple's Mail on her iMac, which is set to "Remove from server ...," she can WATCH as the email disappears from her iPad -- I have watched this. This has been very frustrating, as I have tried everything I can think of to no avail. My old PowerMac and my older iPod Touch has no problem with GCI email. I have gobs of savedemail on the iPod with the same Mail settings on the PowerMac (I do plan to upgrade to an Intel Mac, this fall, btw).
    Searching the web and here inthe Apple forums, I have so far not found anyone with this situation. It acts like the email content on the iPad is only what is on the GCI.net servers. When my iMac removes those, they disappear from the iPad. But, I seen no settings on the iMac or iPad that will fix this. I have tried everything I can think of.
    Her Gmail account works fine on her iPad.
    The iMac is set up with POP account. (As is my PMG5). The iPad was forced to set up a POP account (as a possible solution) for GCI email because the default IMAP is where we first discovered the issue of the server appearing to delete email from the iPad.
    Thanks in advance for your help.

    Some of the older 30-pin-to-USB cables have catches on the iPad end. The connector block on them extends further from the iPad than the ones without the catch; they are almost square. You have to squeeze the sides of the connector to disengage the catches.
    I'm not sure what being in iTunes has to do with it, though.

  • My library keeps disappearing from view when I open itunes

    I recently bought a laptop and have transferred all my music from my old PC computer to my laptop. I have noticed that when I open itunes from time to time my library has disappeared from view. It's annoying as I have to keep bringing my library back in from my music folder, importing my playlists and then the podcasts have to be resubscribed. It also means I keep losing my play counts and history. It has happened about 4-5 times now. Then when I restore the library and I link my classic ipod to sync all the content has to be reloaded, which all takes time. Is there something silly that I have not done. I have been searching to see where I am going wrong and now about to lose the plot alltogether! My laptop is using Windows Vista, my PC was Windows XP. Any help much appreciated. I'm sure it's something simple!

    Hello Goldie24,
    And welcome to Apple Discussions!
    I don't have any direct answers for you when it comes to this issue, but I can point you somewhere where others might. Check out this older thread. It may end up leading you to another older thread, but it should lead you to the solution needed for this issue.
    http://discussions.apple.com/message.jspa?messageID=9345281
    Hope this helps.
    B-rock

  • Emails disappear from inbox when forwarded

    I have an iPhone 4S with Verizon service. The phone was set up as new. When I forward an email from the inbox to someone, the original email being forwarded disappears from the inbox. In all other mail applications I have used, the original email stays in the inbox. Does anyone know of a way to fix this? Thanks.

    I'm running ios7 and this is still an issue.  Has nothing to do with organize by thread. 
    If you forward an email on a device, the original message disappears from your inbox - on any device (even my mac).
    I'm using a POP account.  I see several messages on this in the discussions but no resolution or acknowledgement from Apple.

  • My notes disappeared from mail when i upgraded to mavericks

    my notes disappered from mail when i upgraded to mavericks

    Hello question999,
    Notes are now located in a separate Notes application.
    iCloud: Notes overview
    http://support.apple.com/kb/PH12081
    Cheers,
    Allen

  • Colours differ from screen when printing

    Together with my Mac I bought Photoshop Elements9.  When printing the colours between the screen and the actual phot are vastly different. The printed colours are much darker.
    My printer is a HP Photosmart D5460 which I have been using with my Photoshop Elements 6 and a laptop before and never had any colour problems.
    Please can anybody help me.
    Crathes

    Is your monitor calibrated? For one thing, the current macs usually come with the monitor set to be very, very bright. Try reducing the brightness of the monitor and see if that helps. Also, be sure that you aren't double-managing color. Start by trying with the color management option in PSE set to Printer Manages Color, then make all your color, ink, paper, etc. choices in the OS X print dialog that opens AFTER you click Print in the Print window in PSE. If you decide then to try letting PSE manage color, make sure you turn color management off in the OS X print window.

  • Symbol disappear from stage after being created from an image

    Ok, first, I'm a beginner with Edge here, So I might be missing some obvious solution.
    I want to create a button. I simply change an image to symbol (as I want to animate the buttons).
    Once I do that and test it in preview, the symbol is gone. It never comes back. It's not put to
    'hide'. It's in the timeline...
    What am I missing?

    Hi Zaxist,
    Thanks for wanting to help! I was going put up the project but first I wanted to trouble shooting one last time.
    and... i got it to work!
    I'll put the problem here in case someone runs into this issue as a beginner.
    Steps to trouble shoot:
    There was no code put into the button, Just a simple button.
    I closed the project and made a new project just with an image and created the symbol. It worked. It was still there.
    Then I went back to the project. Turn off every layer except the symbol that disappeared. When everything was turned off, I ran the preview again and the symbol was back! Then I turned each layer back on, one by one... doing previews each step. It kept showing until the last part. then it disappeared again. I then looked at the symbol closely to compare what was different from the other layers.
    It was that every other layer used % instead of px at the position. The symbol used px as position and basicly jumped outside the stage.
    Silly mistake but I am started to understand Edge Animate. It seems that if you use %, it's best to keep consistant with it and not mix % and px in position/sizes for the layers.

  • Invisible lines showing and Disappearing in InDesign when Printed

    This problem does not happen in Adobe CS4 products and I recently switched to Adobe CS6 indesign and photoshop. I keep running to many problems (well its more than when I worked with CS4 products).
    I'm asking this because clients keep sending me horrible 72 dpi rasterized files. How do I deal with it if the program deals with this differently?
    I know this has been asked before I think but what if the files are coming from the client's side?
    The left circle is the original pdf file the client has sent me. The right circle is when I placed the file in Indesign CS6.
    Except that the logo is rasterized. The rest is vector.
    The left is rasterized, exported from indesign using 100 dpi. Usually my customers send in files that are 72 dpi. And then I have to manually create bleeds on them. The right is an exported pdf.

    What are you expecting? The original files you're getting are not suitable for print.
    that said, how are you outputting these files?

  • Random words disappear from pdf and printed page

    I work for a newspaper and we have had an ongoing problem from week to week of random words dropping off pages. It happens with the same font family each time but usually only occurs on one page a week. These fonts are used throughout the entire paper and has no problems in other places. The problem seems totally random. I usually send groups of pages (about 25)and the printer then extracts the pages.
    They say the words sometimes drop off when the pages are extracted in acrobat.
    I'm using indesign cs6, with the default "high quality print" setting. The font in question is the Knockout family from the Hoefler foundry. It is open type.
    Does anyone have a solution for this? We had an entire headline drop off last week resulting in the printer having to reprint the entire paper... Not so good.
    I have tried reinstalling the font but it has not helped.

    Yes I export directly from InDesign and then send the files via FTP after that. Once they receive the files, they they use the Document/Extract tool within Acrobat to separate the files. Apparently this is when they find that letters on the page have been replaced by X'd out boxes.
    Their fix is to open the orignal set of pages in Photoshop and rasterize the problem page. I would rather they don't do this so that we don't lose quality. Also, when fonts drop from the page, they can be easily overlooked by an unattentive printer.
    Thanks for your help!

Maybe you are looking for

  • Using Cover Flow, then resizing window

    I love cover flow for my finder windows, but every time I resize a window, it automatically makes the cover flow section increase in size. This drives me nuts; I'm always trying to increase the window size so I can see more options available to me in

  • R11:RECEIVED ERROR MESSAGES FOR AP INVOICE APPROVAL IN ORACLE WORKFLOW

    Hi All, We have this error: ### Detailed Problem Statement ### Received the following error messages in sysadmin notifications: Event Error Name: 100 Event Error Message: ORA-01403: no data found Event Error Stack: HZ_DQM_SYNC>REALTIME_SYNCH(oracle.a

  • Java error in XP (URGENT)

    HI all, I am working on a 3 tier software and it is running fine on all machines except one "The XP Machine", The problem is when i m going tru http://appserv:13000 it starts executing but in between an error comes that shows that some java thread or

  • Is Adobe not able to stop this SPAM?

    ?

  • Help: Can't delete email account in OSX Mail

    I have verizon.net email account that I had to update because verizon changed the incoming and outgoing servers. Each of my family members has a separate profile on my Mac and I was able to successfully update their settings. I have the admin account