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
2 answers

Create pdf using flex

I am trying to create PDF file using flex. There are some problem which i am facing.. when i have less text to display it's working fine. but when there are lots of text which have to display it's overlap. is there any PDF component which is expand…
Nidhi
  • 755
  • 3
  • 11
  • 25
0
votes
1 answer

unable to take screen shot and save as pdf in flex 4.1

I am using Flex 4.1 and AlivePdf for generating pdf. My requirement is like as follows: I have an array of xml data. I need to iterate that array, develop a chart, take a screen shot of that chart (using ImageSnapshot.captureImage) and save it as…
0
votes
2 answers

When using AlivePDF library in Flex the beginFill method sets font colour rather than background colour

Code sample: var headerRowBackground:RGBColor = new RGBColor(0); headerRowBackground.b = 58; headerRowBackground.g = 28; headerRowBackground.r = 255; printPDF.beginFill(headerRowBackground); printPDF.addCell(30, 20, "Room"); The word "Room" is in…
DaveC
  • 552
  • 1
  • 4
  • 20
0
votes
1 answer

Make Grid Tabel using Alive PDF

How to make grid table using alive pdf?
Sthepen
  • 203
  • 2
  • 6
  • 15
0
votes
1 answer

How can I POST data to a website using the PurePDF library?

I'm evaluating the differences between the purePDF and alivePDF libraries in flex, and I'm setting up some IO code so that I can save documents from either from a web based flex application. AlivePDF gives a very convenient save() function that…
Dan Monego
  • 9,637
  • 6
  • 37
  • 72
0
votes
1 answer

Images in creating client side PDF with image using flex and AlivePDF

I am creating client side PDF with image using flex and AlivePDF for a web based application. Images have been generated on that pdf but it is creating problem for large size images as half of the image disappeared from that pdf.I am taking the…
Flex SDK
  • 1
  • 3
0
votes
1 answer

Flex 3 + AlivePDF - How to display pdf in the browser

I'm testing alivePDF 0.1.5 and till now everything's been fine. I'm super interested in the new function writeFlashHTMLText() cause it makes my life so much easier! xD I'm now trying to display the generated pdf in a browser tab/window instead of…
BS_C3
  • 385
  • 1
  • 6
  • 23
0
votes
1 answer

abc bytecode decoding failed

I am working on a project in Flex 3. First off, I should explain I'm learning Flex as I go along. I was tasked with figuring out something and I needed Flex to do it as that is what our UI guys do (I am a database developer and work in PL/SQL and…
user2921015
  • 69
  • 1
  • 9
0
votes
1 answer

Change color when mouse over from pdf

I have a task: In my document I created some link. If I click it I go to some place from my document. And from time of click appears a highlight. I want to highlight appears from time mouse over. Whether exist some way to do it? I work with Flash,…
Jakobinec
  • 63
  • 13
0
votes
0 answers

AlivePdf embeded .otf

I need some specifics symbols from my pdf. If I use ttf+afm embeded fonts I need specify CodePage like 1251. And after convert some symbols (√, ²) displays like…
Jakobinec
  • 63
  • 13
0
votes
3 answers

Creating interactive reports in PDF

I want to create reports that can be drilled down by the readers - but the reports have to be PDF. I have two options: Link from the PDF to an online report tool Make the reports themselves interactive I like #2... I believe I can do this with…
Jason
  • 16,739
  • 23
  • 87
  • 137
0
votes
2 answers

Pattern matching text in the body of a PDF and adding hyperlinks with PHP

The situation is as follows: I have a series of big, fat PDF files, full of imagery and randomly distributed text - these are the sections of a huge promotional pricelist for a vast array of products. What I need is to pattern-match all the…
Hristo
  • 740
  • 2
  • 7
  • 19
0
votes
1 answer

Generating PDF file from Flex/Flash developer

There are various links available on using AlivePDF to generate pdf. But these codes work only for showing text and fail when we try to show picture. Over that even format of function AddImage and AddImageStream is not matching with current format…
Anusha
  • 67
  • 12
0
votes
0 answers

Arabic Suppport for AlivePDF

I am trying to use the alivepdf library to create PDFs that include Arabic text. I searched several places, and I could not find if the library supports Arabic. I also tried purepdf, which says it supports Arabic, but found may difficulties in…
FlashV8
  • 52
  • 7
0
votes
3 answers

There is no save() method in FileReference Class of Flex

i'm trying to export the content of DataGrid into PDF var bytes:ByteArray = myPDF.save(Method.LOCAL); var f:FileReference = new FileReference(); f.save(bytes,"TestAttachment.pdf"); /* Call to a possibly undefined method save through a reference…