PrintJob unable to print my external swf which created from a pdf.

Hi Everybody,
We developed a tool which split pdf's uploaded by user into single page and convert each single page into swf. We used swftools to convert pdf to swf.
after converting swf files we show each swf as a single page to user, where user can add more colors, clip arts, text, images to it and later we can take print out, for testing we will print the final output as pdf.
Most of the times everything is working fine, but when pdf page have many layers, we are able to convert into swf successfully, but while printing some layers (mainly images) are missing in final print. We tried converting pdf to AVM1 swf and AVM2 swf files, in both cases the result is same. Did anybody have idea about this issue?
Regards
Vikram

Hi Karthik,
Please check below
You can view Log files on 14 hive folder <System Root>:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS . Use the ULS Logviewer tool to eficiently view the Log files http://ulsviewer.codeplex.com/.
Search for Log file with the viewer or check the latest file with time provided by Error page. That will show exact issues.
or
BCS supports null columns, but make sure the column is set to IsNullable in the db schema.
Please remember to click 'Mark as Answer' on the answer if it helps you

Similar Messages

  • Unable to unload external swf which is using runtime sharing

    Unable to unload external swf which is using runtime sharing of some symbols and classes.
    Due to this problem i am unable to load another swf or the same for the second time and getting errors at runtime.
    It works fine when the swf is opened in IE.
    Can anyone please help me in solving the issue.

    thank you
    i have tried to use   this.parent.Click_To_Close  but it gives compilation error
    i checked the tutorial about custom events i think its little complex for me now to understand the typeriter app.
    also i cheked the similer thread and tried to test that code myself..i found that the last block of main movie does not works and does not unload the loader2. however  all the trace are showing in the output windows that i added to check the code but last trace from the main movie is not showig...   
    trace("child removed from Main Movie") 
    so if this can work somehow i will use this method of event dispatch in my application that i am working...
    Thank you
    -----main movie ---------
    var loader1:Loader = new Loader();
    var loader2:Loader = new Loader();
    loader1.contentLoaderInfo.addEventListener(Event.COMPLETE, assignMovie1Listener);
    loader1.load(new URLRequest("movie_1.swf"));
    loader2.load(new URLRequest("movie_2.swf"));
    addChild(loader1);
    addChild(loader2);
    function assignMovie1Listener(evt:Event):void {
          MovieClip(evt.currentTarget.content).addEventListener("eventTriggered", removeLoader2);
                trace("listner is listning..")
    function removeLoader2(evt:Event):void {
          loader2.unloadAndStop();
          removeChild(loader2);
             loader2 = null;
                trace("child removed from Main Movie")
    //------------- movie_1.swf code:
    removeMovie2_btn.addEventListener(MouseEvent.CLICK , removeMovie2);
    function removeMovie2(event:MouseEvent):void
          dispatchEvent(new Event("eventTriggered"));
                trace("event triggered form Child Movie-1");
    as u can see when i click close button its triggering the trace from movie-1 but its not unloadign the movie2

  • Looping external swf which has no .fla

    Hi!
    What I have is a sliding menu with buttons - each button calls an external swf - which plays in an empty movie clip.
    Now, I want the current loaded swf to loop till the time the user clicks on another button. The problem is, I do not have the fla files for any of the external swfs (these are screencam recordings using a software that does not publish .fla) - so I can't put a code at the end of each external swf asking it to not stop.
    Any suggestions on how I might be able to have the external swf loop?
    Thanks & Regards,
    ~ Raven

    Thanks for your help Ned. Actually, I did manage to decompile the swf (using a 3rd party software) - yes, it is a movieclip on frame 1. I could even go inside it and place the loop code. But decompiling meant loss of the control bar that the screen capture software put in it and I can't compromise on that. I guess the screen capture guys should've chosen another softwares that publishes the .fla.
    Thanks again and regards,
    ~ Raven

  • How to use the DLLs which created from c++ in Java?

    And How to use the DLLs which created from JNI in C++?

    Huh?
    Are you asking how to do JNI - you should read the tutorial.
    Are you asking how to load it - then use System.loadLibrary()
    Are you asking what to do with the output from javah - put it in a C file and write some code, compile it into a dll.

  • Unable to load external swf which has runtime sharing with another swf.

    Hi,
    I am getting issues on loading external swf say "importer.swf" file into another swf file say "loader.swf" for second time like
    ReferenceError: Error #1065: Variable testSymbol is not defined. VerifyError: Error #1014: Class testClass could not be found.
    at global$init()
    In the external swf "importer.swf", i am trying to import the symbol "testSymbol" from another swf file say "exporter.swf", which exports through runtime sharing option for the symbols.
    I am having some buttons in loader.swf file and on each button click i am loading different swf files into the loader.swf after unloading the previous one.
    I am able to load and unload different swf files but unable to load the importer.swf file which is sharing symbols from external swf and that too for the second time i.e., when i click the button twice.
    When trying to debug with flash debugger, all the other swf files are being unloaded before loading of another swf but the swf which is sharing symbols/classes with another swf is not getting unloaded.
    Output when i am trying to load two files example and importer files into loader.swf file on two different button clicks. On first button click example.swf is loaded. On second button click , example.swf is unloaded and importer.swf is loaded which is successful. On first button click again importer.swf is unloaded and example.swf is loaded. On second button click again, example.swf is unloaded and importer.swf is loaded, here i am getting issues shown above.
    Attemping to launch and connect to Player using URL D:\runtime issue\loader.swf
    [SWF] D:\runtime issue\ loader.swf - 8181 bytes after decompression
    [SWF] D:\runtime issue\example.swf - 441708 bytes after decompression
    [UnloadSWF] D:\runtime issue\example.swf
    [SWF] D:\runtime issue\importer.swf - 1920 bytes after decompression
    [SWF] D:\runtime issue\importer.swf - 441708 bytes after decompression
    [SWF] D:\runtime issue\ example.swf - 441708 bytes after decompression
    [UnloadSWF] D:\runtime issue\ example.swf
    [SWF] D:\runtime issue\importer.swf - 1920 bytes after decompression
    ReferenceError: Error #1065: Variable xxxxxx is not defined.
    Debug session terminated.
    Code i am using
    b1.addEventListener(MouseEvent.CLICK, b1Clicked);
    b2.addEventListener(MouseEvent.CLICK, b2Clicked);
    var ldr:Loader;
    function b2Clicked(e:MouseEvent)
        if(ldr != null)
            ldr.unloadAndStop(true);
        ldr = new Loader();
        ldr.load(new URLRequest("importer.swf"));
        addChild(ldr);
    function b1Clicked(e:MouseEvent)
        if(ldr != null)
            ldr.unloadAndStop(true);
        ldr = new Loader();
        ldr.load(new URLRequest("example.swf"));
        addChild(ldr);
    If i try to open the swf using IE, i am not getting any issues at all. But i need to open this loader.swf in a air application. Also when i use loaderContext for the loader instance i am able to get rid of this issue but i cant use it in my application.
    So, please help me in resolving this issue.
    Thanks

    I got my answer. I had to append the photo url to the 'movie' value of the javascript embed method. Like this:
    <script language="JavaScript" type="text/javascript">
       AC_FL_RunContent(
          'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
          'width', '550',
          'height', '400',
          'src', 'lesson2',
          'quality', 'high',
          'pluginspage', 'http://www.adobe.com/go/getflashplayer',
          'align', 'middle',
          'play', 'true',
          'loop', 'true',
          'scale', 'showall',
          'wmode', 'window',
          'devicefont', 'false',
          'id', 'lesson2',
          'bgcolor', '#ffffff',
          'name', 'lesson2',
          'menu', 'true',
          'allowFullScreen', 'false',
          'allowScriptAccess','always',
          'movie', 'lesson2?photo=http://www.flash-mx.com/images/image1.jpg',
          'salign', ''
          ); //end AC code
    </script>
    Thanks,
    srb.

  • Unable to print a ups label which comes up as a pop up

    Hi,
    I'm trying to print a label from ups.com after I have entered an online shipping request...I am unable to print the pop up label..in my printing queue I get the message that the print job is on hold...I check the pop up preference on firefox and all seems to be ok. I can print the lable using Safari so there is something "blocking" or holding my print job using Firefox..please advise...I can be reached at 647-352-8900...thanks Joti

    annsken wrote:
    Tried the Uninstaller and reinstall today and I can still print diagnostic sheets but no documents. Gave up after a couple of hours.What software are you using to send to the printer? This seems more of a issue with whatever software your using that doesn't recognize the printer is now installed. Did you check your program that is printing the Document to see if it had the right printer selected? Cause if there was a problem you woudn't be able to do the test print.

  • Unable to print to Canon iR-Adv C5045 from MacBook Pro that is connected to Windows computer and shared on the network

    I am unable to print to a Canon iR-Adv C5045 from a MacBook Pro (OS X 10.9.4) that is connected to Windows NT computer and shared on the company network.  I am connected to the network by ethernet.
    I was able to add the printer manually by going to Advanced, Windows printer via spoolss, smb://computer name/printer name and used the Canon iR-ADV C5045/5051 driver.
    When I print it appears to be printing but nothing comes out.  I checked the completed jobs from the Print Queue and the job is listed.  Checked the print log on the printer and it isn't listed.  Is there a different driver I should be using for this configuration?

    You may not have a choice as to what driver you can use. If the ADV C5045 only has the default UFR2 printer kit, then you will have to use the UFR2 driver - which is what you are using now. If you can access the copier, press the Counter Check button on the control panel. Then on the display you will see an entry labelled Check Device Configuration. Select this and scroll down through the pages. You are looking for an entry called PS. If you see it then the Canon does have the optional Postscript printer kit enabled and this will let you use an alternate driver. One suggestion would be to create the printer again using the same setting that you have done already but this time select the Generic Postscript driver included with the OS rather than use the Canon driver. This will help to determine if the driver is the cause.
    If there is no PS option you will have to use the UFR2 driver and this could be the problem, as the Canon drivers don't always work well on a Mac via a Windows share. As a test, are you able to create a print queue directly to the Canon rather than via the Windows share? If you can, then this will let you check if the driver currently installed will work, as there can be settings on the copier that can block/stop you from printing. Assuming that you can print to the Canon with a direct connection from the Mac, then we can work on getting the printing via the shared queue. But if it doesn't print directly from the Mac, then it confirms that it may not be the server and more to do with the copier.

  • Remove / unload external swf file(s) from the main flash file and load a new swf file and garbage collection from memory.

    I can't seem to remove / unload the external swf files e.g when the carousel.swf (portfolio) is displayed and I press the about button the about content is overlapping the carousel (portfolio) . How can I remove / unload an external swf file from the main flash file and load a new swf file, while at the same time removing garbage collection from memory?
    This is the error message(s) I am receiving: "TypeError: Error #2007: Parameter child must be non-null.
    at flash.display::DisplayObjectContainer/removeChild()
    at index_fla::MainTimeline/Down3()"
    import nl.demonsters.debugger.MonsterDebugger;
    var d:MonsterDebugger=new MonsterDebugger(this);
    stage.scaleMode=StageScaleMode.NO_SCALE;
    stage.align=StageAlign.TOP_LEFT;
    stage.addEventListener(Event.RESIZE, resizeHandler);
    // loader is the loader for portfolio page swf
    var loader:Loader;
    var loader2:Loader;
    var loader3:Loader;
    var loader1:Loader;
    //  resize content
    function resizeHandler(event:Event):void {
        // resizes portfolio page to center
    loader.x = (stage.stageWidth - loader.width) * .5;
    loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    /*loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;*/
    addEventListener(Event.ENTER_FRAME, onEnterFrame,false, 0, true);
    function onEnterFrame(ev:Event):void {
    var requesterb:URLRequest=new URLRequest("carouselLoader.swf");
    loader = null;
    loader = new Loader();
    loader.name ="carousel1"
    //adds gallery.swf to stage at begining of movie
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requesterb);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    // stop gallery.swf from duplication over and over again on enter frame
    removeEventListener(Event.ENTER_FRAME, onEnterFrame);
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent):void {
    // re adds listener for contact.swf and about.swf
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
    var requester:URLRequest=new URLRequest("carouselLoader.swf");
        loader = null;
    loader = new Loader();
    loader.name ="carousel"
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    removeChild( getChildByName("about") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of gallery.swf
    MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    function Down1(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    var requester:URLRequest=new URLRequest("contactLoader.swf");
    loader2 = null;
    loader2 = new Loader();
    loader2.name ="contact"
    loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader2.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader2);
    loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    function Down3(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    var requester:URLRequest=new URLRequest("aboutLoader.swf");
    loader3 = null;
    loader3 = new Loader();
    loader3.name ="about"
    loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader3.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader3);
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    removeChild( getChildByName("carousel") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
    stop();

    Andrei1,
    Thank you for the helpful advice. I made the changes as you suggested but I am receiving a #1009 error message even though my site is working the way I wan it to work. I would still like to fix the errors so that my site runs and error free. This is the error I am receiving:
    "TypeError: Error #1009: Cannot access a property or method of a null object reference."
    I'm sure this is not the best method to unload loaders and I am guessing this is why I am receiving the following error message.
         loader.unload();
         loader2.unload();
         loader3.unload();
    I also tried creating a function to unload the loader but received the same error message and my portfolio swf was not showing at all.
         function killLoad():void{
         try { loader.close(); loader2.close; loader3.close;} catch (e:*) {}
         loader.unload(); loader2.unload(); loader3.unload();
    I have a question regarding suggestion you made to set Mouse Event to "null". What does this do setting the MouseEvent do exactly?  Also, since I've set the MouseEvent to null do I also have to set the loader to null? e.g.
    ---- Here is my updated code ----
    // variable for external loaders
    var loader:Loader;
    var loader1:Loader;
    var loader2:Loader;
    var loader3:Loader;
    // makes borders resize with browser size
    function resizeHandler(event:Event):void {
    // resizes portfolio page to center
         loader.x = (stage.stageWidth - loader.width) * .5;
         loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
    //adds gallery.swf to stage at begining of moviie
         Down();
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent = null):void {
    // re adds listener for contact.swf and about.swf
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
         var requester:URLRequest=new URLRequest("carouselLoader.swf");
         loader = new Loader();
         loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader.load(requester);
         } catch (error:SecurityError) {
         trace(error);
         this.addChild(loader);
         loader.x = (stage.stageWidth - 739) * .5;
         loader.y = (stage.stageHeight - 500) * .5;
    // sure this is not the best way to do this - but it is unload external swfs
         loader.unload();
         loader2.unload();
         loader3.unload();
    // remove eventlistner and prevents duplication of gallery.swf
         MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         function Down1(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         var requester:URLRequest=new URLRequest("contactLoader.swf");
         loader2 = null;
         loader2 = new Loader();
         loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);    
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader2.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader2);
         loader2.x = (stage.stageWidth - 658.65) * .5;
         loader2.y = (stage.stageHeight - 551.45) * .5;
    loader.unload();
    loader2.unload();
    loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         function Down3(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         var requester:URLRequest=new URLRequest("aboutLoader.swf");
         loader3 = null;
         loader3 = new Loader();
         loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader3.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader3);
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
         loader.unload();
         loader2.unload();
         loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
         stop();

  • Loading external swf fonts created with fontswf, loaded with a Loader, compatible with iOS

    Let me immediately start out by saying that I do in fact have a current working solution for using embedded fonts, generated by fontswf and working in an AIR ActionScript mobile application, and also currently working fine with iOS.
    My current app needs CFF fonts, so I currently use the fontswf tool to pre-generate the .swfs using:
    fontswf -4 -a [SomeAlias] -o [SomeFont.swf] [SomeFont.ttf]
    and then I am currently embedding them in my app source code .as for compilation using:
    [Embed(source="/swf/SomeFont.swf", symbol="SomeAlias")]
    public static var SomeFontClass:Class;
    I then have no problem registering them using Font.registerFont(SomeFontClass) and everything works fine.
    However, I would prefer to take the use of these swf fonts one step further and load them dynamically using a Loader so that I do not have to take the hit of having multiple CFF font swfs embedded in the main compiled SWF and so that I could even load an unknown future set of fonts without having to supply them as part of the app build.
    Now I have seen and read many blogs and tutorials where people have exported font swf from Flash Builder where you add an explicit 'Class' name or even made standalone .as static files compiled into standalone swfs only including the two lines:
    [Embed(source="/swf/SomeFont.swf", symbol="SomeAlias")]
    public static var SomeFontClass:Class;
    so that you also have a 'Class' involved. Then people use some form of appropriate applicationDomain.getDefinition("className") as Class
    to pull out the class for the font registration.
    My question is, how does one perform the same font loading and registration of fonts using a Loader only loading the .swfs produced directly from fontswf?
    It seems only a DefineFont4 is tagged in the swf, there doesn't seem to be a 'Class' per se to call on.
    More importantly, iOS apps cannot load external swfs with code in them, so my understanding is any extra wrapped swf that would contain a custom Class technique would fail the iOS requirement of only having one main SWF with any ActionScript compiled code.
    Is there an alternative to the 'Class' technique by grabbing the DefineFont4 tagged resource from the swf and instantiating a proper working Font class from that? One that would still be compatible with the restrictions placed on AIR mobile apps running on iOS?

    Ironically, just after posting this, Adobe released AIR 3.5 beta onto labs, and added multiple SWF support for iOS.
    While this new support makes it easier to manage your content across multiple SWFs and technically allows you to use the class based separate .swfs for each font if desired, the system still requires that all these SWFs be present at compile time when making the final app .ipa for iOS.
    So this still doesn't solve trying to load fonts after the app is already built. For example, as part of a downloaded in-app purchase mechanism.

  • Printing with Bleed and Crop marks from a PDF made with PS

    So, i have created a business card with a .125in bleed all around in photoshop. I know that you can go to File->print->output in photoshop and specify crop marks and the amound of bleed...however, i have saved my business card as a PDF from photoshop. I want to print from the PDF version as i have the plug-in quite imposing 2 for acrobat and use step and repeat to print multiples on 11x17 paper. How do i add the crop marks in the right place from Acrobat on the business card?

    Do you have Quite Imposing Plus 2 or just Quite Imposing 2?
    cheers,
    Charles

  • Close an external swf which is part of an array

    Hi.
    Noob and having to learn all this pretty quick.. So thanks for any help you can give me.
    Here's the basics - Flash cs4 and as3.
    I'm making an app which is, at the moment, a game.
    I have an animation on the maintimeline - this (at the momoent - until I make it functional) animates through the menu selection to the games menu.. All fine.
    I then have placed an empty MC on the stage which will contain all the games. So I click the first game - Flash then selects from 5 possible versions (3 in the code at the mo) and it plays on top of the menu - with a master menu at the bottom of the page.
    The game loads fine, the random loading works fine - I just can't get rid of the imported SWF.  I've tried a multitude of ways and codes from the internet - had to give up in the end yesterday and so am starting with fresh hope today
    I think, the ideal scenario, for me, is to have each SWF that imports - to switch itself off at the end of the game - last frame and disappear. I know it is possible - I'm pretty sure, back in the day in AS2, it was as simple as close.this (or something like that)
    thanks
        stop();
        bee.addEventListener(MouseEvent.CLICK, Click);
    function Click( event:MouseEvent):void {
        gotoAndPlay(currentFrame+1);
    bee.addEventListener(MouseEvent.CLICK,f);
    function f(e:Event):void{
    var movieArray:Array = ["howmanybees1", "howmanybees2", "howmanybees3",];
    var loader:Loader = new Loader();
    var index:int = movieArray.length * Math.random();
    var url:String = movieArray[index] + '.swf';
    trace("Attempting to load", url);
    loader.load(new URLRequest(url));    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,loaderComplete);
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loaderIOError);
    addChild(loader);
    function loaderComplete(e:Event):void {    
        trace("Successfully loaded", url);
        } function loaderIOError(e:IOErrorEvent):void {    
        trace("Failed to load", url);   

    Thanks Ned.
    I have tried - which essentially means - I've been stalking forums - copying code and trying to shoehorn it in to my game.. I guess my real problem not understanding code enough yet to be able to use it with my set up.
    I've tried to dispatch an event from the ext swf on the last frame and have the main swf hear the call - but I can't get it to work - most likely because I am putting the code in the wrong place??

  • My Mac is unable to mount any external drive which is compatible with windows.

    It read the drives but doesn't mount them so they are pretty much useless. It tells me to repair it but the repair option is never available. This only happens for drives which are supposed to be compatible with both windows and macintosh. Plz Help

    NTFS formated drives can only be mounted as read only natively under a standard HFS+ journal OSx system.
    You can however copy files across to OSx !
    BTW OSx will normally automatically mount any drive in finder irrespective of the format . It doesn't try to format them automatically unlike Windows sometimes tries to.
    You need to install Macfuse depending on your Osx version to both read and write to NTFS drives and also need to install Macdave on Windows PCs to read and write to HFS+ formatted drives
    If you transfer files between both systems regularly make sure you have a FAT/exFAT formatted partition on any shared drive as both OSx and Windows can read and write to this natively.
    exFAT is simply FAT updated to allow larger files and partitions  than the traditional limitations associated with FAT formats.

  • Unable to print to Win Server2008 R2 queue from Lion10.7.2, printer status gets paused or asks username and password for printer

    Hi Everyone,
    I have set up a print queue for HP CP5225dn on Win Server2008 R2 on a shared domain . When I install a print driver on Mac 10.7.2 Lion it sometimes ask for a 'user name & password' for the printer which has not been set by us on the printer.
    Second issue I don't know how it reached to the point that I was able to send the job through but as soon as it starts to connect to the printer 'it turns the status to printer paused' or can't connect to the printer.
    Printer works well on 'Bonjour' printing so I don't have any doubts on the printer driver. But HP doesn't have the drivers for CP5225dn for Lion 10.7.2.
    I have to configure the printer via the queue. Please advise any workarounds.
    Thanks
    Yezdi

    This easy to follow procedure (5 web pages with screen shots) worked for MacBook Pro 10.6.8 via Wireless-N to Windows 7 Home Premium SP1 x64 using USB Cable to HP Officejet 7210 All-in-One.  This configuration had worked with Windows XP.
    http://macs.about.com/od/printersharing/ss/Printer-Sharing-Share-Your-Windows-7- Printer-With-Your-Mac.htm
    Error messages encountered prior to using the above procedure:
    authorization required
    Backend returned status 2 (authentication required)
    Cannot find server
    Communication Failure: The computer is no longer able to communicate with your printer
    cupsdAuthorize: pam_authenticate() returned 9
    getaddrinfo: <windows printserver> nodename nor servname provided, or not known
    Job held for authentication
    On Hold (Authorization required)
    pam_authenticate() returned 9 (authentication error)!
    Printer Paused
    Printer stopped due to backend errors
    Session setup failed: NT_STATUS_INVALID_PARAMETER
    snmpInk: Unknown host (<windows printserver>)
    This computer seems to have a working Internet connection. but we cannot find "<windows printserver>" You may have typed the address incorrectly.
    Tree connect failed (NT_STATUS_ACCESS_DENIED)
    Unable to locate printer
    Unable to locate printer Unknown host
    Unknown host

  • Unable to Print anything to Canon imagePROGRAF iPF8000S from 10.6.7

    Do I need to downgrade to 10.6.6?
    Anyone else having this issue - seemed to work just fine with my old MAC with 10.5.4, but since the company upgraded to a new MAC with 10.6.7, I am unable to get communication working to the Prograf wide format printer.
    I can ping the printer from the new MAC, and print from PC's in the office just fine, but every job just hangs up in the queue from the new MAC....ERGGH!
    I am using the 10.4-10.6 driver from canon (version 2.30).
    Anyone have any thoughts on this?
    Please help - I am backlogged with poster print orders and only have design software on the MAC.

    Some Canon iPF users on this forum have reported that disabling 'Fast Graphic Process' has helped them with printing from 10.6.7.
    This is located in the Main menu, under the Advanced Settings tab.

  • Unable to print full length 24" x 132" from adobe. Stops part way.

    I am trying to print an adobe document of a CAD drawing 24" by 132" with the 1050c plus.  The plotter prints about three-quarters of the way, stops printing, then rolls out the rest of the page.  I've tried all that I think of in the print settings of adobe (i.e. paper source - roll, roll size - 24 inch, under more sizes - entered size, set memory both printer and computer, quality - fast). The only thing that seems to help is the fast quality setting, where I get a bit more of my plot, but not all of it.
    If you have any suggestions of what else I can try please let me know.  Any help is much appreciated.

    Hi,
    Check for the print mode in the print options and set it as 3- print and archive .
    Regards,
    Ram

Maybe you are looking for

  • IPod Classic Won't Connect to Computer or iTunes

    My iPod Classic 160GB started to stop showing up both in Finder and on iTunes a few weeks ago. If I connect it to a wall charger then it will still charge, so I'm fairly sure it's not a problem with the cable dock or anything. I've literally tried ev

  • Scroll bar within table

    I have a table within my webpage and I'd like to place scrolling text within the diminsions of this table. I see it all over the web but I can't find any easy way to do it in Dreamweaver. I check the tutorials but I must be missing something. Anyone

  • Weblogic 10.3.1 and jdeveloper 11g

    I delete the java_home environment variable and the jdk value of path environment variable. Then, I reinstall jdeveloper 11g. An adf application can be run on default server and it works fine. I also create a new weblogic domain and extend the jrf. T

  • [SOLVED] gpgme error: Bad file descriptor

    I tried to install a new system today. I chrooted into it and wanted to install some packages, but all I got was this error instead: error: GPGME Error: bad file descriptor error: <package>: missing required signature And that for each and every sing

  • URL in a string

    Im trying to put a url in a string to print to an html file. Problem is the quotation marks. I tried using single quotation marks to mark the start and end of the string, except that didn't work. I was wondering what was the way around this? aka Stri