Having problem aligning images in slideshow

Thw slide show can be viewed here http://www.jimslounge.com/slideshow/bio.swf
The images are added to a background MovieClip they are set to align in the center both horizontal and vertical.  They usually do but often they are a little off and sometimes they are way off.  Pics are added tha a Sprite called holder then holder is added to the background MovieClip holderBG the problem occures in the displaySlide function.  I've noticed the alignment problem seems to go away when I create a new instance of holder there but when I do that the memory usage steadly climes higher with each new slide.
         import com.greensock.*;
         import com.greensock.easing.*;
        import flash.display.*;
        import flash.utils.*;
        import flash.events.*;
        import flash.net.*;
        var myFont:Font2 = new Font2();
        var externalReq:URLRequest = new URLRequest("bio.txt");
        var externalLoad:URLLoader = new URLLoader();
        var myFormat:TextFormat = new TextFormat();
        var bars:Bars = new Bars();
        var n:int = 0;
        var intCurrentSlide:int;
        var req:URLRequest;
        var holder:Sprite = new Sprite();
        var holderBG:HolderBG = new HolderBG();
        var loader:Loader;
        var rand:int;
        var nxtNum:int;
        var picNum:String;
        var slideCount:int;
        var xmlLoader:URLLoader;   // slideshow xml loader
        var xmlSlideshow:XML;  // slideshow xml
        var strXMLPath:String = "bioPics-data.xml";
        var slideName:String;
//        var history:Array = new Array();
         var duration:Number=.5;
        var prevSlide:String;
        var timeline:TimelineMax;
        addChild(holderBG);
        holderBG.x = stage.stageWidth / 2 - holderBG.width / 2;
        xmlLoader = new URLLoader();  
        xmlLoader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
        xmlLoader.load(new URLRequest(strXMLPath));
///////////// text setup ////////////////////                                           
        myFormat.font = myFont.fontName;
        myFormat.size = 14;
        myFormat.leading = 2.5;
        bioText.setStyle("textFormat", myFormat);
        bioText.setStyle("embedFonts", true);
        bioText.textField.alpha=1;
        externalLoad.load(externalReq);
        externalLoad.addEventListener(Event.COMPLETE, textReady);
/////////////text setup////////////////////////           
            createTimeline();
        function textReady(event:Event):void {
            bioText.htmlText = event.target.data;
        function onXMLLoadComplete(e:Event):void {
             xmlLoader.removeEventListener(Event.COMPLETE, onXMLLoadComplete);
             xmlSlideshow = new XML(e.target.data);     // create new xml with the received data
             slideCount = xmlSlideshow..image.length();   // get total slide count
            loadSlide();
         function loadSlide():void {
//            prevSlide=history[history.length-1];
            rand = Math.ceil(Math.random()* slideCount - 1); 
             loader = new Loader();
            req = new URLRequest(xmlSlideshow..@src[rand]);
             loader.contentLoaderInfo.addEventListener(Event.COMPLETE, displaySlide);
             loader.load(req);
            slideName = xmlSlideshow..@src[rand].toString();
        function createTimeline():void {
        timeline =new TimelineMax({repeat:1,repeatDelay:5,yoyo:true,onComplete:loadSlide, paused:true});
        for (var count:int = 1; count <=10; count++) {
            var mc:MovieClip=bars["bar"+count];
            timeline.append(TweenMax.from(mc, duration, {x:"64", alpha:0, ease:Cubic.easeOut}), -.4);
        function displaySlide(e:Event = null):void {
            loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, displaySlide);
//           holder = new Holder();  if I do this lose the alignment problem but gain a menory problem.
            if(holder.numChildren > 0){holder.removeChildAt(0);}
            holder.addChild(loader.content);
           // center the pic
            holder.x=holderBG.width/2 - holder.width/2;
            holder.y=holderBG.height/2 - holder.height/2;
            // make the mask position over the pic
            bars.x=holder.x;
            bars.y=holder.y;
            bars.cacheAsBitmap=true;
            holder.cacheAsBitmap=true;
            holder.mask=bars;
            bars.width = holder.width;
            bars.height = holder.height;
            holderBG.addChild(holder);
            holderBG.addChild(bars);
            timeline.restart();

Aha... I haven't had my coffee either
. That did it
if (holderBG.holder)
            holderBG.removeChild(holder);
            holderBG.holder = null;
It isn't perfect it sitll wonders around slightly like a drunk weaving on the road but only slightly he's only had a couple of beers and isn't likely to get pulled over which is an improvement.  I'll go with it.   Thanks!

Similar Messages

  • Problem aligning images in slideshow

    I have a slide show in a site I'm building for a friend the slide show can be viewed by going to http://www.droolpigs.com/   and clicking the About Us button
    the inages are supposed to be centered and 90% of the time they are.  I would like to see them centered 100% of the time.
    here's the code:
            import com.greensock.*;
             import com.greensock.easing.*;
            import flash.display.*;
            import flash.utils.*;
            import flash.events.*;
            import flash.net.*;
            import flash.text.*;
            var myFont:Font3 = new Font3();
            var extReq:URLRequest = new URLRequest("bio.txt");
            var extLoader:URLLoader = new URLLoader();
            var myFormat:TextFormat = new TextFormat();
            var tf:TextField = new TextField();
            var tf3:TextField = new TextField();
            var msk:Sprite = new Sprite();
            var tl:TimelineMax = new TimelineMax({repeat:-1});   
    //        var bio:Bio = new Bio();
             var bars:Bars = new Bars();
            var n:int = 0;
            var intCurrentSlide:int;
            var req:URLRequest;
               var holder:Sprite = new Sprite();
    //        var holderBG:HolderBG = new HolderBG();
            var loader:Loader;
            var rand:int;
            var nxtNum:int;
            var picNum:String;
            var slideCount:int;
            var xmlLoader:URLLoader;   // slideshow xml loader
            var xmlSlideshow:XML;  // slideshow xml
            var strXMLPath:String = "bioPics-data.xml";
            var slideName:String;
           var history:Array = new Array();
             var duration:Number=.5;
            var prevSlide:String;
            var timeline:TimelineMax;
            xmlLoader = new URLLoader();  
            xmlLoader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
            xmlLoader.load(new URLRequest(strXMLPath));
    ///////////// text setup ////////////////////
    tf.x =-285;
    //tf.y =655;
    tf.y=700;
    tf.width = 700;
    tf.height = 800;
    tf.multiline=true;
    tf.wordWrap=true;
    tf.condenseWhite=true;
    //tf2
    tf3.x =-285;
    tf3.y =660;
    tf3.width = 700;
    tf3.height = 20;
    tf3.htmlText = '<font color = "#dd8800" size = "14px">Contact links and Email:      <a href="http://www.droolpigs.com">droolpigs.com</a> | <a href="http://www.myspace.com/acousticshadowz">myspace site</a>      <a href="mailto://[email protected]//[email protected]">[email protected]</a> | <a href="mailto://[email protected]//[email protected]">[email protected]</a></font>';
    addChild(tf);
    addChild(tf3);
    msk.graphics.beginFill(0x000000);
    msk.graphics.drawRect(0, 0, 700, 165);
    msk.x = -285;
    msk.y = 485;
    msk.graphics.endFill();
    extLoader.addEventListener(Event.COMPLETE, textReady);
    myFormat.font = myFont.fontName;
    myFormat.color = "0xffaa00";
    //0x77ffaa
    myFormat.size = 18;
    myFormat.leading = 2.5;
    tf.defaultTextFormat=myFormat;
    tf.embedFonts=true;
    tf.alpha=1;
    extLoader.load(extReq);
    function textReady(e:Event):void {
        tf.cacheAsBitmap=true;
         msk.cacheAsBitmap=true;
        tf.mask=msk;
        addChild(msk);
        tf.htmlText=e.target.data;
    tl.insert( new TweenLite(tf, 70, {y:"-940", ease:Linear.easeNone}) );
    //////////////text setup////////////////////////   
                createTimeline();
            function onXMLLoadComplete(e:Event):void {
                 xmlLoader.removeEventListener(Event.COMPLETE, onXMLLoadComplete);
                 xmlSlideshow = new XML(e.target.data);     // create new xml with the received data
                 slideCount = xmlSlideshow..image.length();   // get total slide count
                 loadSlide();
             function loadSlide():void {
                  prevSlide=history[history.length-1];
                rand = Math.ceil(Math.random()* slideCount - 1); 
                 loader = new Loader();
                 req = new URLRequest(xmlSlideshow..@src[rand]);
                 loader.contentLoaderInfo.addEventListener(Event.COMPLETE, displaySlide);
                 loader.load(req);
                slideName = xmlSlideshow..@src[rand].toString();
            if(slideName != prevSlide){
                     history.push(slideName);
                    loader.load(new URLRequest(xmlSlideshow..@src[rand]));
                }else{
                    loadSlide();
            function createTimeline():void{
            timeline =new TimelineMax({repeat:1,repeatDelay:5,yoyo:true,onComplete:loadSlide, paused:true});
            for (var count:int = 1; count <=10; count++) {
                var mc:MovieClip=bars["bar"+count];
                timeline.append(TweenMax.from(mc, duration, {x:"64", alpha:0, ease:Cubic.easeOut}), -.4);
            function displaySlide(e:Event = null):void {
                loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, displaySlide);
                if (holderBG.holder)
                holderBG.removeChild(holder);
                holderBG.holder = null;
    //            trace ("holder.numChildren "+holder.numChildren);
                 if(holder.numChildren > 0){holder.removeChildAt(0);}
                  holder.addChild(loader.content);
                // center the pic
                holder.x=holderBG.width/2 - holder.width/2;
                holder.y=holderBG.height/2 - holder.height/2;
                // make the mask position over the pic
                 bars.x=holder.x;
                 bars.y=holder.y;
                  bars.cacheAsBitmap=true;
                  holder.cacheAsBitmap=true;
                 holder.mask=bars;
                 bars.width = holder.width;
                  bars.height = holder.height;
                 holderBG.addChild(holder);
                  holderBG.addChild(bars);
                timeline.restart();        }

    I resized them all in Photshop so neither the width or height would exceed the width or height of the background. I'm not sure what you mean by properly croped but their dimensions do fit.  I also noticed that if you see an image misaligned you'll notice later that the same image will be aligned.  One of the folks a greensock suggested that it might be a bug in the Adobe loader so I'll try their loader and see if it makes a differencs.

  • I am having problems opening images renerated in lightroom5 into cs6. Cs6 bridge does not see the lightroom libarary. If I open lightroom and right clik the image, edit in cs6, 6 opens but the picture doesnot follow. What is going on? Give me a hand.

    I am having problems opening images renerated in lightroom5 into cs6. Cs6 bridge does not see the lightroom libarary. If I open lightroom and right clik the image, edit in cs6, 6 opens but the picture doesnot follow. What is going on? Give me a hand, thanks.

    What edition of LR 5? What edition of ACR does PSCS 6 contain. If they are not parallel (same edition number x in [5 or 8].x ), is LR making a tiff or psd rendition of the image?

  • Still having problems with images

    I am still having problems putting images into an Oracle 9i database and fetching them back out.
    I think I have finally managed to force a blob image into the database, but can't seem to get it back out into a byte array.
    After many iterations, I have come up with something that might be getting close.
    The code is listed below.
    Everything has been simplified as much as I can.
    The function get_user_picture_func1 returns a single blob for a specified index.
    In this case, I have hardcoded the index = 3 and I think there is an image in the database for that index. (it says there are bytes there anyway).
    The byte array to store the image is defined outside the method fetchImage().
    byte[] imageData;
    When I call fetchImage() I get the following exception:
    Invalid argument(s) in call: getBytes().
    at the line
    imageData = picture.getBytes(zro, k);
    It looks like getBytes has two parameters, Long offset, int length.
    I had diagnostic statements and I confirmed that the statement:
    int k = (int)picture.length(); returned k=4198 (the same size as the image).
    I am at a loss to understand what the exception is trying to tell me.
    I'be been trying to get this to work for a week now and am really getting burned out trying to find anything that works.
    void fetchImage()
    Blob picture;
    String query = "{ ? = call get_user_picture_func1( ? ) }";
    try
    CallableStatement cs = con.prepareCall( query );
    cs.registerOutParameter(1, OracleTypes.BLOB);
    cs.setInt(2,3);
    cs.execute();
    picture = cs.getBlob(1);
    if( picture != null)
    InputStream in = picture.getBinaryStream();
    int k = (int)picture.length();
    imageData = new byte[k];
    long zro = 0;
    imageData = picture.getBytes(zro, k);
    catch( Exception e)
    }

    I have been using my iPad mini with keynote to make slide presentations in  my classes.There has been no problem until I upgraded to Keynote 5.3. Now the refresh rate on the iPad mini is so slow and out of sync with the projected image that I was forced to not use keynote! I have 2 years of work invested that I will have to toss unless this gets fxed. I have not had this problem with this equipment/files before. Only change was upgrade to keynote 5.3. ( Some details: I connect to the projector with a  VGA cable and Apple lightining adaptor to the iPad Mini. All updates current on theiPad Mini.)  Yes I did turn on and off all equipment. And I did check all cable connections. Thanks for any help you may give!

  • CS3 Extended having problems opening image files.

    I had a CS3 Master Collection from The Art Institute forced us to buy that I had never opened because Photoshop 7 worked fine & I didn't need all the other crap that came with CS3 in the Master Collection. So I had been using Photoshop 7 for years & years, but when I got a new computer, Photoshop 7 didn't work anymore. If you can't tell me what's wrong with CS3, maybe you can tell me how to get my old 7 working on 64 bit windows?
    Getting this stuff out of the way:
    *Brand new computer, Windows 7 Pro, 64 bit.
    *Adobe Creative Suite 3 Master Collection, installed about 3 months ago.
    *CS3 Extended was working just fine for 1 or 2 months with no problems.
    *Problem: CS3 stops responding or hangs exsessively when opening image files.
    *Already tried alt/ctrl/shift reset.
    *Already deleted all the printers.
    *Already tried the tilde in front of the TWAIN.
    *This Master Suite takes like 3 hours to install, so reinstalling is something I'd rather avoid.
    *Yes, it's updated.
    *Yes, the licence was renewed.
    PSE Error Log:
    2011:06:05 23:52:09 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:53:08 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:53:55 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:54:19 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:54:54 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:05 23:54:54 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:05 23:54:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:55:02 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:05 23:56:22 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:56:49 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:57:17 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:58:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:58:17 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:58:43 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:59:51 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:00:34 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:00:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:01:26 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:01:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:02:18 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:02:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:03:21 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:05:20 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:05:33 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:06:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:09:33 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:16:38 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:20:43 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:22:23 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:23:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:25:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:31:55 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:34:05 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:35:05 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:37:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:38:31 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:39:38 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:40:06 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:40:45 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:41:12 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:41:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:42:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:44:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:44:31 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:46:09 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:46:47 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:48:18 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:51:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:51:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:54:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:56:09 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:56:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:57:16 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:57:36 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 03:22:50 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:17 02:18:38 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:17 02:18:38 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:17 02:19:00 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:01 05:01:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:01:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:01:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:01:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:03 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:04:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:10:44 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:13:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:03 22:18:39 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:18:39 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:26:03 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:26:03 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:26:49 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:28:02 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:28:02 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:28:29 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:04 21:18:10 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:04 21:18:10 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:05 15:49:01 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:05 15:49:01 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed

    Terabyte drive. 80% free space.
    Yeah, I reinstalled. Can't believe I had to go through 4 discs to reinstall one program for the suite.
    Reinstalling windows is overkill when" error check," & "SFC /scannow," & "boot repair" are sufficient.
    Found out that it WILL work if you don't have a browser window open, but I like to listen to stuff on the net when using photoshop. I dunno why the browser makes photoshop refuse to open or create new images, but it would be helpful to know.
    Also, despite not having a printer, the error log seems to indicate that it's part of the problem.
    Oh, I forgot to mention that I did defrag after reinstalling. I know someone will bring it up if I don't.

  • For those of you having problems printing images/pdf

    I spent awhile figuring this out as my Samsung ML-1630 printed text from TextEdit fine via Time Capsule USB, but I kept getting either errors or nothing at all when I attempted to print a PDF, web page, or image. Here is how I got it to work (I have only tested it on a Samsung ML-160 printer, but it should work for others having similar problems)
    1. Open "Print & Fax" in System Prefs
    2. Add a new printer.
    3. (important!) Choose IP at the top.
    4. For "Protocol" choose "HP Jetdirect - Socket"
    5. For "Address" use the local IP address of your Time Capsule - you can find this by opening the AirPort Utility -- mine was 10.0.1.1 by default.
    6. For "Print Using" select your printer driver
    7. Click "Add" and you should be able to print anything now
    This workaround is probably due to a driver issue, but I am not for certain.

    Thanks,
    This worked for printing images, but it is PAINFULLY slow. took 3 minutes or more to print a simple graphic file
    Message was edited by: AceMT

  • Having problem with images imported from photoshop

    I am totally new to Fireworks, I am redoing a site that was done using CS2, that is GoLive, Photoshop and Image Ready. I wanted to begin familiarizing myself with Fireworks by starting with using it to make all the web images for the site (jpgs, pngs, etc). It started well but after a while I started getting strange results from FW when I imported PSD files. The PSD imports fine into FW but when I want to "preview" or do a "2-UP" and see what it looks like as a jpg or png I just get a blank image where the jpg or png is supposed to be. However if I "export" the jpg it does get exported, but I would like to preview it to see what the quality is. This doesn't happen every time but at least 50% of the time in the last 2 days, and there seems to be no rhyme or reason behind why it works with some images but not others.
    Another thing is that if I add a layer effect to the image such as "inner glow" to the PS image, and then flatten the image to make sure it gets exported to FW, it doesn't get exported. It is as if I never added the layer effect in PS.
    Any help on these two issues would be greatly appreciated and help me to continue in perservering with FW.
    VL Branko

    I don't think I've cracked open Bridge since upgrading to CS5/CS6, and I'm hesitant to start today! I'm therefore kind of assuming that you're starting with PSDs and opening them up in Fireworks. (If you're not doing this, give it a try.)
    Regarding the 50% failure of Preview and 2-Up modes, I was thinking that saving the PSDs as native Fireworks PNGs—within Fireworks—might eliminate that problem. It's hard to imagine Fireworks not previewing its own file format, but easier to imagine it failing to properly preview a PSD file. And again, perhaps File > Image Preview might work better for you.
    As far as the "inner glow" issue: 1) Be sure to add it into the PSD before importing into Fireworks, and 2) If it doesn't show up, have a look at Filters within the Properties panel for the selected object; you could try selecting Inner Glow within ‘Photoshop Live Effects’ or try out Fireworks' own native Inner Glow filter effect.
    Other than for the purpose of familiarizing yourself with Fireworks, you may want to consider why you'd use Fireworks for these graphics, if they were originally created in Photoshop. Small changes in graphic appearance are always possible when moving between applications. For example, Photoshop is color managed whereas Fireworks is not; you therefore might notice a small shift in saturation or tonality between the two applications. Whether this is a concern depends on your final output goals.

  • Having problems opening images in photoshop cs2

    Hi all. Im on a mac using cs2.(yes i will upgrade at some point) Anyways, Ive downloaded some photos from Stockexchange.com and have never had any problems opening up the files until now. It seems like Photoshop doesnt like them anymore. Ive done all the latest updates but it doent seem to work. I am on a mbp with 10.4.11. Any help would be appreciated as I cannot upgrade to cs4 until after the summer and all the OT shifts that come with it
    chris

    Ignoring the spam.............
    What exactly is happening when you say you there are problems in opening images?
    Have you tried cntrl + click on the the photo icon and then checking the options on "Open with..."
    When you download the images do they have any kind of suffix eg .jpg  or .tiff  etc?

  • Newbie having problems with image on form

    In Design, I use both the "image" and "image field" tools to place a JPG image on my form, but the image does not show up on the form (the placement is there for the image, but not the image). How can I correct this problem?

    I had this same problem in the past and I'll second the notion that changing the image from CMYK to RGB easily solves the problem. Or, just make sure your image is in a .PNG format.

  • Having problems with image resizing?

    Since my upgrade to LR 3.2, I have detected a problem when resizing images at export.  When I select "long edge" at 1500 pixels, I'm getting vertical images at 1500 H x 1000 W (which is correct), but horizontals are exporting at 1500 H x 2250 W, so it's reading the "long edge" selection as "height". Same problem when selecting "short edge" also exporting as image height. 

    Works fine for me with 3.2 under both OS/X and win7.

  • Having problems viewing images on ebay

    in ebay in my own listings i am having a auto load image failure, yes yes yes I did add the web addresses under auto load images , exceptions and allow for both hosting web sites and even though they are in their. it will still NOT NOT NOT load the images. it will make me, by forcing me, to go to view 1 image on the page then it says WARNING YOUR ABOUT TO GO FROM A SECURE CONNECTION TO A UN SECURE CONNECTION. then AFTER I say yes and go to view that 1 image it unlocks all of the other images on the web page.
    and why is that happening because the firefox is not programmed correctly as in the base coding i can not change, I would need to tell it to STOP STOP STOP blocking the images and stop warning me when i am going from a secure connection to a unsecure connection.
    and it will not not not for the love of god not load images on ebay in secure when the images are hosted from a unsecure web site.

    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images, the permissions.default.images pref should be 1.
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *https://support.mozilla.com/kb/Images+or+animations+do+not+show
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I have LR2. On Adobe I updated to LR2.7 and since then having problems editing images in PS6.

    I select image in LR2.7 to edit in PS6.  It launches PS6 but image does not come through.  It comes up with message "the file could not be edited because CS6 could not be launched" when in fact it has launched CS6 but not the image.
    I have uninstalled LR2 a few times and reinstalled it and when I leave LR2 I can select image to edit in CS6 and it works okay but when I update on Adobe website to LR 2.7 it starts to play up and not work.  What is the problem? 
    Can anyone help with this as I am starting to tear my hair out.  Have had this problem for a couple of months now and cannot do my work.

    Firstly thanks for your responses.
    I have Windows 8 not Windows 7. 
    I have brought down the UAC setting but it still does the same but I just answer yes and it opens CS6 Extended but not the image.  The fact is that when I ask in LR to edit in CS6 it tells me it can't open CS6 but it does open CS6 but not the image.  Even if I ask to "open as smart object in Photoshop" it does not do it.
    No matter where I start Lightroom from it still does the same.  I only used Bridge a couple of days ago for the first time so this problem has nothing to do with Bridge.  When I select an image in Bridge it does bring it up in CS6 when I ask so this works fine.
    In LR/Photo/Edit in, if I select "Edit in Photoshop.exe" it works - it takes the image and gives me the option of edit a copy with LR adjustments etc but if I go LR/Photo/Edit in "Adobe Photoshop CS6" it just opens up CS6 and not the image plus gives me the message "the file could not be edited because CS6 could not be launched" when it has launched.  So should I just use "Edit in Photoshop.exe" or not - I don't fully understand all of this so maybe you could explain in lay terms.
    As I said earlier, it has only recently happened, in the last couple of months.  Before that I had no problems so I don't know where this problem came from.  The only thing I can remember is one day I was playing around with the preferences and maybe I have done something with that in LR and CS6 but I don't know.
    Hopefully this will answer back some of your questions but it has nothing to do with Bridge as per your views in the posts below.

  • Having problems saving images on safari after iOS 7.1 update -

    whenever i use safari to search images on Google and i want to save the image i hold down and i have the following options
    > Open
    > Open in New Page
    > Add to Reading List
    > Copy
    but no
    > Save Image
    i have to click onto the actual picture which directs me to its original web page where it was posted to be able to hold down onto picture for "save image" option to appear whereas before the update it was simpler to save images on the search result page instead on having to open the pictures up individually. Has anyone else come across this annoying new feature? instead of simplifying things they've slightly made it more of a hassle to save images grrrr

    Hi Captwoodse,
    Thanks for your reply, after trying your method i actually found out that if i click on a picture in google images mode in safari and don't wait for it to fully load and hold down my finger on the picture the save image option comes up amongst the others. However if i do wait for it to load completely i only have the options i listed in my original question. I tried your technique you suggested but again it was hit and miss with save image option appearing. So it looks like ill just have to be quick with my thumb and press down on picture before it loads! Lets hope my EE 4G connection is slower then my thumb skills  
    Thank you none the less  

  • Problems selecting images in LR4

    I've been having problems selecting images in the library module when multiple images are in view (not down in the timeline, but in the main window). It seems sporadic with which ones it won't let me select, it somehow manages to be the ones that I need to click....!! I just literally can't click it as if it were an image I already imported or something, but it's not grayed out like that. I've been having to select a nearby image then use my arrow keys to navigate to and click the image I need. Any ideas about what is happening? Thanks so much for any ideas, it's really strange and just started last night.

    There was a bug forever-ago that certain areas of the screen simply didn't respond to any clicks.  I think the solution was to rebuild the preferences file.  Does that sound like the same issue perhaps?

  • Problems importing images into Livecycle Designer 8.0

    Hello all,
    Recently, I have been having problems importing images into the livecycle forms. I put in the image field and link the image but it would just show a broken link symbol. i usually edit the image in photoshop and save as a jpeg. I can't figure out why Livecycle takes some images but not others.
    Please help anyone

    Never mind, I figured it out, have to save files in RGB format, not CMYK

Maybe you are looking for

  • Re: URGENT: Regarding Purchase Requsition Approval

    HI, Plzzzzz help me out i am making report in which i want  to display dat <b>these are particular PURCHASE REQUISITIONS and these were released by these person at these dates.. </b> if any body provide me useful awnser he or she will definately rewa

  • Lecture fichier PDF sur IPad et iPhone 2

    Bonjour, Je ne sais ouvrir ce type de fichier, et on me demande a chaque fois Adobe!... Que l'on ne sait télécharger sur ces produits. Comment faire a l'aide !!! Cordialement

  • "post installation requesties of oracle 11g database in windows"

    Plz can any one tell me what are the post installation requesties of oracle 11g database installation in windows? thanks & Regards Vikash "All Izz Well"

  • Can't get itunes to play on my computer

    I have Window 8.1 and just did an update in itunes but when I went to play my songs they won't play.

  • Apple support, does it exist?

    I have been without access to my email for over 24 hours.  Apple provides no information about what the problem is or what they are doing it to fix it.  The support seems quite poor - and I believe I am being kind.