Dynamic Loading of image-Works in Designer bt fails when viewed in infoview

Dear All,
I am trying the display Dynamic Image by setting the property of OLE Object "Format Graphic -> Picture -> Graphic Location Property. I am retrieving the image using  an web application (which is developed in .Net platform). When I set the URL and preiview the report in Crystal Designer it works fine, but when I publish the report to info view it fails. The report displayes the original Image which was used while inserting the object in the report.
The sample URL to retrieve image is mentioned below;
http://<Server Name>/getmyimage.aspx??PID=&FID=ac1788f2-40a8-4b93-ae9b-48c2ef7b6287.JPG&W=335&H=145&ZI=0&ratio=1&TIMESTAMP=20101025T110523Z&random=0.9074388616085233
I searched the forum topic and found several posts.
One of the resolution I understed was to replace u2018?u2019 with u2018??u2019 so that the parsing of image will be done accurately. I also tried this but it could not resolve issue.
I am using Crystal 2008 for report development and BOE server version is BO XI 3.1 with SP 1 and FP 1.6. The server is running on Solaris Server.
Looking forward for any solution/suggestion/clues on this.
Thank you,
With Regards,
Sachin Dalal
Edited by: SachinDDalal on Nov 13, 2010 1:09 PM
Edited by: SachinDDalal on Nov 13, 2010 3:01 PM

Hello Sachin,
Did you find any solution for this...please let me know, yaar
Really appreciate it
Regards,
Kamal

Similar Messages

  • Why do images within a PDF look jagged when viewed in Acrobat Pro 10.1.6?

    Using a MacBook Pro running Mac OS version 10.7.5 with NVIDIA GeForce GT 650M 1024 MB graphics card. High-resolution source images look fine in other software, and embedded images in a PDF look fine when viewed on Google Drive, but curves and diagonal lines look jagged when viewed in Acrobat Pro 10.1.6. Checking smoothing options in Preferences only adjusts the position of the jagged edges; it neither enhances nor ameliorates them.
    I created a sample PDF to illustrate the problem I'm having. Created in illustrator, exported to PNG and converted to PDF. Here is a screenshot of the source PNG side-by-side with the PDF I created from it:
    Please note that when I preview the PDF in Finder, and when I view the PDF in Chrome using Google Drive, the image looks fine. Here's a link to the sample PDF:
    http://www.sendspace.com/file/77f5m6
    Any assistance is appreciated. Thanks!

    Unfortunately, as I mentioned in my original post, I've already tried toggling smoothing options. They don't make the jagged edges go away—they just change them slightly. In some cases, as with the sample file provided, it does help smooth the art out, but it never looks as good as it did going in, in a recent project, toggling smoothing options didn't affect the appearance of the image at all. Zoom does not appear to relieve the artifacting.
    A little clarification: this PDF was created from a flat PNG, but I have had this issue with PNGs and TIFFs as well, generated by both Photoshop and Illustrator. To reiterate, the PDFs display fine in other software—Finder preview looks great, and the same file viewed in my browser via Google Drive looks as intended as well. A colleague was able to replicate this issue in Acrobat on his Windows machine. This appears to be a rendering issue specific to Acrobat with regards to the files I use it to create.

  • Dynamic load of images in to established Timeline effect

    Is it possible to dynamicly load images in to an already
    established timeline effect?
    Steps I've done.
    Stuffed a JPG in to the library by draging and dropping it in
    to the SWFs library.
    Dropped the JPG on to the main stage
    Right clicked the image then going down to Timeline effects
    and choosing an effect.
    Completing any changes in effects dialogue box and then
    clicking OK.
    Play the movie, and pat myself on the back that it worked.
    So then, how can I get Actionscript to load an image
    dynamically in to that same Timeline effect and have it do the
    effect to that instead of the one found in the library?
    I'm using Flash MX Professional 2004.

    hii
    Can u mention the error message getting while the status become RED??
    As what I understand, this may be the issue of invalid characteristics inPSA Data Records or also there may be records that does not support the lower case or upper case data.
    So just check the data in PSA Level
    Thanks
    Neha

  • How to dynamically load an Image into a TableView when its row/cell becomes visible?

    Hi,
    I am building an application that shows tables with large amounts of data containing columns that should display a thumbnail. However, this thumbnail is supposed to be loaded in the background lazily, when a row becomes visible because it is computationally too expensive to to this when the model data is loaded and typically not necessary to retrieve the thumbnail for all data that is in the table.
    I have done the exact same thing in the past in a Swing application by doing this:
    Whenever the model has changed or the vertical scrollbar has moved:
    - Render a placeholder image in the custom cell renderer for this JTable if no image is available in the model object representing the corresponding row
    - Compute the visible rows by using getVisibleRect and rowAtPoint methods in JTable
    - Start a background thread that retrieves the image for the given rows and sets the resulting BufferedImage in a custom Model Object that was used in the TableModel (if not already there because of an earlier run)
    - Fire a corresponding model change event in the EDT whenever an image has been retrieved in the background thread so the row is rendered again
    Btw. the field in the model class holding the BufferedImage was a weak reference in this case so the memory can be reclaimed as needed by the application.
    What is the best way to achieve this behaviour using a JFX TableView? I have so far failed to find anything in the API to retrieve the visible items/rows. Is there a completely different approach available/required that uses the Cell API? I fail to see it so far.
    Thanks in advance for any hints here.

    Here’s what I have tried so far:
    I have defined a property in my model object that contains a weak reference to the image that is expensive to load. I have modeled that reference as an inner class to the object so I have a reference to its enclosing object. That is necessary because my cell factory otherwise has no access to the enclosing model object, which it needs to trigger loading the image in the background.
    The remaining problems I have is, that I don’t have sufficient control over the loading process, i.e. I need to delay the loading process until scrolling has stopped and abort it as soon as the user starts scrolling again and the visible content changes. Imagine that loading an image for a table row (e.g. a thumbnail for a video) takes 200ms to load and a user quickly scrolls through a few hundred records and then stops. With my current set-up, the user has to wait for all loading processes that were triggered in the cell factories to finish until the thumbnails of the records they are looking at will appear (imagine an application like finder to be implemented like that, it would simply suck UX-wise). In my swing application a background thread that loads images for the visible records is triggered with a delay and stopped as soon as the visible content changes. This works well enough for a good user experience. I don’t see how I can do this based on the cell API. It is nice to have all this abstracted away but in this case I do not see how I can achieve the same user experience as in my swing application.
    I also tried registering a change listener to the TreeCell’s visible property to make that control the image loading but I don’t seem to get any change events at all when I do that.
    I must be missing something.

  • Dynamically loading binary image of report source file

    Post Author: ChristopherZ1
    CA Forum: .NET
    I have stored all my .rpt files as varbinary images in a SQL 2005 DB.  I can retrieve the image write it to disk then load the report. i.e.
    Private m_RptDoc As New ReportDocument()
    m_RptDoc.Load(RptPathName). 
    My question is...is there a way to load the image directly into the ReportDocument without first writting it to disk and using the pathname?

    I would think that this crummy custom Image class hack would work, but surprise surprise -- the width/height in loaderInfo is flat out WRONG when the event fires. It seems to have a hard coded width/height no matter what the file size. Silly!
    <mx:Image xmlns:mx="http://www.adobe.com/2006/mxml" initialize="init()">
         <mx:Script>
              <![CDATA[
                   public function init():void {
                        this.addEventListener(Event.COMPLETE, loaded);
                   private function loaded(e:Event):void {
                        this.width = this.loaderInfo.width;
                        this.height = this.loaderInfo.height;
              ]]>
         </mx:Script>
    </mx:Image>
    Turns out, this version DOES work (but it's still a hack fix in my opinion):
    <mx:Image xmlns:mx="http://www.adobe.com/2006/mxml" initialize="init()">
         <mx:Script>
              <![CDATA[
                   public function init():void {
                        this.addEventListener(Event.COMPLETE, loaded);
                   private function loaded(e:Event):void {
                        this.width = this.contentWidth;
                        this.height = this.contentHeight;
              ]]>
         </mx:Script>
    </mx:Image>
    You guys at Adobe are so silly.    It would seem to me that Image's width and height should be set (rather than left at 0) once the content's width and height is known.  So now that I've fixed this bug (as far as I'm concerned) for ya Adobe, I take cash, cashier's check, or money orders--thanks!
    But really, if this doesn't work this way in Flex 4, I think it should.

  • Images in ACR are softer than when viewed in Photoshop?

    Greetings,
    I'm finding that when I view a RAW image in ACR 4.1 that the image does not appear as sharp as when I open the image from ACR into Photoshop and view it in Photoshop. I open my RAW files from ACR into Photoshop as PSD files. The image as viewed in Photoshop looks sharper at values less than 100%. Here's a screen grab of the same image (Photoshop on the left, ACR on the right), side by side at the exact same viewing size (23.1%), and the Photoshop image has more sharpness and clarity to it. It's minor, but noticeable in the leaves and bricks and it gives the ACR image an overall soft feeling.
    http://www.pixentral.com/show.php?picture=1jidvrPRXgXSfq8c5IHonNL13oeEI
    Do the programs handle interpolation diferrently when viewing images at less than 100%? Or, do RAW and PS files inherently display differently when not viewed at 100%? When both are viewed at 100%, they match. This isn't a major deal breaker -- but the lack of clarity at smaller viewing sizes in ACR is unfortunate, since I rarely view images in ACR at 100% size when I'm reviewing images and images that I think are soft are, in fact, not.
    The disparity seems more pronounced with images in portrait orientation.
    I'm using a Mac Pro, Radeon X1900, 23" ACD. Canon 5d images.
    Anyone experience similar? I love ACR, but wondering if someone can shed some light on this.

    Thanks for the clarification now -- it makes sense. I knew ACR only showed the effects of sharpening at 100%, but had forgotten to take into account Photoshop shows the effects of sharpening at all sizes, including under 100%

  • OLE Program works in debug mode fails when run from F8

    Hello,
    I have implemented a code from this forum for sending documents to printer, as below, but although it works well in debug mode, it fails when I execute directly from SE38? Any idea?
    Best Regards,
    Didem GUNDOGDU
      CREATE OBJECT gs_word 'WORD.APPLICATION'.
      SET PROPERTY OF gs_word 'Visible' = '0'.
      CALL METHOD OF gs_word 'Documents' = gs_documents .
      CALL METHOD OF gs_documents 'Open' = gs_newdoc
        EXPORTING
          #1 = p_filep .
      CALL METHOD OF gs_word 'ActiveDocument' = gs_actdoc.
      CALL METHOD OF gs_actdoc 'PrintOut'  .
      CALL METHOD OF gs_word 'Quit' .

    Hi Didem,
    Just a suggestion: could you print syst-subrc after each method call? Perhaps that can give you a clue.
    Regards,
    John.

  • Dynamic loading of an image - Works in designer, not in webapp

    Hi there,
    I have looked through the forums for an answer to my question and thought that I had found an answer to my question until it came time to publish the report to my web application.
    My report uses a dynamic image formula using the Format Graphic > Picture > Graphic > X-2 buttons.  Unlike other suggestions on the forum, the image isn't stored anywhere i.e. on a network, C drive.  Instead my web application (a special design program) generates images itself using parameters from a http request.
    In the Crystal Reports 2008 designer this works fine and the image changes with changes in the parameters I give in the http request in the formula.
    Example request;
    "http://localhost:8080/demoMYSQL/servlet/em.cabbench.CabBenchSrv?requestType=getStaticDrawing&imageType=2D&scale=1.6&solid=1&design=MV-120-XLPE-001"
    However, when I deploy the report to my web application, it appears as though the formula isn't getting validated as the above request is not logged in my server logs and the default image shows up.
    The report is displayed using JSP. I can show this is needed.
    Any ideas
    Much appreciated
    Nick Hirst

    OK Here goes,
    Formula:
    "http://localhost:8080/demoMYSQL/servlet/em.cabbench.CabBenchSrv?requestType=getStaticDrawing&imageType=2D&scale=6&layerscale3d=0.03&extrusionlength3d=0.4&corelabellevel=1&solid=1&userid=admin&password=admin&design=" + {designHeader/header/headerAtt.design}
    I dont think the connection is a problem. The problem was found using the application on a server, however I am now using my test environment which is a local Apache tomcat service and the problem still occurs.
    I am publishing to the web using the JRC component in JSP files.  Its a bit technical so they are explained here.  Bold are my comments posted here.
    DesignReportParser.jsp - some bits removed
    This jsp changes the data source of the report before passing it to CrystalReportViewer.jsp, allowing for dynamic data sources
    <%
      try {
           String design = request.getParameter("design");
           String version = request.getParameter("version");
           String reportName = request.getParameter("report");
           String schema = request.getParameter("schema");
           //Get the new dynamic XML data
           String url="http://localhost:8080/demoMYSQL/servlet/em.cabbench.CabBenchSrv?requestType="+schema+"&design="+design+"&version="+version+"&userid=admin&password=admin";
           String responseStr = getCabBuildXML(url);
        byte[] XMLByteSource = responseStr.getBytes();
        //Get the XSD schema
        url = "http://localhost:8080/demoMYSQL/servlet/em.cabbench.CabBenchSrv?requestType=getSchemaDesign&schema="+schema+"&userid=admin&password=admin";
        String schemaLocStr = getCabBuildXML(url);
        schemaLocStr = schemaLocStr + "\\" + schema + ".xsd";
        //open the report with original XML
        ReportClientDocument reportClientDoc = new ReportClientDocument();
        reportClientDoc.open(reportName, 0);
        System.out.println("is report open =="+reportClientDoc.isOpen());
        //create a new datasource based on the above set up
        //IXMLDataSet xmlDS = new XMLDataSet(new ByteArray(XMLByteSource), new ByteArray(XSDByteSource));
        IXMLDataSet xmlDS = new XMLDataSet(new ByteArray(XMLByteSource), new ByteArray(bytesFromFile(schemaLocStr)));
        // Change the XML datasource to the new XML datasource
        reportClientDoc.getDatabaseController().setDataSource(xmlDS, "", "");
        session.setAttribute("reportSource", reportClientDoc.getReportSource());
           //Redirect to the viewer page to render the report
           response.sendRedirect("CrystalReportViewer.jsp");
      }catch(ReportSDKException sdkEx) {
           System.out.println(sdkEx);
    %>
    CrystalReportViewer.jsp - pretty standard
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@page import="com.crystaldecisions.report.web.viewer.*"%>
    <%@page import="com.crystaldecisions.reports.sdk.*" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.reportsource.*" %>
    <%
    %>
    <%
         //Get the IReportSource object from sesion and pass it to the viewer
         IReportSource reportSource = (IReportSource)session.getAttribute("reportSource");
         //---------- Create the viewer and render the report -------------
         //create the CrystalReportViewer object
         CrystalReportViewer oCrystalReportViewer = new CrystalReportViewer();
         //set the reportsource property of the viewer
         oCrystalReportViewer.setReportSource(reportSource);
         //set viewer attributes
         oCrystalReportViewer.setOwnPage(true);
         oCrystalReportViewer.setOwnForm(true);
         oCrystalReportViewer.setHasLogo(false);
         oCrystalReportViewer.setDisplayGroupTree(false);
         oCrystalReportViewer.setHasToggleGroupTreeButton(false);
         //set the CrystalReportViewer print mode
         //oCrystalReportViewer.setPrintMode(CrPrintMode.ACTIVEX);
         oCrystalReportViewer.setPrintMode(CrPrintMode.PDF);
         //process the report
         oCrystalReportViewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    %>
    Now, the images;
    Designer - Design mode, with static image for when images dont load:
    [http://farm4.static.flickr.com/3100/3178811939_d116c1e37a.jpg?v=0]
    Designer - Preview mode, showing formula working, displaying correct image
    [http://farm4.static.flickr.com/3503/3179649422_ebd760fa61.jpg?v=0]
    Web application - not working, showing default image:
    [http://farm4.static.flickr.com/3126/3179649516_5df47fa7fd.jpg?v=0]
    Let me know what you think!
    Thanks again
    Nick

  • Is it possible to dynamically load an image/resources embed in a SWF?

    Hi all,
       i have created a flex library project, just containing images (.GIF)...etc.
       And i create another flex application project that merge the .GIF files into the final SWF application.
      based on the current time, i want to display different pictures (e.g. sun.GIF, moon.GIF, star.GIF...etc..there are many images) in the application right-top corner.
      as, i know, <mx:image/> just work with static image reference for embedded resource.
    (<mx:image source="@Embed('sun.GIF'))"/>).
      i search by google, it seems that, for embedded image or resource, you can't load it dynamically.
      the following code don't work.
      e.g. var mmm:Image = new Image();
                   mmm.source = fileName;
                   mmm.load();
      anybody find the solution???
      thank you.
    ppk luk

    Hi,
      i have tried this method before, but, again, it don't work for embedded resource. IO error will be thrown, with error message.
    IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2036: Load Never Completed. URL: file:///E:/Flex/TmpAssetApp/bin-debug/@Embed(source='images/sun.GIF')"]
    (the GIF is in a folder called images)
    SWFLoader/Loader can only load file dynamically from URL, but not embedded resource?? (by syntax @Embed(source='xxx'))??
    my sample code:
    =======================================
    <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                [Bindable]
                private var fileName:String = "@Embed(source='images/last.GIF')";
                 * Show the image
                private function showImage(event:flash.events.MouseEvent):void{
                    fileName = fileTxt.text;
                    dynaLoader.source = "@Embed(source='" + fileName + "')";
                    //dynaLoader.addEventListener(flash.events.Event.COMPLETE, ss);
                    //dynaLoader.addEventListener(flash.events.IOErrorEvent.IO_ERROR, ff); 
                    dynaLoader.load();
                private function ss(event:flash.events.Event):void{
                        mx.controls.Alert.show("result1\n" + event);
                private function ff(event:flash.events.IOErrorEvent):void{
                        mx.controls.Alert.show("result2\n" + event);
            ]]>
        </mx:Script>
        <mx:SWFLoader height="305" left="10" right="10" bottom="10" id="dynaLoader" autoLoad="true" source="{fileName}" ioError="ff(event)" complete="ss(event)"/>
    =======================================
       Do you know any other solution?
      thank you.
    ppk luk

  • HELP!! NEWBIE - Dynamically load jpg images - NEWBIE Question.

    Newbie here.
    Im currently making a flash website. and trying to make it as light as possible.
    so decided to load images dynamically.
    Im using UILoaders.
    I drag the UILoader from components into the main timeline and set the source as 1.jpg, because the image is in the same folder as the .fla file.
    and scale - false
    Tested the movie but nothing shows up. i guess i need some coding? but i dont know where to add the codes. on the same frame? or in frame 1?
    i also need the image to fade-in.
    the end result im looking for is, as i click a button. 3 images show up at the same time, fading in.
    Help, greatly appreciated.
    and thanks in advance

    thanks your the reply,
    the source is set to 1.jpg i put a image file named 1.jpg into the same as the fla. and swf and everything.
    the UILoader is visible in frame 55 or so. and as i click a button the pic is suppose to show , but it doesnt??
    the jpg is also non-progressive..
    any idea why its not working?

  • How to resize dynamically loaded Base64 Image?

    Hi all,
    I'm currently writing a flex component which renders a
    formular from a
    xml definition file. I get the image as Base64 and decode it
    whith some
    flex internal methods.
    private function addBgImage(base64Image:String):void{
    var base64Decoder:Base64Decoder = new Base64Decoder();
    base64Decoder.decode(base64Image);
    var byteArray:ByteArray = base64Decoder.flush();
    var loader:Loader = new Loader();
    loader.loadBytes( byteArray );
    var img:Image = new Image();
    img.addChild(loader);
    this.addChild(img);
    This works fine. Now i want to resize the image, but nothing
    works. I
    tried:
    img.width = 100;
    img.maxWidth = 100;
    img.explicitWidth = 100;
    loader.width = 100;
    But nothing works. Can somebody help me? Do I need to wait
    till the
    ByteArray is loaded?
    Best regards,
    Christian

    solved.
    solution:
    I have to wait till the loader finished loading and then i
    can resize the image in this method.
    private var loader:Loader;
    private function addBgImage(base64Image:String):void{
    var base64Decoder:Base64Decoder = new Base64Decoder();
    base64Decoder.decode(base64Image);
    var byteArray:ByteArray = base64Decoder.flush();
    loader = new Loader();
    loader.loadBytes( byteArray );
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,
    imgLoaded);
    var img:Image = new Image();
    img.addChild(loader);
    this.addChild(img);
    private function imgLoaded(event:Event):void{
    loader.width = 100;
    }

  • Loaded PHP Image works on Windows but not Mac

    I have a php file that generates a string image, the php file
    changesheaders to jpeg and it becomes a image. In my code im
    loading the .php file into a mc. In all windows browsers its
    showing image correctly, but in Mac its coming up red.
    If you view the php file it self it will display the image
    correctly.. could it be a php.ini problem?

    anyone able to figure this out yet ?

  • Loading an image works when testing, fails in browser

    java.security.AccessControlException: access denied (java.lang.RuntimePermission exitVM)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkExit(Unknown Source)
         at javax.swing.JFrame.setDefaultCloseOperation(Unknown Source)
         at PictureCrop.<init>(PictureCrop.java:66)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Any ideas?

    I see from your user profile that you are a newcomer to the forums, so
    allow me to give you a tip.
    You'll get better advice from other forum members if they understand
    what your goal is, and what your problem is. So:
    1. State what your high-level goal is, what you are trying to do.
    Often posters will ask obscure, technical questions and perhaps in
    turn be given obscure, technical answers, but there was a much better
    solution to their problem that were never mentioned, because they
    never stated what their real problem was.
    2. Second, and I can't stress it enough, post a minimal, complete,
    example program that demonstrates your problem. In other words:
    a) don't just post a text description, because that will always be vague
    and forum members will either give up on you or misunderstand you,
    answering a dozen questions that you didn't ask. At the very least, this
    results in dozens of back-and-forth messages as some kind forum member
    tries to extract the truth from you, like a dentist pulling a tooth.
    b) don't just post a snippet of code. The free variables and general context
    will be missing, and people tend to miss where a bug actually lies.
    c) don't post your actual program. It's too long and too much of it is
    irrelevant to the problem at hand. The longer the code, the less likely it is
    that forum members will take the time to read it.
    d) By posting a minimal, complete, example program you are forced to write it!
    This is, in fact, what you should always do when faced with a stubborn bug,
    so you might as well learn to do it now. The stress on minimal indicates you
    should really reduce the problem to its essense: often when you do this, you
    discover the problem, and are able to solve it yourself! Excellent!! And by
    making your code a complete program, forum members can copy, paste, compile and
    run it in seconds. If they have to do extra work to run your code, I guarantee
    you that you will lose 90% of your audience. So if you want 10 times more
    help to solve your problem you should make the effort to isolate your problem
    in an example program. Showing you're willing to put the effort in will signal
    to forum members that you're worthy of their time. If you just lazily lob
    a question into the forum, don't be surpised that it will generate only offhand
    replies...

  • Air project works in test but fails when installed.

    I have a little project I'm trying to put together as a stand-alone widget.  It loads some sounds that are set up in sets and saved in a subdirectory of the application directory.  I have a movie clip in the library that appears when the "Config" button is pressed.
    Works great in test mode.  The sounds are loaded and play.  The config screen shows up when the button is pressed.  The components (two sliders) work and their listeners fire.  Wonderful!
    But when I pack it up as an installable AIR file and then actually install it on my poncuter, epic fail.  The sliders don't appear, the config button doesn't call up the configure movieClip and no sounds are played.  The buttons that I placed on the stage at design time appear but don't appear to function.  Nothing I added programmatically appears.
    Is this an Adobe CS3 problem or did I miss something in the security sandbox?  No files are being written to,  I'm getting a directory listing of ./sets and then opening the files in that directory where .isDirectory comes up false.  The files are XML and point to a folder off the ./sets folder and the files in that set.
    I could probably track this but I have no experience debugging an AIR project.  Trace is not working in development.  How do people debug the final?  Output to a dynamic text field?

    Sorry to hear you are having a tough go of it...
    there should be no reasons that your application functions differently debugging than when you install the application so the behavior you are seeing is likely something easy to fix (as opposed to having to re-write a bunch of AS code :D).
    Couple of Questions:
    1.) Are you using CS3 as-is out of the box - or did you manually upgrade your AIR SDK inside Flash Professional to target a later version?
    2.) What version of AIR are you targeting?
    3.) What version of AIR do you have installed on your system?
    4.) What OS are you running on?
    5.) Can you install any AIR applications on your machine and have them run properly? (Bunch of AIR apps here: http://www.adobe.com/go/airmarketplace)
    6.) It sounds like you are likely using CS3 and not the command line tools - but if you are using the command line tools (ADT) to create your AIR package what command line do you use to create it?
    That should help get things rolling...but likely the best course of action is for you to send us your project so we can take a look. You can send your project to cthilgen at adobe.com - please do not send a zip as our mail system will auto-reject it.
    Also, you should be able to get trace output. If you are using CS3 the trace output goes to the output panel. (Windows->Output) If you are using the AIR command line tools (ADL) - debug output is enabled by default (you have to manually pass -nodebug to turn it off).
    Hope this helps.
    Thanks,
    Chris Thilgen
    AIR Engineering

  • System Image Utility 10.6.3 - fails when creating NetBoot image from DVD

    System Image Utility 10.6.3, trying to create a NetBoot image from a bundled installer disc that came with a 27" Late 2009 iMac (iMac11,1). Image creation fails consistently, since the image that System Image Utility creates is only 901M.
    Anyone see this before?
    Don
    --------- System Image Utility log ----------
    Workflow Started (2010-06-16 14:03:02 -0700)
    Starting action: Define Image Source
    Finished running action: Define Image Source
    Starting action: Create Image
    Starting image creation process...
    Create NetBoot Image
    Initiating NetBoot from Install Media.
    Creating working path at /Library/NetBoot/NetBootSP0/NetBoot of Mac OS X Install DVD
    Creating disk image (Size: 901 MB)
    Finalizing disk image.
    created: /Library/NetBoot/NetBootSP0/NetBoot of Mac OS X Install DVD/NetBoot.dmg
    Attaching disk image
    Installing to destination volume
    2010-06-16 14:03:38.126 installer[2365:6f03] Looking for system packages
    2010-06-16 14:03:38.129 installer[2365:6f03] no system packages found
    2010-06-16 14:03:38.130 installer[2365:6f03] No or Invalid system receipts found on /private/tmp/mnt.LjFArn
    2010-06-16 14:03:38.130 installer[2365:6f03] Attempting fallback using: /System/Library/PrivateFrameworks/SystemMigration.framework/Resources/FallbackS ystemFiles.plist
    2010-06-16 14:03:38.175 installer[2365:6f03] Finding system files...
    2010-06-16 14:03:38.619 installer[2365:6f03] Writing system path cache.
    2010-06-16 14:03:38.623 installer[2365:6f03] Error writing cache to /private/tmp/mnt.LjFArn/Library/Caches/com.apple.FindSystemFiles.plist
    2010-06-16 14:03:38.625 installer[2365:6f03] Failed to enumerate /tmp/mnt.LjFArn/Library/Caches, cannot prune (
    "com.apple.userpictureCache"
    installer: Package name is Mac OS X
    installer: Installing at base path /private/tmp/mnt.LjFArn
    installer: The install failed (There is not enough space on this disk to install the selected items. Deselect at least 6.46 GB and try again.)
    Script is done.
    NetBoot creation failed.
    Image creation process finished...
    Stopping image creation.
    Image creation failed.

    Brian Nesse wrote:
    Hi Don, here's my guess...
    The 901 number is additional space added in the scripts. This indicates that the source image size was 0.
    Since you are making a NetBoot from Install media, under the covers the installer process is being run to create a NetBoot volume. The media shipped with the 27" iMac is most likely CPU specific and thus the installation fails because you are trying to create the image (i.e. install the system) on an unsupported CPU.
    In order to produce a NetBoot from the install media, you'll have to create it on the 27" iMac.
    Hi Brian,
    Thanks for the response. This makes perfect sense. I'll give this a try and shout back!
    Thanks,
    Don

Maybe you are looking for

  • Hiding old apps from showing in App store?

    Using a Mac, I'm logged into iTunes and looking at purchased apps from a few years back on my iPhone 4 and iPad2 that I want to hide from being shown on my new Air2. I do not see a way to delete the apps or hide them. How is this done? Thanks.

  • HT1689 Cannot connect to Itunes store

    I am suddenly getting the error message "Cannot connect to the iTunes Store".   Ive had my apple id and password for years...why is it suddenly not working?

  • "there was a problem connecting to the server" after lion

    I updated to Lion and now I get an error message continuously popping up that says "there was a problem connecting to the server.  URLs with the type "file:" are not supported". I don't know what this is telling me, I've never had this error before.

  • LCD Failure - external screen

    Good day I purchased a 17" powerbook September last year. The LVD screen has failed and I cannot now afford to get it replaced. When I took it in to be checked, we could use an external screen and everything worked OK. After it had been checked by an

  • Automatically Delete Troubled Files

    You know those stupid files that have those stupid exclamation marks next to them is there a way to simply delete those without having to click multiple times on the song and manually do it?