Questions tagged [alivepdf]

Questions related to AlivePDF, an open source ActionScript 3 PDF generation library.

AlivePDF is an open-source ActionScript 3 (Flash, Flex, AIR) PDF generation library ported from the FPDF PHP project. It allows you to generate PDF's 100% client-side.

More details at http://alivepdf.bytearray.org/

65 questions
0
votes
1 answer

Add Header and Footer in the PDF created by using AlivePDF

I am using jQuery DataTables plugins to create HTML tables and using the DataTables TableTools to generate the PDF of my Table data. It is working fine now I want to add the header and footer in the generated PDF. PDF generation code is written in…
0
votes
2 answers

AlivePDF generate pdf with grid, text not showing

Adding text to a grid in flex adding the grid to a pdf with some other elements on there as well. text is not showing up in some cases. I've tested myself silly on the computers i own but there doesnt seem to be a problem. However, the person i made…
tommy
  • 39
  • 8
0
votes
1 answer

AS3 ALIVEPDF saving via method.remote (PHP) no longer working

The SWF is located on a web server. I am calling the function using this code in AS3... myPDF.save(Method.REMOTE, "http://www.example.com/generator/createpdf.php", Download.ATTACHMENT, "line.pdf"); Here is my PHP script located on the…
Ernie Lail
  • 15
  • 4
0
votes
1 answer

is there a way to print a list from alivepdf in actionscript?

Does anybody know how can I print a list with alivepdf in actionscript? I tried to adopt the logic of the spark grid (so to print the list as a grid) but it fails in printing the header of the printed grid. I also wanted to print only its…
0
votes
0 answers

AlivePDF not writing out text using addText(). Nothign I'm trying is working. What am I missing?

No matter what I try I can't write anything to a PDF that can be seen, although the text is there when viewing the resultant PDF in Notepad. What am I not doing? Here's a code snippet. the variable tf is a TextField defined in the class. This…
user3152018
0
votes
0 answers

alivepdf not displaying movieclip

this is my actionscript code: var myPDF:PDF = new PDF( Orientation.LANDSCAPE, Unit.MM, Size.A4 ); myPDF.addPage(); myPDF.addImage(printarea_mc); saveAs_btn.addEventListener(MouseEvent.CLICK, generatePDF ); function generatePDF…
Leon
  • 51
  • 8
0
votes
1 answer

where create.php needs to be located for remotely saving the pdf generated using alivepdf with flex

I am using alivepdf library to generate pdf with flex 4.6 While saving pdf i am using the following line myPDF.save( Method.REMOTE, "http://alivepdf.bytearray.org/wp-content/demos/create.php", "inline", "drawing.pdf", "_blank" ); Could you please…
0
votes
1 answer

PDF save Android phone with alivePdf (Flex)

I am using alive pdf for flex application pdf export, it is working fine on flash builder 4.6 but ı tried on android phone (HTC sensation xe) alive pdf not save to pdf file. I am waiting for help. It is my pdf export source: var f:File =…
0
votes
1 answer

AlivePdf create a map chart

I'm building a pure actionscript project and would like to create a pdf with an map chart of the world to display my data. It's possible to create a map and save as image and then embed in pdf with alivepdf? package { import MyButton; …
Tropicalista
  • 3,097
  • 12
  • 44
  • 72
0
votes
3 answers

Save PDF local method using alivepdf, flash as3

I have tried few things but no success. I want to prompt user on button click event to save PDF file in local computer generated from object array which were created by user at runtime. Any sort of help is greatly appreciated Thanks I have revised…
user2145746
  • 5
  • 1
  • 3
0
votes
1 answer

Alivepdf insert link inside a multicell?

I'm working to a project in flex. How can I insert a link inside a text of a multicell with alivepdf? myPDF.addMultiCell(120,6,"Vedi su www.google.com",1,"J",0); How can I make clickable www.google.com?
Tropicalista
  • 3,097
  • 12
  • 44
  • 72
0
votes
2 answers

AlivePdf how to set font?

I'm trying to create a pdf in flex, using Alivepdf library. I cannot set font, probably because the example on the site are wrong and they made some change to the code. On http://code.google.com/p/alivepdf/wiki/APINotes there are some example…
Tropicalista
  • 3,097
  • 12
  • 44
  • 72
0
votes
1 answer

Create PDF from Flash CS6 (Client side)

I'm searching for a way to create a pdf file directly from flash 100% clientside. I'm not able to interact with other files on the server (like using php for the pdf creation). Can this be done with the purePDF / AlivePDF library directly in…
vigri
  • 475
  • 1
  • 5
  • 16
0
votes
1 answer

PDF in ADOBE AIR

I'm creating an ADOBE AIR application. I have some text boxes and labels in my Hbox. I want to generate a pdf and have to add that hbox into that pdf ..lot of people telll about alivepdf . I searched ,but have not seen a demo..If you have any idea…
Naju
  • 1,541
  • 7
  • 27
  • 59
0
votes
2 answers

How to covert a flex datagrid with XMLList dataprovider to pdf using AlivePDF?

My flex data grid has a XMLListCollection as its data provider. AlivePDF's Grid expects data grid's data provider to be an array. Is there a way to PDF this table without going through each and every XML node and populating an array of objects to…
SonaliM
  • 153
  • 2
  • 5