ActionScript 3.0 :: URLLoader - Receiving PDFs From PHP

Oct 9, 2008

I want to instruct a server-side PHP script to generate a dynamic PDF using variables I submit from Flash. I then want to download that PDF back into my Flash application. Can I use "Loader" or "URLLoader" ? If so, how do I structure my code to render the PDF within Flash when it comes back from PHP? ...or do I have to use Flash Remoting or other means to achieve my goal?

View 3 Replies


Similar Posts:


ActionScript 3.0 :: URLLoader Keeps Receiving Same Variable Value

Aug 16, 2011

ActionScript [code]...

As you see, the code dynamically creates movie clips. The problem is that after I first launch the program (whether it'd be in Flash or the SWF) it loads perfectly the first time but after, it doesn't. If e.target.data.Count equals 1 in the beginning at first launch, any change I make to the database to change the value of e.target.data.Count is not reflected in the program.

View 3 Replies

ActionScript 3.0 :: Not Receiving COMPLETE Event In URLLoader?

Aug 18, 2009

I'm querying a web application in a remote server through XML files and receiving answers in the same file format. Until now, sometimes I received a connection error:

Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://server/Services/startSesion.com
at reg_jugadores_fla::MainTimeline/queryGQ()
at reg_jugadores_fla::MainTimeline/reg_jugadores_fla::frame1()

When this occurs, trying to access the services through a web browser, there's a test page where you can try queries, returns a "500 Internal server error". I managed that problem adding a listener to catch the error:

xmlSendLoad.addEventListener(IOErrorEvent.IO_ERROR , catchIOError);

But since yesterday I can't connect anymore using Flash while it's possible to access the test page. I'm not able to talk to any support guy as the company is closed for vacations! I added listeners to try to know what's happening and this is the result in the output window:

openHandler: [Event type="open" bubbles=false cancelable=false eventPhase=2]
progressHandler loaded:154 total: 154
httpStatusHandler: [HTTPStatusEvent type="httpStatus" bubbles=false cancelable=false eventPhase=2 status=200]

AFAIK, status=200 means OK but why the COMPLETE event isn't dispatched?. So, is there anything I can do or just wait until the tech guys return from the beach?

/************************************************** ********/
queryGQ(sessionURL,sessionQS); // Start session
stop();
/************************************************** ********/

[code].....

View 3 Replies

ActionScript 3.0 :: Track The Progress Of URLLoader Receiving Variables?

Jan 19, 2009

I know you can track the progress of URLLoader receiving variables, but has anyone found a way to track the progress of it sending variables?

View 0 Replies

Actionscript 3 :: Flash - URLRequest/URLLoader - Server Not Receiving Data?

Sep 11, 2011

I am trying to send a server "schooltraq.com/api/" variables for a request.My Code:

package
{
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.*;

[code].....

How ever when I keep getting back "error:empty request". I emailed the site owner and he said that my program may be dropping the data during redirects.[URL]

View 1 Replies

Actionscript 3.0 :: URLLoader External Text File But Keep Receiving The Following Error Message

Feb 5, 2009

I am trying to load an external text file but keep receiving the following error message:

Code: Select allTypeError: Error #2007: Parameter url must be non-null.
at flash.net::URLStream/load()
at flash.net::URLLoader/load()
at lee.dataload::TextLoader()

this is the code i'm using, i'm very new to actionscript so it's probably loaded with errors:

[Code]....

View 4 Replies

Flex :: Using PurePDF Is It Possible To View PDFs?

Jul 24, 2011

Can you use PurePDF to view files or is the api only for writing them?

View 3 Replies

ActionScript 3.0 :: Open PDFs In Acrobat From A Swf?

Jun 9, 2011

I'm constructing a website in Flash that is based on a DVD I'd put together in Director a few years ago.

One of the major components is PDFs files that need to be printed out. I've spent the last couple of days trying to find a solution, but seem to keep hitting brick walls.

It seems that most solutions only work with projectors running from cds rather than swfs on websites.There's been a couple of snippetts I've tried that are based on opening the pdfs in a new browser window. Aside from the fact that none of them have worked so far, a new browser window is not the ideal solution.I've set up the pdfs so they open the Print dialogue as now as they open in Acrobat. So what I really need is a way to get them open in Acrobat from Flash using AS3 (or whatever else may be the solution).

View 0 Replies

Open PDFs From Flash Presentation?

Mar 27, 2009

I've been tasked with making a fairly simple Flash presentation that will be published to an exe and put onto a jump drive. I've done this before and at the time I just used the getURL command (IIRC) to open a PDF with a button click. I literally have 100's of PDFs to link to so I was wondering if there is a better way to do it (before I start using my old method) I'm using AS3 in Flash CS5. And I am NOT a big Flash user so maybe I just need to resort to the way i did it last time. Was just thinking there might be a more elegant way to approach this...that a novice could handle.

View 3 Replies

Flex :: Merge Pdfs(Alive PDF) In Flex3?

Apr 12, 2011

My flex application generates individual pdf documents based on individual selection criterion,but i need to merge those generated pdfs or is it possible to store individual pdfs temporarily then merge those into single pdf?

View 2 Replies

ActionScript 2.0 :: Flash 8 To Create Pdfs Or Jpgs On The Fly?

Jan 23, 2006

I have a dressup game or something simillar. is it possible to have flash save what i've done in the game to a jpg or pdf? (i'd rather have a pdf)

View 7 Replies

Force PDFs To Open In Adobe Reader Rather Than In Plugins?

Jul 12, 2010

We have an Air and Flash application that opens a pdf, but many computers by default open pdfs in browser plugins rather than through reader itself. Is there a way to force the alternate behavior in Flash/Air? This is needed since we have slightly writable pdfs.

View 1 Replies

Actionscript 3 :: Load PDFs Dynamically And Store Each Page Of The PDF Into Flash

Jan 4, 2011

In my application I need to load PDFs dynamically and store each page of the PDF. Currently what I'm doing is converting each page to an image using some php code and then importing each image to flash, but I was wondering if there is a better way. Or is converting to images then importing to flash the best option?

View 2 Replies

ActionScript 3.0 :: Multiple Instances Of Single External SWF - Loading PDFs

Nov 13, 2008

I'm trying to make a custom PDF viewer in flash. Currently I've found a freeware server side script that will convert the PDF into a single Flash AS3 SWF file with each page from the PDF on a new frame. Loading this is no problem. I can navigate through the pages with a simple gotoAndStop(frame); call.

Here's my problem: I want to display more then one page at a time. I want to be able to scroll through the pages and see one page going off the top of the screen while the next is coming up from below. So, how can I put multiple instances of this SWF on the stage? Do I have to load it with a loader and URLRequest multiple times? or can I make copies of the one I've already got somehow?

I still have to load PDF in flash, but if I could find a better way to create an SWF out of the PDF. I'm currently using pdf2swf and it's great and all. Maybe there is some functionality to that program that I'm missing. Some other way to organize the PDF pages in the SWF.

View 8 Replies

ActionScript 3.0 :: Buttons To Call PDFs Of Menus - Error With URLRequest

Sep 9, 2010

Basically im building a site and using buttons to call up PDFs of menus. Found some code and adapted it to suit, but am getting some errors:
desc: 1137: Incorrect number of arguments. Expected no more than 1.

import flash.net.URLLoader;
cafe_btn.addEventListener(MouseEvent.MOUSE_DOWN, buttonclicka);
function buttonclicka(event:MouseEvent):void {
var homeLink:URLRequest=new URLRequest("menus/cafe.pdf","_blank");
navigateToURL(homeLink);
[Code] .....

View 2 Replies

Actionscript :: Flash FTE - Creating PDFs Out Of Rendered Output, And Selectable Text In PDF?

Feb 12, 2011

I wrote a huge post first but thought I shouldn't drop a wall of text here. Here's a summary of a problem that I'm hoping you all can provide some insight in:I have a web app for a client which uses Flash text engine api (not TLF) to layout some text in a report.The text requirements are specific so we like using FTE for typography.Now that the text is looking perfect to the client, how do I make what I'm seeing on screen into a pdf that looks identical?Tried purepdf or alivepdf sprite->bitmap->pdf approach... terrible results - we need resolution independenceLooked at purepdf api - doesn't seem to be a way of converting the final sprite output directly to the pdf.... seems like it'll require me to use their own API for typesetting / layout... which defeats the purpose of using FTE to do this (we'd lose kerning / ligatures etc that way?)Finally using the flash -> print -> using postscript driver like pdfconverter or cutepdf -> pdf ........ this is great because the pdf looks exactly like display and is vector-output (res-independent), BUTUsing FTE, the pdf created this way doesn't have selectable text in pdf! flash TextFields -> pdf do retain selectability. Basically pdfconverter doesn't embed the fonts in the pdf when FTE is used... it DOES embed the fonts in a pdf made the same way with same fonts in MS Word or something

View 1 Replies

ActionScript 3.0 :: Flash FTE - Creating PDFs From Rendered Output And Selectable Text In PDF?

Feb 12, 2011

- I have a web app for a client which uses Flash text engine api (not TLF) to layout some text in a report. The text requirements are specific so we like using FTE for typography. Now that the text is looking perfect to the client, how do I make what I'm seeing on screen into a pdf that looks identical?

- Tried purepdf or alivepdf sprite->bitmap->pdf approach... terrible results - we need resolution independence Looked at purepdf api - doesn't seem to be a way of converting the final sprite output directly to the pdf.... seems like it'll require me to use their own API for typesetting / layout... which defeats the purpose of using FTE to do this (we'd lose kerning / ligatures etc that way?) Finally using the flash -> print -> using postscript driver like pdfconverter or cutepdf -> pdf ........ this is great because the pdf looks exactly like display and is vector-output (res-independent), BUT Using FTE, the pdf created this way doesn't have selectable text in pdf! flash TextFields -> pdf do retain selectability. Basically pdfconverter doesn't embed the fonts in the pdf when FTE is used... it DOES embed the fonts in a pdf made the same way with same fonts in MS Word or something

1- How do I get the text to be selectable in the PDF created from FTE > postscript method

2- (If not that) - How can I create a PDF from flash where the PDF is identical to what I'm seeing on screen - basically doing a direct final-rendered-Sprite to PDF .... if there's a way to make that PDF manually, then maybe I can embed the fonts manually...

Some context:

- How we're using fonts - they're SWF's created from teh fonts using [embed] and embedAsCFF=true for use in FTE

- I thought of using FTE only for typesetting / layout - and when we get the TextLines, using the good old flash...TextField (which does become selectable in final pdf) .... but I cant do that because some of our textlines have several variations of font styles and inline (GraphicElement) images on the same line.... I think its impossible to detect all of those variation can create the appropriate number of textfields?

View 1 Replies

IDE :: Unable Link To Files Such As PDFs, JPGs And WMVs Giving The User The Ability?

May 4, 2009

Do you still have to use Flash wrappers like Zinc to be able to save files from a CD using a Flash projector. In the same way you would use Filereference.save?

I've got a DVD style project where I need to be able link to files such as PDFs, JPGs and WMVs giving the user the ability to save these to their local drive.

View 1 Replies

ActionScript 3.0 :: Receiving Data From Php?

May 31, 2010

my first flash webpage sends data to a php script.  I then do

var result_data:String = String(contactLoader.data);
if (result_data == "ok")
{
navigateToURL(strURL, "_self");
}
 
So if the data is sent with no problems, it will load up my new url.  Problem is, this new url needs this data to display it.  So, if my php file holds the data in variables, how can my new url retrieve these in real time? (meaning that data goes straight from swf to php to new swf)  I have been trying LoadVars, but not sure if this will work in real time, maybe it will.

View 8 Replies

Php :: Sending And Receiving Data?

Feb 28, 2012

Not getting data back into flash from php that queries mysql data, think the problem is with my as3 code here?The php works, the as3 posts to the php ok, its the returning of the variables to as3 that I am unsure about and seems to be the problem?

public static function MineData():void{
var myRequest:URLRequest = new URLRequest("login.php");
var myLoader:URLLoader = new URLLoader();

[code].....

View 1 Replies

Asp.net Mvc :: Receiving Post From Flash?

Mar 13, 2012

I have a flash-movie on my webpage, which makes a post when its done playing. I want to catch that post and update a session.

I get the following "post-error" when the movie ends.

POST /en/RunTest/test/showmovie/finish
HTTP/1.1 500 Internal Server Error

"test" is my controller"showmovie" is my action which takes an id as parameter. fx.

/en/runtest/test/showmovie/1

That is the page my flash is on.

I've tried the using the HandleUnknownAction-method, but it just never gets there. I've tried some MapRoute'ing - but havent succeded.

What i want is the method setMovieSeen to be called whenever i recieve the post from the flash.

View 1 Replies

Actionscript 3.0 :: Receiving Data From A Different Url?

Jun 29, 2010

I'm setting up a kind of database, where the data are coming from a specific url.
I receive the source code of that url, get the data I look for, and display this in a text box. This works fine as long as I start the swf locally. However, when I copy the swf to my home page, the data obviously cannot be received anymore.

To make it more clear (with fictional url): Homepage [URL] contains the swf; tries to automatically read and display the source of [URL]

View 11 Replies

ActionScript 3.0 :: Receiving A Variable From Php

Nov 3, 2010

I just build a simple web server, but now in one of the pages I would have to have a flash (.swf) embbeded. Maybe an easy task, but also I would like that the .swf receives data from the PhP page, but I cant figure how Simply that when I push the button in the .swf, the sampletext changes to a variable name I have in php.[code]

View 6 Replies

ActionScript 2.0 :: Receiving Commands From Toolbook

Nov 12, 2003

I'm trying to reset my flash movie from inside toolbook by sending a variable to flash. I could have two problems: either flash doesn't understand toolbook or my actionscript is just wrong. How should I recieve a the command from toolbook? I've tried alot of different things.

View 1 Replies

ActionScript 3.0 :: Receiving Socket Messages?

May 25, 2010

I am currently working on a project that involves using sockets. I am using Flash CS5 and AIR2.0. I am also using another program that will be acting as the socket server (Esperient Creator).I have successfully SENT socket commands from my AIR app to the server.What I need to do is RECEIVE socket commands within my AIR app from the server program. I read somewhere that this was a new feature for AIR 2.0. If anyone has any insight on how to get this to work.

View 1 Replies

ActionScript 3.0 :: Receiving Variables Back From Php?

Apr 21, 2010

basicaly i have narrowed it down to this code

[Code]...

As silly as it sounds, i need the trace to see the error. I am using cs4 for this and have not found anything so far to explain why it is not working. You can test it out without needing anything on stage.
 
This is the error i get and do not know why. undefined is the varSend trace
 
TypeError: Error #1010: A term is undefined and has no properties. at Untitled_fla::MainTimeline/frame1() is the varLoader trace

View 3 Replies

ActionScript 3.0 :: Receiving Response From Php Script

May 25, 2010

I have built a simple contact form that sends t an email address via a php script. This works fine, (message detalis are sent as URLVariables, which are the data property of a URL Request whose method is set to POST). The PHP script returns a boolean value to confirm that the details have been successfully forwarded to the mail server:

[Code]...

View 1 Replies

Professional :: Swf Is Not Receiving SendAndLoad Variables?

May 26, 2010

I am using the sendAndLoad class to perform a script through PHP and load the variables back into the swf. Using Firefox Firebug, I am able to tell that everything is executing correctly, including the PHP script returning the following variables:
 
&mySubscriberID=36&firstName=Bill
 
But the variables are not making it back into the swf file. Here is the code for the first frame of my flash file:

[Code]....

I also have dynamic text fields with the above variables assigned to them.

View 1 Replies

ActionScript 1/2 :: Swf Is Not Receiving SendAndLoad Variables?

May 26, 2010

the sendAndLoad class to perform a script through PHP and load the variables back into the swf. Using Firefox Firebug, I am able to tell that everything is executing correctly,including the PHP script  returning the followingvariables:&mySubscriberID=36&firstName=BillBut the  variables are not making it back into the swf file. Here is the code for  the first frame of my flash file:

stop();  var sendLV = new  LoadVars();var recLV = new LoadVars();
recLV.onLoad =  function(success:Boolean){trace("recLV back from php");}
sendLV.onLoad  = function(success:Boolean){  nextFrame();  trace("sendLV  back

[code].....

View 7 Replies

ActionScript 2.0 :: Receiving Multiple Variables From PHP

Aug 4, 2009

Currently I have a simple setup which sends some data to PHP and then PHP returns a variable to flash. I have no problem tracing out the returned variable in Flash, however i'm strugling to send back more than one variable.[code]If I remove the trace and echo for fromPHP2, it's all good, however with with my second echo for fromPHP2 it just gives me back undefined:[code]It seems that fromPHP1 is basically returning both echo's.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved