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.

Similar Messages

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

  • Problem with image gallery

    Hi to all.
    With ios 5.01 I have a little problem with image gallery. As you can see I have only 1 image, but there is always this **** message "download 0 of 46) (sorry, but I'm Italian )
    I've removed my icloud account from settings, but there is nothing to do, this message don't goes away. What I can do? Thanks in advance

    Hello,
    Just adding a gallery I want to do the same slideshow WoodWing's, but in InDesign, if anyone knows of?
    Thank you
    Link video slideshow WoodWing's: http://www.youtube.com/watch?v=Xt6gNaEZ0-M&feature=relmfu
    The first slideshow shown

  • Can't get Photoshop CC panorama maker to align images properly on distant horizons.

    Can't get Photoshop CC panorama maker to align images properly for objects further away (ie For distant horizons) Tried reloading CC but no better. Tried manually aligning images but when finished seems to jump and misalign everything as if I'd used auto. Is there anything I can do / doing wrong or is there a software glitch. Never had this problem until started using CC?

    Hi Guys - Thanks for the info.
    I have now downloaded the latest upgrade for Photoshop CC 2014 (the one that now opens photoshop with a face like 'The Scream') and it seems to have cured the problem. However, now Photoshop couldn't run any slower if it tried. Really really slow, and the more Panoramas I try to do, the slower it gets. Oh well, at least it works now.
    Regards
    Mik D

  • Problems w/ Images in Reports 2.5

    I seem to have run into an apparent limitation with the Oracle Developer
    2000 Report Designer 2.5. I have an image that is displayed, the path being
    stored within the database, the image is then Read from file. This works
    fine except there are two problems that I have run into and hope somebody
    can either confirm this is the way the software functions or point me in the
    right direction.
    It seems impossible to me to get the image to center within the field as
    defined in the Report Layout. I have the image field on the report set to
    about 10 Inches wide. Initially the image appeared on the left hand side of
    the field, I changed the alignment to Center as you would for a text field
    but to no avail, the image always comes back on the left hand side.
    If the images where all of a uniform size this would not bother me as I
    would simply create the image box based upon the size of the image and
    center it on the report, alas this is not an ideal world. How can I center
    an image within a field ? Is it even possible.
    Thing brings me onto my second problem, the images stretch to fill the image
    field, stopping when it either hits the horizontal or vertical boundary.
    This is great in a way because oversized images are zoomed into and appear
    fine, the whole process does not mess with the aspect ratio's of the images
    at all. However with images much smaller than the image field, they are
    stretch way to much and become pixilated and an eyesore. I have tried
    playing with the Variable, Can Shrink, Can Grow features but I lose all
    control of where the image will wind up with varying results. The Expand,
    Contract properties have little effect, the variable option shrinks all
    images down to the tiniest of thumbnails and then again they appear to the
    left of center. Somebody has to have done this before.
    Any idea how I can control this behavior ? And maybe just have an image
    appear at its actual size ?
    Combined these two factors make the report shabby, and this is intended as
    presentation quality material.
    Any guidance, advice is appreciated.
    Thanks,
    James
    James Starritt
    null

    Hello,
    Is there any particular reason you cannot upgrade to Reports 6i? Reports 2.5 is quite old, and there have been a number of issues resolved with images since then.
    Regards,
    The Oracle Reports Team --skw                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Soft images in Slideshow

    When I go to view my images in View>Slideshow they are very soft almost blurred. The thumbnails are fine as are the preview images in Bridge.
    If I left click on the image in slideshow and zoom on the image it becomes sharp, when I right click to zoom back to full image it becomes blurred again.
    This is very annoying as I have used the manual slideshow in CS3 to quickly assess and rate my images with no problems.
    What am I doing wrong?  Please help

    Most of the problems in slide show are realated to the video card or driver.  Make sure you have the latest driver installed.
    If this does not work in advanced preferences click "use software rendering" and see it that solves problem.

  • Blank images in slideshow

    I have just downloaded iphoto 11. I am able to see thumbnail pictures, but am unable to see images in slideshow. I only see blanks. Anyway round the problem?
    Imatong

    Are you able to see the full sized images of those photos in the Event or Photos mode? If not what do you see?
    If you see just a blank window or this image in the window:
    Then try the following:
    If you have the space available on your hard drive and don't aready have a backup copy of the library make a temporary, backup copy (select the library and type Command+D) and apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Experiencing problem with image display in LR5

    I have an intermittent problem with images displaying and exporting in LR. It just began a couple of months ago and is totally random - will do it with RAW (CR2) or JPG. It displays this way in all modules - Library, Develop, Slideshow....The image displays fine in a non-Adobe image viewer (Faststone or Windows Viewer). I've reloaded LR5 and PSCC and is still persists. I know the image file is fine. It also has begun effecting older images that were showing up just fine a while ago. I just loaded about 200 images and maybe 3 or so have this viewing problem in LR & PS. Has anyone else experienced it and have a suggested fix? My graphics card has the latest drivers and shows no problems with other applications. Here is the same image - one a jpg export from Lighroom, the other a save as jpg from Faststone. HELP!

    This is almost always a hardware problem, causing corruption of the file. The difference you see between Lightroom and other software is that Lightroom is accessing the full RAW image, while the other software is trying to read the embedded JPG preview.
    To figure out exactly what hardware is the problem, you need to try different transmission paths and hardware ... different camera cards, different card readers or USB cables/USB ports, different hard disks, etc. Eventually you should be able to isolate the problem.

  • Problem inserting a photoshop slideshow in dreamweaver cs6

    Hi, I have created a slideshow with fading images with photoshop. When I insert it into dreamweaver  I just have one image. Then I tried to create one with flash and I just got the same. I must choose the wrong Insert type.
    first question: What is the best way to create a slideshow for  a website with fading images? (Flash, PS or other)
    second: when it is created what do I need to do in DW?
    Thanks a lot

    Flash is dead. It isn't supported by the world's most popular mobile and tablet devices.    Use jQuery Cycle2 and insert your optimized images into the HTML page.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Cycle2</title>
    <!--helpf for older IE browsers-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Cycle2 Slideshow Plugin-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <style>
    /**Slideshow**/
    .cycle-slideshow {
        position: relative;
        z-index: 1;
        width: 400px; /**adjust width as required**/
        margin:75px 0;
        text-align: center;
    .cycle-slideshow img { max-width: 100% }
    /* prev / next links */
    .cycle-prev, .cycle-next {
        position: absolute;
        top: 0;
        width: 20%;
        opacity: 0;
        filter: alpha(opacity=0);
        z-index: 800;
        height: 100%;
        cursor: pointer;
    .cycle-prev {
        left: 0;
        background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
    .cycle-next {
        right: 0;
        background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
    .cycle-prev:hover, .cycle-next:hover {
        opacity: .7;
        filter: alpha(opacity=70)
    /**END SLIDESHOW STYLES**/
    </style>
    </head>
    <body>
    <!--begin slideshow-->
    <div class="cycle-slideshow"
         data-cycle-fx="fade"
         data-cycle-timeOut="3000"
        >
    <!-- prev/next links -->
    <div class="cycle-prev"></div>
    <div class="cycle-next"></div>
    <!--insert your images below-->
    <img src="http://jquery.malsup.com/cycle2/images/p1.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p2.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p3.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p4.jpg" alt="description">
    <p>Mouse over image for previous / next links</p>
    </div>
    <!--end slideshow-->
    <h1><a href="http://jquery.malsup.com/cycle2/">JQuery Cycle2</a></h1>
    </body>
    </html>
    Nancy O.

  • Help need for loading aligned images in JEditorpane

    Hi all,
    I need to align image with text using JEditorpane, If i load the html document with aligned image, there is no alignment for image in final display. So please suggest any ideas if u have on this topic. I am in great hurry.
    Thanks in advance,
    Nageswara Rao.V

    Hello,
    I'm also having the same problem, did anybody find any solution ?
    -sanjaymishra70

  • Problem with Image file

    Hi,
    Iam facing with one problem.I have one swing interface through which I can upload files(back end servlet programme).Now I can upload all types of file but problem with image file it uploading perfectly that means size of the uploaded file is ok but its format damaged.It can not be open.My backend servlet programme is ok coz i tested it with html form it is working perfectly.Problem with swing interface.Plz guide me where I done a mistake.Below r my codes:-
    ImageIcon Upload=new ImageIcon("images/Upload.gif");
         Button=new JButton(Upload);
         Button.setToolTipText("Upload");
    Button.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
              int returnVal = fc.showOpenDialog(ActionDemo4.this);
              if (returnVal == JFileChooser.APPROVE_OPTION) {
              File file = fc.getSelectedFile();
    String aa=file.getAbsolutePath();
              textArea3.append(aa);
                   textArea2.append("Local URL:");
    long l=file.length();
              try
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff);
              String str1=textArea10.getText();
    url = new URL ("http://127.0.0.1:7001/servletUpload?x="+str1);
         urlConn = url.openConnection();
         urlConn.setDoInput (true);
         urlConn.setDoOutput (true);
         urlConn.setUseCaches (false);
         urlConn.setRequestProperty("Content-Type","multipart/form-data;boundry=-----------------------------7d11e410e500f2");
         printout = new DataOutputStream (urlConn.getOutputStream ());
    String content ="-----------------------------7d11e410e500f2\r\n"+"Content-Disposition: form-data;"+"name=\"upload\"; filename=\""+aa+"\"\r\n"+"Content-Type: application/octet-strem\r\n\r\n\r\n"+conffile+"-----------------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);
    printout.flush ();
    printout.close ();
    Best Regards
    Bikash

    The errors are here:
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff); (conffile is a String object containing the image)
    and here:
    String content ="-----------------------------7d11e410e500f2\r\n"+"Con
    ent-Disposition: form-data;"+"name=\"upload\";
    filename=\""+aa+"\"\r\n"+"Content-Type:
    application/octet-strem\r\n\r\n\r\n"+conffile+"--------
    --------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);conffie is sent to the server but
    it's non possible to treat binary data as String!
    Image files must be sent as byte[] NOT as String ......

  • I just installed my CS5.1 on my new Lenovo Laptop Win 8.1. Problem -- On Image Adjustments none of the adjustment options respond.

    I just installed my CS5.1 on my new Lenovo Laptop Win 8.1. and everything worked for a day. On day 2 I ran into Problems -- On > Image >Adjustments none of the adjustment options respond. None of the toolbar functions such as >Crop etc respond.
    I then installed the same download on my PC and everything works as it should.
    Can anybody help please
    Roland

    Notebook Info
    1 x Lenovo G710 Notebook, Intel® Core™ i5, 43,9 cm (17,3 "), 1000 GB HD,
    Intel Core i5-4210M 2,60 GHz, (Turbo-Boost 2.0 bis 3,20 GHz)
    43.9 cm (17.3") 900p (HD+) LED-Display (1600 x 900)
    8192 MB DDR3-RAM
    Harddisk: 1000GB SATA
    NVIDIA N15V-GM mit 1GB DDR3
    Prefs
    As per download settings, I changed nothing
    Image Info
    Jpg conv.from RAW Canon, dim. 4746x3567, 6,64 Mb
    The software worked on the first day, problems appeared next day. I uninstalled and deleted the exe.file, then redownloaded and reinstalled but same problem persists.
    I then downloaded and installed on my PC and everything works.
    Regards Roland

  • Problem with images opened in Photoshop CS 5

    Hi, I have a problem with images that I open in Photoshop CS 5. F. ex. I opened
    the following image:
    The image appears with a purple color in Photoshop. If I hover over the image
    with a tool like lasso, it temporarily regains it´s original color. The image mode is RGB Color, 8 Bits/Channel.
    I resetted the start settings of Photoshop with the CTRL-Shift-Alt-combination, which had no effect.

    The confusion arises from the imprecise error message in the Preferences > Performance dialog box, to wit:
    OK, that seems to be open to misunderstanding indeed.
    The video card: Citrix Systems Inc. Display Driver.
    Could not find a list for CS6 specifically, but the card may fall short.
    http://helpx.adobe.com/photoshop/kb/tested-video-cards-photoshop-cs5.html
    If I invoke View > Proof Colors, the only thing that changes is that the text in the brackets
    Also if you set View > Proof Setup to something different?
    Boilerplate-text:
    Are Photoshop and OS fully updated and have you performed the usual trouble-shooting routines (trashing prefs by keeping command-alt-shift/ctrl-alt-shift pressed while starting Photoshop, 3rd party plug-ins deactivation, system maintenance, cleaning caches, font validation, etc.)?

  • Mosaic problem with image after Yosemite

    I'm using CS6 (13.0.6) on my iMac and recently upgraded to Yosemite.  I'm now getting a problem where images will suddenly either go black or get a weird mosaic/jigsaw type of look.  In the example below, the "source" images used in the mosaic were files that I had recently closed - so it isn't just a scrambled version of the correct image (if that makes sense).
    Once this happens, the only fix is to close out Photoshop and start over.  Anyone else having this problem?  Any fixes?
    Thanks for any help or suggestions!

    Interesting…Turning off "Use Graphics Processor" returns the magnifying glass to previous Photoshop method of dragging a marquee to zoom, instead of zooming from the point of click.
    So, this is February 2. You say it is Apple's problem and they are working on it, huh? It's been at least two months, apparently. It doesn't seem to be a top priority.

  • Problem with image url

    Hello,
    today I have a problem with image url. I wanted Image to change when mouse dragged over it. But nothing happened. Any ideas?
    def maxIco: ImageView = ImageView{
    image: Image{
    url: "{__DIR__}ikony/max.png"
    onMouseDragged: function(event: MouseEvent){
    maxIco.image = Image{
    url: "{__DIR__}ikony/max2.png"
    }

    This is working for me:
    src/main/Main.fx
    src/main/icon/image1.bmp
    src/main/icon/image2.bmp
    //Main.fx
    package main;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.input.MouseEvent;
    var changed = false;
    def imgView: ImageView = ImageView {
        image: Image {
            url: "{__DIR__}icon/image1.bmp"
        onMouseDragged: function (e: MouseEvent): Void {
            if (not changed) {
                imgView.image = Image {
                    url: "{__DIR__}icon/image2.bmp"
                changed = true;
                println(imgView.image.url);
        onMouseReleased: function (e: MouseEvent): Void {
            imgView.image = Image {
                url: "{__DIR__}icon/image1.bmp"
            changed = false;
            println(imgView.image.url);
    Stage {
        title: "ImageTest"
        scene: Scene {
            width: 700
            height: 600
            content: [
                imgView
    }I've changed few things to switch image only one time on mouseDragged event.
    It print the image URL.

Maybe you are looking for

  • IX4-300D how do I import a new drive into RAID 5 Array?

    I already had a 3 x 2TB RAID 5 array, added new forth drive (same 2TB drive model) and let it auto format, which completed OK, but when I look at Status in Admin I see "Unallocated 1.8TB". This tells me the drive was formated but not imported into th

  • ITunes Store unable to process purchases?

    I upgraded my MBP and iMac to Lion yesterday morning without any problems. I had updated all apps on both devices before proceeding. I also updated apps on my iPhone4, and iPad2 before doing the Lion install. The MBP and iMac both work great with Lio

  • Safari 6.1 badly behaved on PayPal site

    I thought I was just updating Java, but Safari 6.1 aooeared after the update. When I went to my PayPal account, if I click on an item that shows a plus sign to the left, this action should expand the item and provide further details. However, with Sa

  • Connecting ipad2 to internet.

    i am having difficulty to connect ipad2 to internet.  tried all steps mentioned in support pages. The only way to make it work is switch on/off the router at home.  The sad thing is I am not able to make it work at starbucks or any other free Wi-fi p

  • "re-syncing" iphoto with mobileme gallery

    Some friends of ours recently uploaded pictures to our mobile me gallery. How do I bring those new photos into an already established iphoto event?