Print a webpage direct from flash

hi all i have input text field that the user type a number EX
: 223344
and when he click the send button the browser open the page
EX :
http://mysite/223344.htm
it is done now
what i want that if this page is exist i want from flash to
print it directly without open it
and if not exist a message to the user said to him that
ensure the number is correct
plz help me
i prefere that the print dialog not appear to the user
because it is touch screen and i know the default printer

you can load an html page into flash and assign it to a
html-enabled textfield but only the most basic tags can be handled
by flash.
in addition, any graphics used won't be displayed (unless the
html page is in the same directory as the swf's embedding html
file).

Similar Messages

  • Error when printing a PDF direct from SAP archive

    Hi together,
    I try to print a PDF direct from SAP archive and I got the error ""C:\Program files\Adobe\Acrobat 7.0\reader\AcroRd.exe" /p /h" not found. In the internet I found several topics which describe this way to print a PDF without open the Acrobat Reader.
    The customizing for document management (Local application) seems o.k. If I remove in the registry the parameters /h /p for print, Acrobat Reader will open and show the document if I use the print button in SAP.
    Have anybody an idea what the reason is?
    Thank you.
    Regards
    Thomas

    The rundll32 error seems to have disappeared.  Until this morning I had both this error and the rundll32.  All other types of docs open fine.  This one will open if saved to the desktop first, but not from Outlook.

  • Can I print Dymo labels directly from Address Book?

    That would be cool. But I end up launching Dymo's crap app and cutting and pasting every address into a label I want to print.

    I agree with the previous posts that Dymo's Label Software is satisfactory when you choose to use Apple's Address Book app. However, I frequently want to print a single label from Address Book, and I don't like to waste time launching Dymo's app and scrolling (no search function!) through my addresses.
    Here's the solution I have used to print a single address label from Address Book (v. 3.1.2) to my LabelWriter Twin Turbo:
    (1) With the address selected in Address Book, got to File > Print ...
    (2) Choose "Dymo Labelwriter" from the Printer drop-down menu
    (3) Under the "Layout" tab (not "List"), be sure "Dymo" & "Shipping Labels" is selected from the Page drop-down. (It seems counter-intuitive to select shipping labels when you're printing address labels, but it's the only workaround I've found, and you'll modify the margins in step #4.)
    (4) Now select "Define Custom ..." from the Page drop-down menu and give it a new name (e.g. "Dymo Address") (+At this point, the label preview on the left should look like a big shipping label still+.)
    (5) Modify the margins of your custom page layout (in inches) to Top=1.200 Bottom=0.000 Left=0.500 Right=0.250
    (6) Print a sample copy and adjust margins to suit your needs
    If you wonder why this circuitous route works, +so do I+. If you don't want to read my proposed explanation, simply follow the steps above and stop reading. If you'd like to know what I think is happening, feel free to read on:
    As best I can discern, Address Book is sending the print job to the Labelwriter, assuming the label spool is *centered on the spindle*. As you know, that's not the case. However, when you tell Address Book you're printing on a large shipping label, which takes up most of the spindle anyway, you can then adjust the margins (esp. the top margin) to print only on the "bottom half" of the shipping label. That means you've defined margins suitable to print on the actual address labels installed on the left side of the spindle.
    Message was edited by: The Divining Ape
    Message was edited by: The Divining Ape

  • Is there a way to print a book directly from Lightroom 5 ?

    I´d really like to experiment with printing my own books, using different types of Fine Arts paper. But I only get options to export to PDF, JPEG or use Blurb´s service.
    If I go through the trouble of using Lightroom´s book editor, why can´t I print it locally on my Fine Arts printer ?

    Set the JPEG quality to 100 (maximum value) and there won't be a quality loss. Importing does not affect the quality of the JPGs. The quality of a JPG will only be affected when you open it (again) in a pixel editor and re-save it after editing. But even then the quality loss is minimal if you select maximum quality every time you save.
    Set the Resolution to 300, unless you are printing from a high-end Epson. In this case select a res of 480. Or select the resolution you usually use when printing from Lr.
    In Color Profile select either your printing profile that then will be embedded in the JPGs. In this case do not select any printing profile in the Print Module, since the printing profile has been embedded during the export; rather select <Managed by Printer>.
    Alternatively you can select proPhoto RGB when exporting from the Book Module and then print the same way you would print your Raw-images from Lr.
    BTW: Although Lr will not automatically re-import the JPGs, I would not call this "a way around it".

  • Print Crystal Report directly from C# without using Report Viewer

    Hello All,
    I need to print a crystal report directly to the printer without using ReportViewer in C#. I've a CrystalReport2(belowCode) which requires a query (Select * from JobHeader where JobNumber='J012345') to display all the data. I'm stuck with database connection
    and putting all the data to DataAdapter in C# (Below Code). I also have 8 subreports in my CrystalReport2. Can somebody please give me hand on this? I'm struggling with it. Thanks.
    Regards
    using CrystalDecisions.CrystalReports.Engine;
    using System;
    using System.Drawing;
    using System.Collections;
    using System.ComponentModel;
    using System.Windows.Forms;
    using System.Data;
    using System.Data.SqlClient;
    namespace csharp_win_printtoprinter
    /// <summary>
    /// Summary description for Form1
    /// </summary>
    public class Form1 : System.Windows.Forms.Form
    //CR Variables
    ReportDocument crReportDocument;
    private System.Windows.Forms.Button button1;
    private System.Windows.Forms.PrintDialog printDialog1;
    private System.Windows.Forms.Button button2;
    private System.Drawing.Printing.PrintDocument printDocument1;
    private CrystalDecisions.Windows.Forms.CrystalReportViewer crystalReportViewer1;
    private CrystalReport1 CrystalReport11;
    private Chart Chart1;
    /// <summary>
    /// Required designer variable
    /// </summary>
    private System.ComponentModel.Container components = null;
    public Form1()
    // Required for Windows Form Designer support
    InitializeComponent();
    // TODO: Add any constructor code after InitializeComponent call
    /// <summary>
    /// Clean up any resources being used
    /// </summary>
    protected override void Dispose( bool disposing )
    if( disposing )
    if (components != null)
    components.Dispose();
    base.Dispose( disposing );
    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor
    /// </summary>
    private void InitializeComponent()
    this.button1 = new System.Windows.Forms.Button();
    this.printDialog1 = new System.Windows.Forms.PrintDialog();
    this.button2 = new System.Windows.Forms.Button();
    this.printDocument1 = new System.Drawing.Printing.PrintDocument();
    this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
    this.Chart1 = new csharp_win_printtoprinter.Chart();
    this.CrystalReport11 = new csharp_win_printtoprinter.CrystalReport1();
    this.SuspendLayout();
    // button1
    this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    this.button1.Location = new System.Drawing.Point(32, 56);
    this.button1.Name = "button1";
    this.button1.Size = new System.Drawing.Size(160, 104);
    this.button1.TabIndex = 0;
    this.button1.Text = "Print Report No Choose Printer";
    this.button1.Click += new System.EventHandler(this.button1_Click);
    // button2
    this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    this.button2.Location = new System.Drawing.Point(272, 56);
    this.button2.Name = "button2";
    this.button2.Size = new System.Drawing.Size(160, 104);
    this.button2.TabIndex = 1;
    this.button2.Text = "Choose Printer";
    this.button2.Click += new System.EventHandler(this.button2_Click);
    // crystalReportViewer1
    this.crystalReportViewer1.ActiveViewIndex = 0;
    this.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    this.crystalReportViewer1.Cursor = System.Windows.Forms.Cursors.Default;
    this.crystalReportViewer1.Location = new System.Drawing.Point(47, 188);
    this.crystalReportViewer1.Name = "crystalReportViewer1";
    this.crystalReportViewer1.ReportSource = this.CrystalReport11;
    this.crystalReportViewer1.Size = new System.Drawing.Size(903, 296);
    this.crystalReportViewer1.TabIndex = 2;
    // Form1
    this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    this.ClientSize = new System.Drawing.Size(1164, 505);
    this.Controls.Add(this.crystalReportViewer1);
    this.Controls.Add(this.button2);
    this.Controls.Add(this.button1);
    this.Name = "Form1";
    this.Text = "Form1";
    this.Load += new System.EventHandler(this.Form1_Load);
    this.ResumeLayout(false);
    #endregion
    /// <summary>
    /// The main entry point for the application
    /// </summary>
    [STAThread]
    static void Main()
    Application.Run(new Form1());
    private void button1_Click(object sender, System.EventArgs e)
    crReportDocument = new ReportDocument();
    //Create an instance of a report
    crReportDocument = new CrystalReport2();
    //Use error handling in case an error occurs
    try
    //Set the printer name to print the report to. By default the sample
    //report does not have a defult printer specified. This will tell the
    //engine to use the specified printer to print the report. Print out
    //a test page (from Printer properties) to get the correct value.
    System.Drawing.Printing.PrintDocument printDocument = new System.Drawing.Printing.PrintDocument();
    crReportDocument.PrintOptions.PrinterName = printDocument.PrinterSettings.PrinterName;
    //Start the printing process. Provide details of the print job
    //using the arguments.
    crReportDocument.PrintToPrinter(0 ,true , 1, 1);
    //Let the user know that the print job is completed
    MessageBox.Show("Report finished printing!");
    catch(Exception err)
    MessageBox.Show(err.ToString(), "Unexpected exception");
    private void Form1_Load(object sender, System.EventArgs e)
    private void button2_Click(object sender, System.EventArgs e)
    //Open the PrintDialog
    this.printDialog1.Document = this.printDocument1;
    DialogResult dr = this.printDialog1.ShowDialog();
    if(dr == DialogResult.OK)
    //Get the Copy times
    int nCopy = this.printDocument1.PrinterSettings.Copies;
    //Get the number of Start Page
    int sPage = this.printDocument1.PrinterSettings.FromPage;
    //Get the number of End Page
    int ePage = this.printDocument1.PrinterSettings.ToPage;
    string PrinterName = this.printDocument1.PrinterSettings.PrinterName;
    crReportDocument = new ReportDocument();
    //Create an instance of a report
    crReportDocument = new Chart();
    try
    //Set the printer name to print the report to. By default the sample
    //report does not have a defult printer specified. This will tell the
    //engine to use the specified printer to print the report. Print out
    //a test page (from Printer properties) to get the correct value.
    crReportDocument.PrintOptions.PrinterName = PrinterName;
    //Start the printing process. Provide details of the print job
    //using the arguments.
    crReportDocument.PrintToPrinter(nCopy, false, sPage, ePage);
    //Let the user know that the print job is completed
    MessageBox.Show("Report finished printing!");
    catch(Exception err)
    MessageBox.Show(err.ToString());

    1. This is a VB.Net forum not a Visual C# forum. For Visual C# questions try this forum.
    Visual C#
    2. Crystal Reports are not supported by Microsoft. Therefore, unless somebody responding in the Visual C# forum has experience with whichever version of Crystal Reports you are using, you will probably not receive an answer in the Visual C# forum. SAP has
    their own assistance for Crystal Reports using Visual Studio. You can try to find an appropriate forum to ask questions in at SAP in the below link.
    SAP Community Network
    La vida loca

  • Print pdf file directly from a folder, Adobe Reader X in  Windows Server 2003

    In previous versions of Adobe Reader we were able to print pdf files groupwise directly when selected in a folder.
    Now I've installed Reader X on the Windows Server 2003 environment. Logged in as administrator I can still select <Print> by selecting the right mouse button in a folder. Logged in as a user, this is not available.
    I checked user-rights and permissions and made sure they have full control.
    Someone who can help us in this matter?
    Thanks

    Thanks for your reply.
    The file menu doesn't show the print option either. We used to work this way, after installing the 9.0 and Reader X version, this option has disappeared from both the File menu and the right mouse button. For other filetypes, for example Excel the Print option is still available and works properly. Logged in as administrator on the serverconsole, there is no problem. So it seams to be something specific to pdf-formats in a server 2003 environment. The userrights are all set on full control (same as administrator).
    Thanks again

  • How to print PDF files directly from SAP?

    We have created output that is being saved in a PDF format. We can store it on any drive or send it through email. However, we would like to be able to print a PDF file directIy without any manual intervention. Now users still have to open the file and hit the print button and we want to avoid this. So basically we want to be able to create e.g. a sales order, generate an order confirmation in PDF format and send it directly to the output device that we stored in output master data. I have a feeling it is not possible to print directly because output device has to be like a PDF1 to create the PDF file itself and there is no space left somewhere to store the physical output device. We use ECC 5.
    kind regards
    Angelique Heutinck

    You can use this custom FM -:)
      FUNCTION Z_PDF_DOWNLOAD.
    *"*"Interfase local
    *"  IMPORTING
    *"     REFERENCE(FILENAME) TYPE  STRING
        SELECT RQIDENT
        INTO (T_TSP01-RQIDENT)
        FROM TSP01
        WHERE RQOWNER EQ SY-UNAME
          AND RQCLIENT EQ SY-MANDT.
        APPEND T_TSP01.
        ENDSELECT.
        SORT T_TSP01 DESCENDING.
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
             EXPORTING
                  SRC_SPOOLID              = T_TSP01-RQIDENT
                  NO_DIALOG                = ''
             IMPORTING
                  PDF_BYTECOUNT            = NUMBYTES
                  PDF_SPOOLID              = PDFSPOOLID
                  BTC_JOBNAME              = JOBNAME
                  BTC_JOBCOUNT             = JOBCOUNT
             TABLES
                  PDF                      = PDF
             EXCEPTIONS
                  ERR_NO_OTF_SPOOLJOB      = 1
                  ERR_NO_SPOOLJOB          = 2
                  ERR_NO_PERMISSION        = 3
                  ERR_CONV_NOT_POSSIBLE    = 4
                  ERR_BAD_DSTDEVICE        = 5
                  USER_CANCELLED           = 6
                  ERR_SPOOLERROR           = 7
                  ERR_TEMSEERROR           = 8
                  ERR_BTCJOB_OPEN_FAILED   = 9
                  ERR_BTCJOB_SUBMIT_FAILED = 10
                  ERR_BTCJOB_CLOSE_FAILED  = 11
                  OTHERS                   = 12.
        IF SY-SUBRC EQ 0.
          CALL FUNCTION 'GUI_DOWNLOAD'
               EXPORTING
                    BIN_FILESIZE            = NUMBYTES
                    FILENAME                = FILENAME
                    FILETYPE                = 'BIN'
               TABLES
                    DATA_TAB                = PDF
               EXCEPTIONS
                    FILE_WRITE_ERROR        = 1
                    NO_BATCH                = 2
                    GUI_REFUSE_FILETRANSFER = 3
                    INVALID_TYPE            = 4
                    NO_AUTHORITY            = 5
                    UNKNOWN_ERROR           = 6.
          IF SY-SUBRC EQ 0.
            DELETE FROM TSP01 WHERE RQIDENT EQ T_TSP01-RQIDENT.
          ENDIF.
        ENDIF.
      ENDFUNCTION.
    Greetings,
    Blag.

  • Is there a way to automatically add the filename in the page header when batch printing text files directly from finder?

    hello, i have 80 text files (docx). the finder preview works great and i can open them in pages.
    I need to batch print them from finder:
    I select all the documents > drag on printer's icon> printer puts them in queue ( after an on the fly pdf conversion)  ad starts printing.
    BUT
    i need the filename printed on each page  ( in hearder or footer) , not only the regular text content.
    Do you know if there is a workaround?
    thank you
    Tullio

    If that section has an ID or NAME attribute then you can add that to the URL (#anchor) that you want to reload.
    See View > Page Source
    https://support.mozilla.com/en-US/questions/774792#answer-128100

  • Since switching from Chrome, I can't print .pdf attachments directly from my gmail. Please help.

    It used to be (in Chrome) that I could view a .pdf attachment in gmail and from there print. Now in Firefox, when I view a .pdf attachment the print option is there and the print dialogue box comes up when I click it, but once I hit "OK" nothing comes out of the printer. I can print emails and other items, so it's not a printer connectivity problem or a problem with the print setup in Firefox. The only items affected are .pdf attachments in my gmail account. I've tried switching .pdf readers and turning off Protected Mode in Adobe. Please help!

    What PDF reader r u use and what version is it?

  • Print a PDF document from flash

    Hi,
    I need to create a flash button that when I click on him its
    print a PDF document.
    Is it possibility to do that in flash
    Thanks
    Pini

    For offline/CD-Rom work yes you can using JStart read this
    http://www.flashjester.com/index.php?section=faq&cPath=28_41#352
    and download the example file
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • With newest Mac OS, Lion, a print preview is no longer available when printing a page directly from the website.

    When I used the operating system, Snow Leopard, there was no Firefox. Lion is the latest operating system and Snow Leopard was the latest system before Lion was introduced. Also, there is no problem when I use the native browser, Safari.

    Doc: I've had a similar experience, and here are the details, investigation, and a workaround. My printer is a Brother MFC-645CN, and I'm using Snow Leopard (10.6.8) on a 2010 iMac quad i5 connected to the printer over my ethernet LAN. Are you using a Brother printer?
    Firefox has shown this kind of nasty issue for the past six months or so. It seems to be related to the imaging algorithms in Preview when dealing with Firefox (now at v.12) and the Brother printer -- the screwy second page (and beyond) show up skewed and up-sized when doing a print preview also. No such problem seen in Safari or anything else. I am not currently using any other Mozilla apps on this Mac besides Firefox.
    A few months ago I tested printing from my administrator account and  a different user account. Firefox printing was completely normal and as expected. When I went back to my main user account, back came the funky second page.I went through extensive troubleshooting to try to chase it down, systematically removing and replacing apps and preferences and many other Library files related to printing, Brother drivers, Firefox, and Preview. Nothing helped. Solution was to migrate my user files to an account where the printing problem wasn't happening. I deleted the problem user account.
    Everything was fine for about three weeks, and then with no warning, printing was back to the bad second page, just as before. I am stumped, and I'll let smarter people try to figure it out. I use Firefox a lot, and it's possible that some add-on setting is interfering, or a web page I visited turned the printing funky again. I just don't know.
    Also checked on a Mac G4 running Leopard (10.5.8) and Firefox 3.6.28. No printing/preview problems there.
    Now, for the work-around I am currently using -- print each page separately, one at a time. Page 1, then page 2, etc. Preview and printing looks completely normal. Hope this works for you until the bug is located and squashed for good.
    Glenn

  • Upload Directly From Flash CS3?

    OK so I might be looking over something simple or maybey you
    just can't do it, but is there a way to publish the final html and
    associated files directly to a website in just FLASH CS3? I know
    you can set up a site on Flash and it has all the requirements like
    in Dreamweaver but I can't seem to find how to send it up without
    taking it into another program, thanks.

    You are correct, the Android version does not currently have this feature. You need to upload to the library and then add to the album. If you wish to add directly to an album, you can use adoberevel.com, create an album, and drag and drop photos there.
    Pattie

  • Can no longer print directly from html nor to a pdf. Mac OX 10.7.4

    For several weeks now whenever I try to print a document directly from Internet (html) the printer preview window doesn't show the document. I only get a black screen. I tried printing anyway thinking that there could be a problem with the preview settings of the printer but all I get is a black page. I can also not printo to PDF using the "save us" dialog. I've check all the printer' settings (including installing and desinstalling it) but everything is OK. It happens regardless of the browser (Safari or Firefox). Downloading the document to my computer also doesn't solve the problem: it downloads but when I attempt to open the document an error messsage pops-up saying that the file is corrupted and can not be opened.
    I have no problem at all when I try to print any kind of document saved on my computer: The preview on the printer dialog shows the actual document. The result is the desired one (the printed doc) and I can also print to PDF by clicking the "PDF" button on the printer's dialog screen. So far the only provisional solution I have found is to take a screen-shot and then print it. The problem comes when you have to scroll down a document you want to print. In this case the screen-shot is useless.
    Details:
    Mac OS X Lion 10.7.4
    Acrobat 10.1.4
    Printer: HP Officejet all-in-one 7310 (5C2DCA)
    Using wifi to connect to printer
    Thank you in advance for your help!

    This preview window - is it the one in Acrobat 10.1.4 when you choose to print a PDF (or a PDF made from an HTML)? If it's a preview in a browser, this seems like maybe a Mac OS problem; Acrobat doesn't make that preview.

  • Very Urgent !! XMLP reports not printing directly from Oracle Apps.

    Hi ,
    We are not able to print XMLP reports directly from Oracle Applications(Concurrent Manager) to the printer.
    We have checked the following setups and they are ok.
    1. Have a Postscript ready printer.
    2. PASTA has been installed and setup.
    3. The printer type "--Pasta Universal Printer Type" is associated with the printer and that the seeded "PDF Publisher" print style and PASTA_PDF printer driver are associated with the printer type. Third party program "pdftops" has been installed in the instance.
    4. pasta_pdf.cfg is present and that it contains an "uncommented" entry as follows:
    preprocess=pdftops {infile} {outfile}
    5. The XMLP Report also has print style as "PDF Publisher".
    Initially, Step 5 was not being followed and the printer was printing the XML data instead of the pdf output.
    Now, after changing it to PDF Publisher, nothing is coming as output to the printer.
    I have checked that both the XML and pdf files are getting generated.
    Does anyone have any idea what could be the problem? Any help is greatly appreciated.
    Regards,
    Satrajit

    Hi Satrajit,
    Please make sure you have pdftops is available on the server and in the PATH.
    Please run following two commands.
    $ which pdftops
    $ which pdf2ps
    Please use one of two commands you found in the server.
    Please review Metalink Note 338990.1 for more details.
    Thanks,
    Shinji

  • Can you print directly from Dreamweaver?

    I was wondering if there is any way to print Dreamweaver
    documents directly from the application without having to preview
    and print from a browser. If not, what is the best way to present a
    Dreamweaver website to a client without doing it online?
    It is essential in our office for clients to have print-outs
    to mark changes on in meetings. We have just started using
    Dreamweaver but have previously created Photoshop documents to
    submit to our programmer, causing us to present our websites in
    print-outs before handing it over to programming.
    Is there a better way using Dreamweaver?
    Thanks

    FILE | Print. But are you wanting to print the rendered HTML
    document?
    Sounds like it.
    > what is the best way to present a Dreamweaver website to
    a client without
    > doing it online?
    Put it on a CD? Or consider some third-party application like
    WebAssist's
    SiteScribe (requires that the Java Engine be installed)?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "rosellag" <[email protected]> wrote in
    message
    news:g6so13$6cm$[email protected]..
    >I was wondering if there is any way to print Dreamweaver
    documents directly
    > from the application without having to preview and print
    from a browser.
    > If
    > not, what is the best way to present a Dreamweaver
    website to a client
    > without
    > doing it online?
    >
    > It is essential in our office for clients to have
    print-outs to mark
    > changes
    > on in meetings. We have just started using Dreamweaver
    but have previously
    > created Photoshop documents to submit to our programmer,
    causing us to
    > present
    > our websites in print-outs before handing it over to
    programming.
    >
    > Is there a better way using Dreamweaver?
    >
    > Thanks
    >

Maybe you are looking for