Creating image thumbnail and loading to image control

Hi All
Is there way of creating thumbnail of image in flex 3.0 desktop app AIR of any size (2 mb ,etc) and then loading it to the image control
please help....
Thanks

Instead of using FileOutputStream to output your thumbnail to the filesystem, use the ServletOutputStream returned by ServletResponse.getOutputStream() to stream your data back to the browser client. Make sure you set your MIME type appropriately using ServletResponse.setContentType() so the browser knows what kind of data it is receiving and can handle it appropriately.

Similar Messages

  • Slow creating ReportDocument object and loading report

    Hi all,
    I realise this question has come up several times before, I've been searching the internet and have found similar problems but non that match my own. Sorry this is a little long winded but I would like to give as much detail as possible.
    I use CR 2008 and VS2010 on my development machine. And I have installed CR 2008 Redist SP3 on the production server.
    My application is a simple console application accepting parameters such as report name, print or export, and of course the report parameters.
    CrystalDecisions.CrystalReports.Engine.ReportDocument rptDoc = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    rptDoc.Load(sParamDOC); //sParamDOC being the report name passed in via command line
    It has to be like this because it integrates into an old system in the background. Of course it being like this means I can not pre-load dll's on application startup (as I've seen suggested several times).
    All of this is in house, I'm an OU administrator and an administrator on the server. The server is only accessed via remote desktop and the OS is windows server 2003. I installed all of the neccesary software to make this work.
    What is really puzzling me though is that when I use this program via command prompt, logged in as me, it creates the object and loads the report in a matter of seconds. Yet if anybody else runs it (even other administrators of the server) the program can take 30-60 seconds to create the ReportDocument object and the same again to load the report.
    I initially only noticed this for the standard users, which was why I created another admin to test. I don't think it's a problem with the report design because it works quick for me. I read an article about this happening with reports created in Crystal version 9. So I tested with a report made from scratch in 2008 and still get the same result. I also read another article about default printers, 'dissociate printer' option is selected and locally the default printers are set to the same printer also.
    Does anybody have any suggestions as to where I could look next?
    I saw in another article some registry keys you can use to turn on logging for crystal reports, I want to do this but where does it put the log files?
    Oh, one more thing the server orginally had redist 2.3 on when I noticed this issue, updating to SP3 (redist 3.3) if anything made it slower, and a little more inconsistant of load times.
    Thanks
    Gavin

    I figured out what this was. I thought I would come back and post incase anyone else has the same issue... the reason it was slow for the other users is because they could not access the internet. My program doesn't use the internet but the operating system is automatically trying to verify the dll's publishers. you can disable this see the following blog:
    [http://blogs.msdn.com/b/amolravande/archive/2008/07/20/startup-performance-disable-the-generatepublisherevidence-property.aspx|http://blogs.msdn.com/b/amolravande/archive/2008/07/20/startup-performance-disable-the-generatepublisherevidence-property.aspx]
    Regards
    Gav

  • Creating the outline and Loading data for TBC in 11.1.2.2

    Hi all, feelin kinda dumb here because this task really should not be as difficult as it seems.
    I am trying to Load the TBC application in 11.1.2.2 Essbase. I have followed the documentation to
    1. Install EIS
    2. create the metadata repository and load the xml file provided
    I now need to create the essbase cube from this metadata repository, I cannot seem to find any real steps as to how to do this, everything I found was pertaining to creating the repository. Can anyone help define what needs to be done and what steps I need to take, I am new to EIS and Studio so the simpler the better :)
    thanx

    thanx, this did give me a better understanding of essbase studio, thank you. It did not help so much as getting the structure and data from the repository into essbase. For that from what I understand I can import models from EIS (where I loaded the TBC) one. In doing this I get an error saying that it cannot find any models (which I know are there because I can look at them in EIS. Unfortunately, looking over other posts, I installed Studio on a 64 bit server, which may be the issue I am facing (I hope)
    I am going to try and reinstall studio on a 32 bit platform and try the import again.

  • Creating scenario dimension and loading data

    Hi all,
    We have two fact tables. The first one is sales that include quantity and subtotal columns. The other one is budget that include quantity and subtotal. We are working with hyperion essbase 9.3. First of all we are creating two model. For sales model we create 7 dimensions (product, chanell, time, company, currency, customer, account) and 3 attribute dimension and for budget model we create 4 dimensions (account,company,customer,product) in metaoutline. And we create 2 application for each metaoutline. We plan to report sales vs budget but we don't know how to join sales and budget data. Everybody recommends scenario dimension. we don't know how to create sceneraio dimension and in which application Essbase integration or Essbase administration services.
    thank you.

    I agree with Cameron. The best way is to put them into one cube. Since you are using a SQL source you can manulate it to have your budget load to the same time level as your actuals. For example suppose you load actuals daily and Budget is Monthly. for consistancy, you could load the budget data into the 15th day of the month. At the Monthly level where you would compare budget to actual, the numbers will be correct. Loading into dummy members for the dimensions that don't exist for budget is a common practice when trying to sync up data. If you really want to make it easy, you could union a view to make it look like you have a single fact table (based on the combo of budget and actual) and have a single metadata outline to load everything. I prefer having two because of different load requirements, but this is an option.
    If you don't want to go this way, the next option is to partition your budget data into the actuals cube. this would keep them seperate but allow you to see them togeter. Between the two option, I prefer the single cube approach better

  • Accordion load event does not fire when accordion and load event created dynamically using actionsript

    I cannot get the accordion load event to fire when I have
    created the accordion and load event using actionscript . Here is
    some sample code:
    createClassObject(mx.containers.Accordion, "acc",
    getNextHighestDepth());
    acc.createSegment(mx.containers.ScrollPane, "sc1", "Number
    One");
    acc.createSegment(mx.containers.ScrollPane, "sc2", "Number
    Two");
    var accLis=new Object();
    accLis.load=function(evtObj) {
    trace("load");
    accLis.change=function(evtObj) {
    trace("change");
    acc.addEventListener("load", accLis);
    acc.addEventListener("change", accLis);
    I made sure to add the ScrollPane and Accordion components
    to my library. So the load event does not fire, but the change
    event does fire. And through further testing the other events do
    not fire, including the draw event. Can anyone help? The only time
    I can get the load event to fire on an accordion is if I put an
    accordion on stage, select it and add the actionscript to the
    objects actions like shown below:
    on(load) {
    trace("load");
    on(draw) {
    trace("draw");
    Can somebody help? Unfortunately I must create all my
    components dynamically. Thank you in advance.

    I'm having this issue also...but only apparently with Internet Explorer and only on some machines...ideas?

  • Creating photo thumbnails?

    I hate to use the "F" word, but in FrontPage I could use
    Ctrl-T to change a photo on a page to a thumbnail, and it created
    the link to the original.
    How do I do this in DW CS3? I did Commands/Create Web Photo
    Album, but that wants Fireworks. I can't afford to by FW now. Isn't
    there a simpler way other than manuall creating the Thumbnails and
    linking them to the originals?
    I hate that I may have lost a function I used often in FP.
    Gary

    "Joris van Lier" <[email protected]> wrote:
    >>"Clancy" <[email protected]> wrote
    >> PHP has very good functions for manipulating photos,
    including producing
    >> thumbnails,
    >
    >Please do preferably with code examples that we can turn
    into
    >ServerBehaviors :)
    The image manipulation facilities are a bit slow (6-10
    seconds per set of 3
    images), so I only use them to set up the working images on
    my own PC, before I
    upload them. I haven't tried running them on the remote
    server. $quality is a
    constant which determines the quality and degree of
    compression of the new
    image. 100 gives no compression, 80 gives a good-quality
    image of reasonable
    size, but anything much below 70 gives very obvious "ringing"
    on things like
    telegraph poles against a blue sky.
    I don't know about 'ServerBehaviors', so you'll have to work
    that out :)
    Notice that in my example procedure I reset the time limit
    for every new image.
    I normally set this to 1, so I don't wait foreverwhen I write
    the inevitable
    infinite loop, but this way I don't time out halfway through,
    but I don't wait
    for ever if I do write an infinite loop.
    These functions worked for me with php set up as instructed
    by David Powers in
    his book "PHP for Dreamweaver 8".
    To get the EXIF information function working I had to
    uncomment the lines:
    extension=php_mbstring.dll (already included)
    extension=php_exif.dll
    in the file php.ini
    A. Shrink image.
    <?php
    // Set up $orig_image as full path/file name of image to be
    reduced
    // eg Flowers/Orchids/Diuris/DSCN1055.JPG
    // 1. Create an image object (presumably a bit map?) from it.
    $wkg_image = imagecreatefromjpeg($orig_image); // Working
    copy of original
    image
    // 2. Get original size
    $size = getimagesize ($orig_image); // Get dimensions
    // 3. Decide new dimensions (the magic numbers used here are
    explained in the
    example below)
    $height = $scale[$k][0]; $width = (int) ($height*$ratio);
    // 4. Decide where to put target. Again full path/filename
    $target = $path.$image;
    // 5. Create a temporary image object the size of the new
    image.
    $temp_image = imagecreatetruecolor($width, $height);
    // 6. Resample the image into the new object (if you replace
    the zeroes with
    offsets you can specify a portion of the image to be sampled
    -- I haven't tried
    this)
    imagecopyresampled($temp_image, $wkg_image, 0, 0, 0, 0,
    $width, $height,
    $size[0], $size[1]);
    // 7. Convert it to JPEG
    imagejpeg($temp_image, $target, $quality);
    // 8. Discard the temporary images.
    imagedestroy($temp_image);
    imagedestroy($wkg_image);
    // Done!
    B. Procedure to list all EXIF (image header data). I'm not
    too sure how this
    works, but it does! (Comes from the manual.)
    // Specify source file
    $old_image = 'Dev/Original/DSCN0389.jpg';
    echo '<p>T:153. Trying to read data from
    '.$old_image.'</p>';
    $exif = exif_read_data($old_image, 0, true);
    echo "T:157 '.$old_image.':<br />\n";
    foreach ($exif as $key => $section)
    foreach ($section as $name => $val)
    echo "$key.$name: $val<br />\n";
    C. Actual procedure to scan directory, get updated files, and
    generate large,
    medium and thumbnail images meeting specific size
    constraints. (Large fits
    nicely on 1280*1024 screen, Medium on 1024*768 screen.)
    // (This is not written as a procedure, just included when
    needed. It is
    included purely to show you an actual working example using
    these functions)
    // 23/10/07 Created
    $get_img = array (false, false, false);//
    $changed = false;
    $quality = array (80, 80, 75);
    $img_dirs = array ( 'Large/', 'Images/', 'Thumbs/' );
    $pattern = ".jpg"; // I only want .JPG images
    // Apply different algorithms according to shape of image and
    required size.
    $limits = array (
    0 => array ( 1.05, 1.61 ), // Large image
    1 => array ( 1.0, 1.725 ), // Normal image
    2 => array ( 0.1, 1.125 )); // Thumb
    $scale = array (
    0 => array ( 830, 770, 1240), // Maximum dimensions
    (Height for portrait, then
    landscape, then width for superwide)
    1 => array ( 610, 550, 950),
    2 => array ( 160, 160, 180));
    // See which sizes have been requested.
    if (array_key_exists('ck_l', $_POST)) { $get_img[0] = true; }
    //echo
    '<p>Im_2_22: $get_img[0] = true</p>';}
    if (array_key_exists('ck_m', $_POST)) { $get_img[1] = true; }
    //echo
    '<p>Im_2_23: $get_img[1] = true</p>'; }
    if (array_key_exists('ck_t', $_POST)) { $get_img[2] = true; }
    //echo
    '<p>Im_2_24: $get_img[2] = true</p>'; }
    // Abandon if 'Cancel' set.
    if (array_key_exists('cancel', $_POST))
    $edit_data['action'] = 0; $edit_data['ind_act'] = 0;
    $changed = 0;
    else
    $dir = $edit_data['f_path'].'Original';
    //echo ('<p>Im_2_34: Trying to open
    '.$dir.'</p>');
    f (is_dir($dir))
    if ($dh = opendir($dir))
    //echo "<p>Im_2_39: ".$dir." opened OK.</p>";
    while (($image = readdir ($dh)) !== false)
    $orig_image = $dir.'/'.$image;
    if (stristr ($orig_image, $pattern))
    //echo "<p>Im_2_46: Next image =
    ".$orig_image."</p>";
    $src_date = date ("ymdhis",filectime($orig_image)); // Get
    date file
    updated
    set_time_limit(4);
    // Got an image. K = 0 (large), 1 (normal), 2 (thumb)
    // See if already present, and later version
    $wanted = false;
    $k = 0; while (($k < 3) && (!$wanted))
    $w[$i] = false;
    if ($get_img[$k]) // Want this size?
    $target = $edit_data['f_path'].$img_dirs[$k].$image;
    if ((!file_exists($target) || (date
    ("ymdhis",filectime($target))
    <= $src_date)))
    $wanted = true; $w[$k] = true;
    $k++;
    if ($wanted)
    $wkg_image = imagecreatefromjpeg($orig_image); // Working
    copy of
    original image
    $size = getimagesize ($orig_image); // Get dimensions
    $ratio = $size[0]/$size[1]; // Calc ratio of width to height
    echo '<p>Im_2_72: Size = '.$size[0].', '.$size[1].',
    '.$ratio.'</p>';
    $k = 0; while ($k < 3)
    if ($w[$k]) // Want this size?
    if ($ratio > $limits[$k][0])
    if ($ratio > $limits[$k][1])
    $width = $scale[$k][2]; $height = (int) ($width/$ratio);
    else
    $height = $scale[$k][1]; $width = (int) ($height*$ratio);
    else
    $height = $scale[$k][0]; $width = (int) ($height*$ratio);
    $target = $edit_data['f_path'].$img_dirs[$k].$image;
    echo '<p>Im_2_76: $k = '.$k.', Width = '.$width.',
    Height = '.$height.', orig:
    '.$size[0].' * '.$size[1].', Target = '.$target.'</p>';
    $temp_image = imagecreatetruecolor($width, $height);
    imagecopyresampled($temp_image, $wkg_image, 0, 0, 0, 0,
    $width, $height,
    $size[0], $size[1]);
    imagejpeg($temp_image, $target, $quality[$k]);
    imagedestroy($temp_image);
    $k++;
    imagedestroy($wkg_image);
    $changed = 1; // Magic numbers for my program
    $edit_data['action'] = 0; // Flag file written correctly
    $edit_data['ind_act'] = 2; // Generate index logical next
    step
    ?>
    Clancy

  • Insert static picture between thumbnails and sliding pictures

    Hello everybody,
    I try to create a fullscreen slideshow behind a static picture with transparent areas in muse ... unsuccessfully!
    In the fullscreen background should be the changing pictures.
    Over these sliding pictures, one static picture with transparent areas, fullscreen (important!), so that you can see parts of slideshow.
    And in the foreground has to be the thumbnails and buttons trigger to control slideshow.
    How can I insert a static picture between thumbnails and sliding pictures?
    Thank you!

    http://www.auttec.de/cross_test/

  • Distribution won't create .cds file or load previous .cds file

    I have successfully created a distribution for my CVI8.0.1 application, and deployed it with no problems.  However, although the settings work, a .cds file never gets created - I checked in the directory.  When I close CVI and start it up again, it complains that the .cds file is missing.  My distribution settings are gone, and I have start all over again, from 'Manage Distributions > New' etc.  I also can not add a .cds file to the Manage Distributions->Add that I can see in the directory and that has beeen previously created.
    This is  new thing, I was previosly able to create .cds files and load previously created .cds files. Nothing, as far as I know has changed on my PC.  I am running Windows XP.  I reinstalled CVI but it did not help.
    All of the code is in clearcase, several people (at different times) edit the files in the project and create distributions.  Other people also running CVI8.0.1 can create .cds files. 
    What can I do?
    Lorrie

    I've made a modified version of cvi.dll to log some operations. Swap the attached version out with the one in your National Instruments\CVI80 directory (make sure to back up the original so you can restore it later). Then launch CVI, open the Manage Distributions dialog, and try to add an existing .cds file. Close CVI, then look for the log file c:\cvi_log.txt and post it back here.
    Hopefully if we can figure out what's failing in the add, it will explain why the save is failing, too.
    Mert A.
    National Instruments
    Attachments:
    cvi.zip ‏4267 KB

  • Open a disk image file and crop it to an Image control

    Hi Folks,
    I am trying to allow my users (in a browser) to select/open a disk file (image type) so that they can see it and then save it to the server.  I can use the FileReference object just fine, and load its 'result' directly into a MX:Image control.  However, before I do that I would like to crop the selected imaged to a square shape.  I'd also like to resize the image down, but that will come later, once I get the cropping working.
    I am essentially taking the FileReference result bytearray and converting that to a BitmapData object.  Then, I 'extract' a square of data from that BitmapData object into a new BitmapData object.  Then I need to get *that* BitmapData object into the mx:image control.  I tried using a Bitmap to do so, however the resulting mx:image, while 'sized' correctly, displays as a blank white region.  All along, the variables seem to be 'full' of data and seem to have properly set attributes.  I've looked up quite a few sites that demonstrate cropping, and copying images, but they always start out with 'pre-loaded' images.  I have modeled my code after theirs, where appropriate.
    Here is my code:
              //this gets called when the user clicks a button to 'look for a disk file'
                private function setPhoto():void
                    //create the FileReference instance
                    _fileRef = new FileReference();
                    _fileRef.addEventListener(Event.SELECT, onFileSelected);
                    //listen for the file has been opened
                    _fileRef.addEventListener(Event.COMPLETE, onFileLoaded);
                    var arr:Array = [];
                    arr.push(new FileFilter("Images", ".gif;*.jpeg;*.jpg;*.png"));
                    _fileRef.browse(arr); //then let go and let the event handlers deal with the result...
                private function onFileSelected(evt:Event):void
                    _fileRef.load(); //the result of the 'load' will be handled by the 'complete' handler
                private function onFileLoaded(evt:Event):void
                    var tempLoader:Loader = new Loader();
                    tempLoader.loadBytes(_fileRef.data);
                    tempLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaderComplete);
                    //imgPhoto.source = _fileRef.data;  //this would work just fine, though, it wouldn't be cropped
                private function onLoaderComplete(event:Event):void
                    var loaderInfo:LoaderInfo = LoaderInfo(event.target);
                    var loadBD:BitmapData = new BitmapData(loaderInfo.width,loaderInfo.height);
                    //ok, now that we have the 'original' file in the bitmap data, we can crop it and then later resize it
                    //so, we need a 'square' of image cropped out of the original
                    //so...first we get a square of the 'full size' image
                    //if the image is taller than wide, we will take a square as wide as the image, and as tall as it is wide, starting 5% down from the top
                    //if the image is wider than tall, we will take a square as tall as the image, and as wide as it is tall, from the horizontal middle
                    var curW:int = loadBD.width;
                    var curH:int = loadBD.height;
                    var cropX:int = 0;
                    var cropY:int = 0;
                    var cropW:int = curW;
                    var cropH:int = curH;
                    var needCrop:Boolean = true; //default is to crop
                    var croppedBD:BitmapData;
                    if (curH > curW)
                        cropY = Math.round(curH * .05); //start at 5% down
                        cropH = cropW;
                    else if (curW > curH)
                        cropX = Math.round(curW/2) - Math.round(curH/2); //start at the middle, go 'back' by half the height
                        cropW = cropH;
                    else
                        needCrop = false; //it's already a square!  nothing to do (aside from the resize)
                    if (needCrop)
                        croppedBD = new BitmapData(cropW, cropH); //at this point it is 'empty', so fill it up
                        var fillPoint:Point = new Point(0,0); //since we're gonna fill into the top, left pixel on down and over
                        var fillRect:Rectangle = new Rectangle(cropX,cropY,cropW,cropH);
                        croppedBD.copyPixels(loadBD,fillRect,fillPoint);
                    else
                        croppedBD = loadBD;
                    imgPhoto.source = new Bitmap(croppedBD);  //this produces a properly sized, but blank-white image
    And here is the mxml for the image:
    <mx:Image id="imgPhoto" x="40" y="126" maxWidth="200" maxHeight="200" />
    Thanks!
    -David

    Hi,
    You were close to the solution.
    In "onLoaderComplete(event:Event):void", at the begining you create a BitmapData called "loadBD", you just forgot to fill it with the content from the loaderInfo.
    private function onLoaderComplete(event:Event):void {
         var loaderInfo:LoaderInfo = LoaderInfo(event.target);
         var loadBD:BitmapData = new BitmapData(loaderInfo.width,loaderInfo.height);
         loadBD.draw(loaderInfo.content);
    Kind regards,
    Mich

  • Creating square thumbnails from both landscape & portrait images

    I make regular use of a Flash image gallery that requires me to provide small square 50 x 50px thumbnails whatever the shape of the original images. The only solution I have found so far is to first manually sort my original images into landscape and portrait folders and then run a different action on each folder to create the thumbnails.
    Is there any way to design an action that would work equally well on both landscape and portrait images?
    David

    he will do a centered 1;1
    David C Anderson wrote:
    JJMack,
    I am confused. You said that your CraftedActions package has a plug-in script you can use in Actions to do a 1:1 center crop and you said the name of the relevant action was AspectRatioSelection. I have loaded CraftedActions into Actions but cannot see anything called AspectRatioSelection. Please clarify.
    There is no Action for cropping. There are 12 scripts in the package *.jsx they go into Photoshop's scripting Path. Like PSversion\presets\scripts\
    On of the scripts has the name AspectRatioSelection.jsx it is a Plug-in script it does not crop it can set AspectRatioSelection and make AspectRatioPath they can be rectangular or ellipse. You can record a Cropping action using it.  Takes two steps.
    Step 1 menu File>Automate>Aspect Ratio Selection...  in the dialog set it like this
    Follow that step with Step 2 menu Image>Crop
    That will do the largest 1:1 centered crop possible. You can follow that with a Image Size or Automate fit image and set width and height to 50PX
    That would look like this note red checks I turned off the fit image step

  • Thumbnails and image viewer

    I need to make a page with a bunch of thumbnails, where
    clicking on any of the thumb nails makes that image appear bigger
    in a different part of the screen. I know this can be done but I
    cant remember that the terminology is. Could someone tell me what
    this is called so I can google a tutorial on this?
    thanks
    james

    Hi.
    It´s easy. I will try, with my bad english, explain you
    how to do it. Only
    as trainer.
    1. Create a table with 2 cells and 2 rows.
    2. Now in the first left cell insert one of the thumbnail.
    3. In the second left cell insert another thumbnail.
    4. Now select the two right rows, while click right and
    select table-combine
    cells. Insert here one of your big image. This will be the
    image wich will
    be seen when the page loads.
    5. Select the images, one to one, and down in the Properties
    Inspector you
    will see a small image. Give a name to every image in the
    small white box.
    6. Select the first thumbnail and click the Tag Inspector
    menu. Click the +
    in Behaviors and select Swap Image.
    7. In the new Swap image box select the name of your big
    image and in the
    Source image click browse and select the big image wich
    correspond to the
    thumbnail you select in point 6.
    Repeat the process.
    For default the swap image is set on mouse over, click over
    "on mouse over"
    and change it for on click.
    I hope that you understand this steps.
    "jdldn" <[email protected]> escribió en
    el mensaje de noticias
    news:g83mp2$sah$[email protected]..
    > Thanks Miguel.
    > I found this tutorial on Disjointed rollover.
    >
    http://www.youtube.com/watch?v=FJpUs6NBbWo
    >
    > Sorry I didnt state earlier, but what I want is a
    Disjointed rollover, but
    > where you have to click on the thumbnails, not just
    hover your mouse over
    > them.
    >
    >

  • Create image of XSTRING data and display it in Web Dynpro

    Hello,
    I am trying to dynamically display an image in a Web Dynpro ABAP Image-Control. The problem is that the data is stored in the DB as XSTRING and I can't find a Method for example to create a new object in the MIME-Repository of the data which is read out of the DB at runtime.
    I have already converted the XSTRING into w3mime-Format with the function module RSFO_XSTRING_TO_MIME, but the Control needs a string of a url to display the image (for example to a MIME-Object of the component or a link to a file on the ITS).
    Is there somehow a possibility to do this?
    Thanks for your help,
    Kolja
    Solved this way: See /people/brian.mckellar/blog/2003/09/30/bsp-in-depth-writing-an-http-handler
    Message was edited by: Kolja Ewering

    Hi you may go through the below post to find what could be a better way to do that.
    http://forum.java.sun.com/thread.jspa?threadID=5163829
    REGARDS,
    RaHuL

  • Help with adjusting spacing between thumbnails and image in slideshow

    How can I adjust the spacing on the slideshow page?
    Customer wants more space between the thumbnails at the top and the image(s). Can I move the image & navigation tool or adjust the image size relative to the thumbnails and navigation tool at the bottom?
    Although I'm familiar with html source code and working on simple stuff at that level, I have yet to locate it in iWeb and make any adjustments.
    If anyone has step-wise instructions, I'd appreciate it. Thanks much.

    Although I'm familiar with html source code and working on simple stuff at that level, I have yet to locate it in iWeb and make any adjustments.
    iweb photos page's elements: header controls, detail view and footer controls are generated by ajax widgets, so there is nothing to in page source for you to find.
    If anyone has step-wise instructions, I'd appreciate it. Thanks much.
    that would be the instruction on how ajax widgets build photos page... there is none.
    you can send feedback to apple and ask for details on iweb widgets and tools to build widgets.
    that said, it can be done... check out with safari: http://temp.cyclosaurus.com/DetailView_Rearranged/Photos.html
    code is linked to my example, i don't do tutorial.

  • When I cull through my images in the filmstrip everytime I use my right arrow and rate a photo it jumps back to the first thumbnail and i have to arrow all the way back to where I left off.  Is this a setting issue

    When I cull through my images in the filmstrip everytime I use my right arrow and rate a photo it jumps back to the first thumbnail and i have to arrow all the way back to where I left off.  Is this a setting issue

    Art,
    I am trying to follow your very precise steps, and in my case (PSE11 also, Win7), the focus stays on the edited picture after I return from the editor to the Organizer. I am pretty sure that in the previous post describing your situation, I was able to reproduce the problem, but I don't remember on which version. I just tried in 'Folders' view mode to edit in a selected folder, then I clicked 'All media' so that no folder was selected. Same result in both cases.
    Even if you prefer to work in folders view, you could take advantage of the ability to use 'albums'. It's a misleading word to describe a selection, a 'collection' of pictures, which you can sort as you want. It's a kind of  'playlist' like with music items. In the organizer, you can select a folder and create an album (even a temporary one) just by choosing 'create instant album'. Suppose you have made an album from a folder or a selection of highlighted pictures to edit. You can order them in date order, import batch or 'custom' order'. Since PSE12 you can also sort them in filename order. You should never lose the 'focus' on your last edited picture when coming back from the editor to the organizer. If the purpose of that album is only to help in organizing an editing session, you simply delete the album (the playlist) if you don't want to keep the list afterward.
    I hope someone will be able to confirm how that can happen...
    Edit;
    I have just read Brian's post.
    That may be the difference...

  • Some images not loaded in flex Image Control.

    Hi,
        Can anybody help me. I am loading friends album image in flex Image control. Its strange that some image do not load even the path is fine and I can open in browser.  I think there is time out issue.
    Thanks in advance.

    Hi premkant81,
    Try to register the following event Listeners and try to trace out the problem...
    I hope you are using either Loader or URLLoader to load the images...Try to register the below  eventListeners for the Loader..and check
    HTTPStatusEvent.HTTP_STATUS
    SecurityErrorEvent.SECURITY_ERROR
    IOErrorEvent.IO_ERROR
    What is the size of the Image files you are loading...???
    Thanks,
    Bhasker Chari

Maybe you are looking for

  • External Monitor won't work

    I have a MBP 17" Late 2011 model with the Intel HD 3000 and AMD 6770M grpahics cards. I have read through many of these posts and found the exact same problem that I am having as well. I hook up a monitor through the VGA connection; Windows sees the

  • Mail (Lion) & Exchange 2007, periodically stops receiving messages, does no hang

    As the title says, we are having this issue.  I saw another post last year about Exchange 2010 hanging, and an old certificate caused the issue.  Our network admin is looking into that.  We are not experiencing any hangs.  Mail "works" fine.  We have

  • Where to build blog, based on these parameters

    It's been a long journey with lots of reading and experimenting. The setting: I build my site in iWeb, Publish to Folder, add tags in iWeb SEO Tool, and FTP to GoDaddy. SEO is very important to me, though I haven't implemented everything on my to-do

  • DME file with some cyrillic content

    Dear all, I'm tring to save DME file (payment medium) with some cyrillic content. It is displayed correctly on SAP GUI screen. But when I try to read saved file from disk, all cyrillic symbols are replaced by ####. How can I setup in which codepage t

  • Get notes out of contacts from blackberry bold 9650

    i use the notes section in my contacts extensively and as i am researching a move to an Phone or Android, want to find out the easiest way to transfer the notes section from the contacts. VZW is telling me they can only move the contacts and not the