Image rendering in flash

We are building a flash based product where we need to create icons for various modules. we are having challenges in look and feel of the icons- what looks really good on Adobe Illustrator/ Photoshop looks jagged on flashPlayer. A challenge we have is that the overall screen aspect ratio, and hence aspect for the icons which are relatively-sized, can change.
We were told in discussions with some adobe folks that
(a) we need to build icons which are square,
(b)in multiples of 32 pixels.
(c) use a png format
As per them, this way the pixelation is reduced and diagonal lines won't appear jagged- we still have an issue on rendering in flash player
Any ideas/ guidance on how to approach this?

You need to activate smoothing (bilinear filtering) which in Flash Professional is done via a checkbox.
In Flex:
If you target Flash Player 9, use the Smooth Image component:
http://cookbooks.adobe.com/post_Smooth_Image-4001.html
If you target Flash Player 10, the Image control has a new property smooth. Just set it to true.

Similar Messages

  • Datagrid Image Renderer Broken in CS SDK but not Flex project

    Within a Photoshop Extension, I have a DataGrid which has an inline custom image renderer whose dataprovider is an ArrayCollection called "photos"  representing a list of photos and some metadata properties.  One of the properties "fileName" is concatenated with a path to a thumbnail image such as source="{'LR_AUTO/imported/thumbs/' + data.fileName}".
    The dataprovider is bound to a LCDS DataService. When the extension is first launched, the dataservice initializes the dataprovider with the existing values for the "photos" arraycollection.  The thumbnail images are correctly shown.
    However, when the DataService receives a new row and updates the photos dataprovider, the datagrid's new row shows a broken image for the thumbnail even though the path is correct.  I have dumped the photos dataprovider and verified that all information is correct.  When I close Photoshop and relaunch it from Flash Builder, once again LCDS initializes the photos ArrayCollection and THEN the thumbnail that previously showed as broken show up correctly.
    I have a ColdFusion Directory Watcher Gateway that watches a directory where Lightroom auto-imports images from a tethered capture session.  When the camera sends Lightroom a new image, the new image is processed by Lightroom and moved to a target directory, and since ColdFusion's Directory Watcher is watching that targeted directory, ColdFusion will create a thumbnail image in a subfolder and notifiy LCDS that of the new image and related metadata.
    *** This is the interesting part *** When Lightroom places new images in the target directory, this is propogated to the Photoshop Extension's datagrid, and the new row shows up as described earlier, showing a broken image for the thumbnail.  BUT, instead of Lightroom, if I manually copy images to the folder where ColdFusion is watching, then exact same code path is exectuted and in the Photoshop Datagrid the new row appears and THE THUMBNAIL IMAGE shows up correctly.
    The difference seems to be only in how the images are put in the original target location.  The problem is when Lightroom puts them there, but it works when I put them there as a user.
    *** More Interesting Info *** I have the Flex code for the Photoshop Extension duplicated in a standalone, non-CSSDK project using Flex 3.4 which I launch in a browser.  I have mirrored the code in the Photoshop extension, but in this manner, the problem does not exist.  With plain Flex 3.4 in a browser, whenever LCDS notifies the datagrid of a new photo record, the datagrid's new row ALWAYS shows the thumbnail correctly.
    A primary difference in how the thumbnail image is rendered is that in a browser, the Flex 3.4 project accesses the image assets over the network, however, in the Photoshop Extension, the image asset WITH THE SAME RELATIVE PATH is accessed over the local file system.
    source="{'LR_AUTO/imported/thumbs/' + data.fileName}"
    So in the case of the browser, this path is a relative URL and the image is retrieved over HTTP, however, in the PS Extension, the same path represents a file system path relative to the project folder.
    Unfortunately, because the Flash Player (including APE) cannot access BOTH the network and the local filesystem, so I cannot change the Extension to use network access.
    ** The important part to remember is that when I stop the Flash Builder debug session and close Photoshop, then relaunch the debug with Photoshop, then all the images show up correctly in the Extension.
    Your advice is appreciated.
    Thank you!
    Steve
    ====================================================
    Environment
    ====================================================
    Photoshop CS5 Extended 12.01 x32
    Flash Builder 4
    CS SDK 1.02
    Extension Builder SDK 3.4
    MacBook Pro / OS X 10.5 / Intel Core 2 Duo 2.66 GHz / Procs: 1 / Cores: 2 / Memory: 8 GB
    App configured for Photoshop CS5 and Photoshop CS5 Extended
    ====================================================
    NewsAgencyPhotoshop.mxml
    ====================================================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="com.stevenerat.news.*"
                    horizontalScrollPolicy="off" verticalScrollPolicy="off" verticalGap="0"
                    layout="vertical" horizontalAlign="left"  backgroundColor="#353535"
                    historyManagementEnabled="false"
                    creationComplete="init();">
        <mx:Script>
                public function handlePhotoClick(data:Object):void {
                    this.PreviewImageWindow = PreviewImage(PopUpManager.createPopUp(this,PreviewImage,true));
                    var filePath:String = data.dirPath + data.fileName;
                    PreviewImageWindow.addEventListener("imageOpenEvent",imageOpenListener);
                    PreviewImageWindow.addEventListener("imageCloseEvent",imageCloseListener);
                    PreviewImageWindow.addEventListener("imageSavedEvent",imageSaveListener);
                    PreviewImageWindow.setFileName(data.fileName);
                    PreviewImageWindow.setFilePath(filePath);
                    PreviewImageWindow.y = 0;
                    PreviewImageWindow.x = 0;
            ]]>
        </mx:Script>
        <mx:ArrayCollection id="photos"/>
        <NewsPhoto/>
        <mx:DataService id="ds" destination="NewsAgencyPhotos" autoSyncEnabled="true" autoCommit="true" conflict="conflictHandler(event)"/>
        <mx:Label text="News Agency Photos" fontSize="20" paddingBottom="30"/>
        <mx:Label text="Available Images" fontSize="15"/>
        <mx:DataGrid id="photoIPTC" dataProvider="{photos}" editable="true" width="220" rowCount="5" rowHeight="75" wordWrap="true">
            <mx:columns>
                <mx:DataGridColumn headerText="id" dataField="fileName" width="40" editable="false" sortDescending="true"/>
                <mx:DataGridColumn dataField="psLock" width="65" headerText="Status" editable="false" editorDataField="value">
                    <mx:itemEditor>
                        <mx:Component>
                            <mx:ComboBox editable="false">
                                <mx:dataProvider>
                                    <mx:String>New</mx:String>
                                    <mx:String>Open</mx:String>
                                    <mx:String>Edited</mx:String>
                                </mx:dataProvider>
                            </mx:ComboBox>
                        </mx:Component>
                    </mx:itemEditor>
                </mx:DataGridColumn>
                <mx:DataGridColumn headerText="Photo" dataField="fileName" width="80" editable="false">
                    <mx:itemRenderer>
                        <mx:Component>
                            <mx:HBox horizontalAlign="center" horizontalScrollPolicy="off" verticalScrollPolicy="off">
                                <mx:Image click="outerDocument.handlePhotoClick(data);" source="{'LR_AUTO/imported/thumbs/' + data.fileName}" width="75" height="75"/>
                            </mx:HBox>
                        </mx:Component>
                    </mx:itemRenderer>
                </mx:DataGridColumn>
            </mx:columns>
        </mx:DataGrid>
    </mx:Application>
    ====================================================
    A DUMP OF THE DATAPROVIDER
    in this case, one array item existed when launched, then a second was added
    while running.  The first has its thumbnail show, the second item has broken image
    ====================================================
    ------------------DUMP----------------------------
    (mx.collections::ArrayCollection)#0
      filterFunction = (null)
      length = 2
      list = (mx.data::DataList)#1
        fillParameters = (Array)#2
        length = 2
        localItems = (Array)#3
          [0] (com.stevenerat.news::NewsPhoto)#4
            aperture = "F10"
            cameraLens = "EF24-70mm f/2.8L USM"
            cameraModel = "Canon EOS 7D"
            city = ""
            copyrightNotice = "¬© Steven Erat 2011"
            country = ""
            creator = "Steven Erat"
            description = ""
            dirPath = "/Users/stevenerat/LR_AUTO/imported/"
            fileName = "ERAT_STEVEN_20110122_162.jpg"
            focalLen = "42.0 mm"
            headline = ""
            id = 1
            iso = "100"
            keywords = "Alt, Dramatic, Fashion, Girl, Glamorous, Glamour, Inked, Model, Portrait, SOPHA"
            psLock = "New"
            shutterSpeed = "1/128 sec"
            state = ""
          [1] (com.stevenerat.news::NewsPhoto)#5
            aperture = "F10"
            cameraLens = "EF24-70mm f/2.8L USM"
            cameraModel = "Canon EOS 7D"
            city = ""
            copyrightNotice = "¬© Steven Erat 2011"
            country = ""
            creator = "Steven Erat"
            description = ""
            dirPath = "/Users/stevenerat/LR_AUTO/imported/"
            fileName = "ERAT_STEVEN_20110122_163.jpg"
            focalLen = "42.0 mm"
            headline = ""
            id = 2
            iso = "100"
            keywords = "Alt, Dramatic, Fashion, Girl, Glamorous, Glamour, Inked, Model, Portrait, SOPHA"
            psLock = "New"
            shutterSpeed = "1/128 sec"
            state = ""
        uid = "8BAC025E-60D1-11F1-3654-44BDB0D218CE"
        view = (mx.collections::ArrayCollection)#6
          filterFunction = (null)
          length = 2
          list = (mx.data::DataList)#1
          sort = (null)
          source = (null)
      sort = (null)
      source = (null)
    ------------------END_DUMP------------------------

    I expected that if my extension uses the local filesystem AND the network that I would get a Security Sandbox Exception as I recently described in this thread:
    http://forums.adobe.com/thread/791918?tstart=0
    However, I just tried changing my datagrid image renderer to access the thumbnail via HTTP and the thumbnail issue after Lightroom export does not happen.
                <mx:DataGridColumn headerText="Photo" dataField="fileName" width="80" editable="false">
                    <mx:itemRenderer>
                        <mx:Component>
                            <mx:HBox horizontalAlign="center" horizontalScrollPolicy="off" verticalScrollPolicy="off">
                                <mx:Image click="outerDocument.handlePhotoClick(data);" source="{'http://localhost:8500/LR_AUTO/imported/thumbs/' + data.fileName}" width="75" height="75"/>
                            </mx:HBox>
                        </mx:Component>
                    </mx:itemRenderer>
                </mx:DataGridColumn>
    Furthermore, I can also open the image via the Photoshop DOM, and it does open correctly.  It seems that I do have a solution now, although I'm not certain as to why I'm not getting a Security Sandbox Exception as I described in the other post.
    Thanks for reading.

  • SWIM Jobs show failed but all images are in flash

    I performed a software distribution on two different 3750 switch stacks using LMS 4.2.3 over a WAN link.
    The Job Report shows this:
    Copying c3750-ipbaselmk9-tar.122-55.SE4.tar from Software Repository to tftp-specific directory.
    Copied successfully to C:/CSCOpx/tftpboot/rep_sw_3381422663941666305
    Loading image file to flash device : rep_sw_3381422663941666305 --> flash1:c3750-ipbaselmk9-tar.122-55.SE4.tar using TFTP
    Error loading image to Flash. See C:\CSCOpx\files\rme\jobs\swim\5373\3750Stack_telnet.log for the output from the device on which the image transfer failed.
    Image Copy Operation Failed
    Device is unlocked.
    Device Upgrade Result : Failed
    However, when I look at the flash on both stacks, the IOS image with the correct filesize, folders, etc. all looks right. The show boot shows it will boot to the correct image. The telnet.log file shows all the files being copied and just ends after the last file (the .bin image).
    Does anyone know why this might report as failed even though the files are in flash?
    I have not yet reloaded either switch as they are in production.
    Thanks.

    OK I reloaded one of the stacks and it came up fine.
    Could this error be due to the fact that the upgrade was done over a WAN link and I did not put exec-timeout 0 0 on the line vty?

  • Image files in flash and fullsceen

    hi @all ..
    i'm sperimenting with a function to turn my flash site to fullscreen and i know that the best way to design such a site is to draw everything in flash using vector graphics ..
    BUT
    i have a site (wedding photographer) with lot of pictures and my logo and they are all jpg - png files ..
    obviously when i toggle to fullscreen every image that is not a vector graphic is "zoomed" and you can see the actual pixels in the image and on the cornes ..
    i wondered if there is a possibility to insert in the flash file the big images (like photos in full resolution of the monitor) that will be resized to small images when the site is not on fullscreen and that are displayed in their full size when in fullscreen ..
    now if i put only the big images in my flash file and resize them in the flash they get unsharp because they are bigger than they are displayed (lets say they are 1280x1024 and in the flash they are displayed in 1024x768 --> they are unsharp and you see pixels.. same thing if you have 1024x768 images that are displayed in 1280x1024)
    is it possible to have both resolution of the images and that they swap from one to other according to resolution of the flash file?
    i think it's not possible but if it is it would be apreciated

    Yeah, this forum is entirely appropriate for your question.
    The problem is an old one with Flash. The reason you see the
    'ghosted'
    background in the alpha channel of your PNG is that you have
    your colour
    depth set to 16 bits. If you crank it up to 32 bits, the
    anomaly will
    disappear. Unfortunately there's not a great deal you can do
    about it,
    except to break apart the image and actually delete the parts
    you don;t want
    to be visible.
    Remove '_spamkiller_' to mail

  • Display an image instead of Flash?

    I'm a little green when when it comes to this stuff.
    I have a site that has a couple of Flash elements that show
    fine. Due to the network security on my work computer, it means
    they don't show when viewed from there.
    Is there a way to display an image if the Flash element
    cannot be displayed?
    Thanks in advance of any help.

    Have you tested it with IE online or only locally?  Locally IE will usually prohibit displaying Flash content.

  • Showing image instead of flash for mobiles?

    I am just wondering if it is possible to show an image instead of flash content for mobiles?
    I want to allow the adobe sniffer to do its thing when it is people using pc and mac browsers and direct them to the plug in page to download the flash player if they need it, but is there a way to sniff for a mobile / smart phone browser and if they cant view flash it will show an image instead?
    Any help appreciated.

    You can use Javascript to detect the browser and platform for any given user. You can then parse that information to push the content that you want to use for the result. You can find a good write-up with example code here: http://www.quirksmode.org/js/detect.html

  • Maximum Image file size flash can handle?

    Does anyone knows the max image file size flash can load
    using MovieClipLoader?
    I tried 10.5 MB PNG file and Flash thinks it is loaded but,
    the actual image never shows up.
    Thanks,

    Well it is good for that client. But it still won't work in
    Flash. Sorry. You will need to slice the picture into different
    chunks at 2880 x 2880 max and reassemble the tiles in Flash.
    You may also run into an issue that things sometimes get lost
    if there is more that 16,000 (or thereabouts) pixels difference in
    their coordinates.

  • Why do images brought into flash from a psd appear differently when publish

    I am creating a flash banner using a layered psd.  The account team is happy with the look of the psd. BUT, when I bring the images into flash and publish the file, the colors look different.  I import them into flash at the highest quality yet they don't look the same.  Any advice?

    The answer relates to color spaces (profiles) and color management in Flash.
    In the other creative suite applications you work with a color space to define the colors your using—i.e., if you have #ff0000 full red this will be a different color in sRGB (an RGB color space) than Adobe 1998 (a different RGB color space). You need to have a color space (profile) to make sense of the color values.
    Flash doesn't honor profiles currently, which means it ignores these profiles. By default in Flash Player 10, and the only option in all players before 10, it gives these color numbers to the operating system without a color space, so the operating system is in charge of making sense of these numbers. In Windows it will assume these numbers are in the sRGB color space, on Mac it will assume that these numbers are in the monitor's color space (on my macbook this is Color LCD, which I believe is the color space for all macbooks by default).
    The way to get the colors to look the best in Flash is to make sure that the document is sRGB before you bring it into Flash. In Photoshop you can convert the colors into the sRGB color space, which will change these color values into the sRGB color space, by going to Edit -> Convert to Profile, and find sRGB in the RGB dropdown. Another way to do it if you are saving just a flat image is to use File -> Save For Web & Devices and check the Convert to sRGB checkbox on the right. Now when you bring the image in to Flash and publish it it should look right on Windows, and probably better on Mac.
    Flash Player 10 adds a feature where you can say that all the images are in the sRGB color space and it will hand the color values to the operating system as sRGB numbers. This makes it work better on Mac, if the swf file is viewed in an environment that honors profiles (Mac and Windows honor profiles but most browsers still ignore profiles, but that's getting better). You can turn this feature on by putting this code into your Flash file: stage.colorCorrection = ColorCorrection.ON;. Read more on that at this link: http://blogs.adobe.com/jnack/2008/10/get_better_color_through_fp10.html. I also gave a presentation on color management and blogged about it, which you can read about and watch here: http://blog.elliselkins.com/2009/02/flying-through-color-space-uflash.html.
    Feel free to ask me anything. Hope this helps.

  • Need to know how to disconnect the camera Nikon Ds3 (USB cable) properly after uploading images through bridge-do not want to lose images on compact flash card.

    Need to know how to disconnect the camera Nikon Ds3 (USB cable) properly after uploading images through bridge…do not want to lose images on compact flash card.

    Give #navbar a width that is wide enough to hold all of the buttons within it.
    #navbar {
         width:####px;
    Replace #### with a pixel number large enough to hold the nav buttons.

  • I just really need to know... After desigining my UX, how do I go about adding the image into ADOBE FLASH BUILDER to script on top of it?

    I just really need to know... After desigining my UX, how do I go about adding the image into ADOBE FLASH BUILDER to script on top of it?
    Any and all advice is welcome.

    Do you have different versions of the graphic novel pages, or is there just one version of the page? If there is one version, can you crop into the page without losing anything important?
    I would guess that there is one version, and that cropping into the page will lose something important. If that's the case, here's how I would handle it:
    Make a stage that is 14:9. The size doesn't matter, but 1400x900 could be a good starting point.
    Put down a background texture that fits well with the look of the other images. Make that fill the 1400x900 stage.
    Place your page graphics so that they are within the center 1200x788 area of the stage.
    Set the stage scalemode to "noBorder".
    You now have a layout that will work on all devices, as narrow as iPad, and as wide as iPhone 5. All without any code. On the widest devices you'll see a bit of your background pattern to the left and right of the page graphic. On the narrowest devices you'll see a bit of background pattern above and below the page graphic. But you won't lose sight of anything important.

  • Question about text rendering in flash authoring tool and in flash player.

    Hi everyone, i have found that:
    1. There has a subtle difference between a static text field in flash authoring tool which has been set to use the device font when it's got focus(state that user can type character in) and lose focus;
    2. There also has a subtle difference between when it is being rendered in flash player and in flash authoring tool.
    (Note that the key factor here is setting the text field to use device font.)
    I want to know  what causes this difference. Thanks in advance!

    both in flash authoring tool not flash player.

  • Why can't LR import dialog see images on my flash drive or drive drive.

    Everything was working great and now LR (version 5.6/camera raw 8.6) import dialog cannot see images on my flash drive or on my hard drive.  I'm using a MacBook Pro Retina running on OS X 10.10  There are no issues using the same flash card on my wife's MBP with LR for imports (uses the same LR S/W version and runs on OS X 10.10 as my MBP).  Also, iPhoto and Preview can read and import the Flashcard images just fine.  I'm puzzled.  Does anyone have a solution?
    Message was edited by: Dave Kinghorn

    Thank you i found disk utilities... however i was reading in another area of the community that if I reformat it on my mac that it wont work on a pc.... The whole reason for doing this is so i can give my rough editted footage to my buddy so he can combine all the footage from our unit and make one big video, and he has a pc. Also if reformatting is the cure to this problem how do i know what to reformat it to. It doesnt tell me partition sizes for each option.

  • MDT Image Deployment Using Flash Drive

    Hi,
    In my environment i am using MDT 2010 image deployment process to deploy Windows XP and Windows 7 OS images,
    As image deployment is foccussed on multiple remote locations we have planned to move with USB Flash drive (Pen Drive) for image deployment,
    The problem occurs here in normal system through diskpart utility i can able to get all the disks including my flash drive but in win pe mode i am unable to get my flash drive listed in diskpart utility.
    so the image deployment process hangs on to the microsoft solution accelerator screen i am unable to predict the actual reason but i can predict this can happen because of mass storage driver problems.
    I tried the same using USB Hard Disk and succeded with the deployment and i am unable to guess what makes difference between USB Hard disk and USB Flash Drive.
    Can you just help me out on this to close the problem ASAP..
    So that i can proceed with my roll out activities.
    Thanks in advance,
    Siva

    Hi,
    At last the image deployment using flash drive works for me.
    I attempted the following steps,
    First i converted the flsh drive to bootable flash drive using diskpart utility,This can be done in Windows 7 Operating system only.
    navigate to cmd and type Diskpart,and enter the below commands,
    List disk
    Select Disk no
    create partition primary
    select partition no
    active
    format fs=ntfs
    Assign
    Exit
    Upon completition,Insert windows 7 DVD to the system and do the following
    Navigate to DVD Drive in my case it is G: and change directory to boot
    G:cd boot
    G:\Boot>Bootsect.exe /nt60 I: where I: is my flash drive
    Then copy the contents to the Usb flash drive and change the first boot device of the target system to local hard disk and deploy the image
    while in Win pe mode use disk part utility to check whether your disk got detected.
    If everything is ok then it will work.
    Thanks for your valuable time.
    Thanks and Regards,
    Siva
    Thanks Siva Aadhi-CIT. MCITP

  • Background image blew my flash file

    Hi Guys,
         hope someone could help me this time, i just have this question about my background image blowing up the size of my swf file. i have a 1000x600 canvas which has the same bg image, and when i publish it, my swf file has a size of 468kb, but when i remove the background image the file was reduced to 57kb.. the image was a png-24 326kb image, and its not the file in my flash that has this file size. just wondering wut happened that it gives that huge adjustment to the file?

    Recommendations:
    1) I believe the setInterval activity is what ends up breaking things.  Get rid of all the setInterval and clearInterval elements.  Just use setTimeout instead, which you won't have to worry about clearing.
    2) The file performance is likely suffering due to the size of the images versus the portions of them that actually get used.  Create/crop the images outside of Flash to the size they will be in the Flash file, optimize them, and then import them.  Also, if you combine all the elements that you animate at once together into one symbol (the text, background, and button), and animate that symbol instead of the different pieces separately, things will probably animate more smoothly as well.

  • My PrE 11 App Crashes during DVD Burn at ~72% thru Encoding Media - image renderer dll

    This error occurs consistently with a project I just started.  Project was initially created under PrE 2 then Copied via Archive and continued under Pre 11.  I'm a new user and I need some of your expert help to resolve this.  Windows 7 event viewer signature is as follows:   Hope you can help me with this I've spent 2 days working this so far.
    oops - don't know how to insert text (.doc) file here. Will add in later post. Thanks for your interest.

    Reporting progress this AM:
    Windows updates are installed and current in both HP (Win 7 64) and Dell (XP 32).  It appears anti-virus does not have any involvement in either case.  Last set of trials had Norton on and active and had predictable outcomes (more later).  Based on this mornings test cases it could be that Win 7 PrE 11 64 bit DVD Burn process (Sysinternals has PrE burn.exe running at 32 bits) is more sensitve to bad scene clips than the Win XP PrE 11 32 bit DVD Burn process.
    Test cases performed today...Methodology -- since my detailed examination of the Project timeline did not turn up any answers I proceeded with a set of Tests to remove major scenes from the offending project stating from the END and working forward performing a project save and PrE restart after each scene removal. 
    Test case A - removed last scene, reduced timeline total from 01:00:18:00 h to 00:58:00:16. The resulting autoplay DVD burn on HP Appcrashed at 74% thru 'Encoding Media'.  Last result prior to this was Appcrash at 71%.  I then tested this Project case A against the Dell autoplay DVD burn which was good as expected.
    Test case B - also removed the next to last scene, reduced timeline total to 00:54:07:28.  The resulting autoplay DVD burn on HP Appcrashed at 80% thru 'Encoding Media'.  Spotting a trend, I calculated the offending timeline event to be approximately 00:42:45:27 to 00:43:20:15.  Going to this point in the Project timeline I once more looked for any artifacts or gaps. Finding none I also removed the continuous sub-scene starting at 00:42:45:26 ending at 00:43:45:08. 
    Test Case C - Removing the sub-scene along with last 2 scenes reduced the Project total timeline to 00:53:13:18.  The resulting autoplay DVD Burn on HP Appcrashed this time at 82% thru "Encoding Media'. So...examining the total timeline scene at around 00:43:00:00 I find 13 more sub-scenes that are derived from a set of old 8mm film conversions to .avi files.  The sub-scenes are moderately adjusted for lightness and color and are a little out of sequence from the original .avi files.  So lets remove them all.
    Test Case D1 - Removing the last 2 scenes and the 4th scene from last, reduced the Project total timeline to 00:50:42:00. The resulting autoplay DVD Burn on HP was successful!  I then prepared a Travel-Menu-based DVD Burn on the HP with 3 scene markers and it also was successful.  So I believe the Project may be OK under HP Win 7 64 PrE 11 by removing or perhaps re-editing the 4th from last Scene.  To test this conclusion I will add the last 2 scenes back into the Project and try a Menu-Based Burn on both the HP and Dell platforms.  I believe it will work .. will report back.
    This conclusion does not explain the root cause(s) for the ProblemSignature 'Image Renderer dll Appcrash' but may establish a workaround for this project.  For the 4 Test cases iterated here I used the referenced Process Explorer Sysinternals to look into potential process conflicts.  After Test Case B the Sysinternals was used to examine the 'Adobe Premiere DVD burn.exe' thread (TID 4948, CPU 0.05).  Message reads " Dbghelp.dll Configured does not support the Microsoft Symbol Server. Please download & install the Microsoft Debugging Tools for Windows to get a version that works."  This action is way beyond my experience level.  I will await overwatch input and continue with workaround analysis.
    Apologies for tedious details...but, making progress. Thanks for listening & guidance. rdub

Maybe you are looking for

  • Mass Processing of BDoc

    Hi All, We have a scenario in which there are 125000 bdoc messages are being transferred between R/3 and CRM every night as a part of batch process. We would like to know if there is anyway by which even the processing of these BDoc messages can be g

  • IChat using a Google Talk account shows XMPPErrorDomain error 6 when displaying buddy on iChat Server

    My brother uses iChat with a GMail account. I run my own iChat Server (OS X 10.6.7) with XMPP federation (cachain entry in s2s.xml commented out so that Google federation works when a self-signed certificate for iChat Server). This worked fine in the

  • Old emails not showing in mountain lion mail

    I installed mountain lion and now, some of my emails received before the installation do not show text. They only show the header and in the text area the circle and "loading", but the text never appears. How can I fix that?

  • How making a email suscribe with adobe dreamweaver

    hallo anyone how to make email suscribe form with adobe dreamweaver for my site http://hargahpsamsunggalaxy.com/

  • Total

    Hi Experts, I would like to calculate the total of some transactions of journal entry in the past until selected period. It is a year to date data. I use table OJDT, JDT1, OFPR, OPRJ and OACP. So, the field OFPR.code is a condition. E.g. select sum..