ActionScript 3.0 :: Standalone PDF Compiler W/o AIR

Jul 9, 2009

I'm tentatively looking into building a system to compile a PDF in runtime based on a users selection of PDF pages which are in local directories.I'm sure this is possible using something like activePDF.Now, the result would be a PDF which the user would review and eventually export.Am I right in thinking that without AIR the saving of the file to a location on a users machine of their choice is not possible?

View 5 Replies


Similar Posts:


Flex :: Compiler 4.0 25% More Rapid Than Compiler?

Aug 5, 2011

Its stated in adobe site that the Flash Builder 4 compiler is indeed 25% more performing than the previous Flex Builder 3 compiler.

How can I confirm that?

For example if I make a simple application on Fx3 and the same on Fx4, then how would I compare the compiler performance using my project?

View 1 Replies

ActionScript 2.0 :: Create A Standalone Swf?

Jul 7, 2010

I have a movie that uses external images loaded in with xml;

Q: Is there an easy way to change from xml to embedded images?

(I need a self contained swf in the end to email - I don't want to have to send along the directory of images, xml file and png's)[code]...

View 3 Replies

ActionScript 3.0 :: Way To Play Standalone Swf

Jul 23, 2010

I have multiple swf connected to main file. i want to send a client only one main swf. with out other swf the main file doesnt play those contents in the main.

View 4 Replies

CS3 :: Finding A Standalone Flash Player?

Apr 2, 2009

What should I use to test my swf movies on another (not my development machine) ?When I open them with IE or firefox the Flash active x player doesnt have the zoom 100% option so I end up with distorted (resized to window) swf is there a standalone flash player for that kind of purposes or something?

View 1 Replies

ActionScript 3.0 :: URLRequestHeader Standalone Application

Jun 8, 2010

I am having an issue trying to set http headers when trying to access a web service.
 
I have read that I need a crossdomain.xml on the server, but is this only when the application is running in a browser - i.e. hosted somewhere.
 
My scenarion is that I am developing an app to run as a stand alone application (not in the browser) for a 3rd party device.  This device does not support the flex mx packages.
 
The app calls a webservice and displays data.  The webservice requires to be authenticated.
 
In JS i can use an XMLHTTPRequest and load the url using "https://username:password@server.com/service.asmxpassword@server.com/service.asmx" - attempting to do this in AS 3 using a URLRequest and URLLoader I get "#2044: Unhandled ioError:. text=Error #2032: Stream Error".
 
So I try to add a HTTP header instead, but this appears to be ignored - the credentials of the user who is currently logged into the network (idsid) is used instead.
 
Do i need a crossdomain.xml file on the server hosting the webservice even though my flash application will never be hosted.  The server admin is not happy allowing all domains ("*") since I dont knwo what domain I am in as my flash app is not hosted.
 
Any help you can give me would be greatly appriciated.  or perhaps there is an alternative way of doing this?
 
<code>
var urlRequest:URLRequest = new URLRequest("https://server/service.asmx");
urlRequest.method = URLRequestMethod.POST;
urlRequest.contentType = "text/xml";
 
urlRequest.requestHeaders.push(new URLRequestHeader("Content-type", "text/xml"));
urlRequest.requestHeaders.push(new URLRequestHeader("Authorization", "Basic " + escape(usr) + ":" + escape(pwd)));
urlRequest.data = getSoapData();
 
 
var urlLoaderService:URLLoader = new URLLoader();
urlLoaderService.dataFormat = URLLoaderDataFormat.TEXT;
urlLoaderService.addEventListener(Event.COMPLETE, onServiceLoaded);.....

View 2 Replies

Php :: Mysql Standalone Deployment Package?

Jul 13, 2011

im not new to PHP and Mysql, but i have working on it in Web apps for the past few yearsI am starting a new project, and it has the following:1.the project itself will be built on Adobe Air (Flash) environments //as per clients's request2.there is going to be a custom dictionary (in php), tht is linked to the Flash program su ch tht when a user clicks the word in flash the dictionary should open and land on the word means etc.

View 1 Replies

IDE :: Update Standalone Flash Player

Dec 14, 2010

I have made a swf file that requires Flash Player 10.1 to play back properly. I have successfully updated to Flash Player 10.1 in my browsers, and if I open this swf file in a browser it functions correctly.

However, I want to be able to play it back in the standalone Flash Player that came with Flash CS4 Professional, and it was not updated from 10.0 to 10.1 when I updated to 10.1 for my browsers. How can I update this software to a newer version?

View 2 Replies

Start A Standalone Swf File In Fullscreen Mode?

Mar 5, 2003

This probably is a stupid question but does anyone know how I can start a standalone swf file in fullscreen mode.I want it to cover the whole screen when it starts.

View 3 Replies

ActionScript 2.0 :: Upload Image Within Standalone Player?

Jan 12, 2010

I'm (slowly) creating a product configurator application and want to add in a mini application which can determine branding on a product (baseball caps).

What Im looking to be able to do is for the customer to be able to upload their own logo - and it be displayed within the application - which they can then print off and send to us as an order form for pricing etc.

Normally this would be fine - as I could load the image onto a server - however this application is going to be distributed via CD (part of a Product Launch Kit) and so will be completely standalone.

Is there any way that this can be achieved? I imagine that I wouldnt be able to get the application to save the image to a temp folder on the customers computer - but is there any other way?

View 5 Replies

Professional :: Creating A Standalone Flash Application?

Sep 29, 2010

I'm creating a standalone flash application. Now, I have a user interface with a menu, and I have to launch a new stage in fullscreen mode with at the center an 800x600 swf.How can I create the fullscreen?

View 3 Replies

Professional :: Standalone App (AIR) For Playing Local FLV Files?

Apr 29, 2011

Can someone point me to a desktop app (Windows and Mac) that can play local FLV files?

View 4 Replies

Professional :: ExternalInterface.available Returns True In Standalone?

May 12, 2011

I try, in standalone test environment it always returns true - it should return false -

View 3 Replies

Professional :: Upgrade To Standalone And Debugger FP11?

Nov 1, 2011

Why is there no 'update' available to take the Flash Pro standalone and debuggers to FP11? There don't seem to be any Adobe authored instructions on doing it manually and I can't find an update. Have just upgraded from Flash Pro CS5 to CS5.5 on WIndows, it's telling me my product is now up-to-date, but the installed players are still on 10.

View 13 Replies

Flex :: Set Window Size For Standalone Application?

Aug 1, 2009

I want to set the default window size for a flex application that runs with a standalone player.I set width and height to 100% to be able to get the ResizeEvent and being able to adjust the layout if the user changes the window size. But I'd like to also define a default size.

View 3 Replies

Flex :: Restart A Standalone Adobe Air Application

Nov 30, 2009

How can I get a standalone Adobe Air/Flex application to restart itself? It doesn't work with the suggested solution on: UL...

View 2 Replies

Flex :: Excel - Standalone Application With No Database?

Jun 24, 2010

I am trying to develop an application which can be used locally by my team mates. its a sort of issue tracking application with report generation. am planning to do it on flex. in my company environment, i do have a lots of restrictions like, can't install AIR, no database, etc.

so am planning to develop on flex app, and put it in a shared drive. now the main problem is how can i store data. i have an idea like using excel files as database. I want opinion about this option, as well as, if anyone has tried reading and writing excel files from Flex application I want the suggestions also.

View 2 Replies

Pass Flashvars To Standalone Flash Player?

Oct 31, 2010

Is it possible to pass flashvars to standalone flash player via the commandline? Among other reasons, I want to run some unit tests from the command line.

View 2 Replies

Actionscript 3 :: Maintain 1 Codebase For SWF That Is Sometimes Standalone - Sometimes Module

Aug 15, 2011

I have an app that has been a standalone app 'til now; however, in another app it's going to be a wee little module. Is it possible to somehow maintain 1 codebase when the standalone has a source tag of:

[Code]....

View 1 Replies

Actionscript 3 :: Determine If Swf Is Played Standalone Or Loaded In Other Swf?

Mar 18, 2012

I have two swf's. One "show" of some sort, and one "menu" that acts as a loader for "shows". The "show" swf can run in its own respect, or by being loaded via the "menu".

Is there a way to determine, if the "show" is run stand-alone or as loaded into the "menu"?

One solution is to have the "menu's" Loader object set a variable on the loaded "show", like myLoader.content.thisIsFromMenu = true; and then checking in the "show", if such a variable exists and is true. BUT I was wondering, if there is any more generic way, that would not require for the "show" to know anything about the "menu" to determine, if it is loaded into a swf or played by itself?

View 2 Replies

ActionScript 3.0 :: Check If A Swf Is Standalone Or Loaded By A Container Swf?

Sep 16, 2009

I need a fairly foolproof way to check from a child swf whether it is loaded into a container swf through a loader object or if it is just loaded through html. I would like to do this without requiring a flashvar or any kind of function call from the parent swf that may be there. Any quick and simple solutions? I looked for something with loaderinfo but came up empty.

View 4 Replies

ActionScript 2.0 :: Sending Email With Standalone Project

Apr 29, 2005

Creating a Multi Platform standalone CDROM, I'm desperately trying to, when user is connected to the web, let him send me an email by clicking on a button. This button uses the AS getURL("mailto...) and opens the default mail program. (a mail page with email address, subject...) But this AS only works with swf nested in html page. (you can check it out!) In my case (standalone projection with exe and hqx), this script will not work.

View 2 Replies

ActionScript 3.0 :: Works Fine As A Standalone SWF But When Preloaded?

Mar 13, 2009

I have a SWF file, and it accesses an XML file. It works just fine when debugged or published into a standalone SWF. HOWEVER, when I add a preloader to it, I get the following error, every single time:

TypeError: Error #1009: Cannot access a property or method of a null object reference.

It works just fine when running on it's own, but when it runs through a preloader, it will not work.

View 1 Replies

Flash :: IDE - Linux Standalone Player Flicker

May 11, 2009

I have a problem with the standalone Linux Flash player. The thing is that when I have a video playing in background and over it I make some tweens, it flickers all the time and it is an annoying flicker. It happens only on Linux Flash Player (it works on Windows Flash Player). The flicker appears when I have a video on background, only when the tween is made and on the portion of the screen where the tween is made. I have Ubuntu 9.04 installed and the latest version of standalone Flash Player (from 2/24/09). I've tried this on several LCD and on all it does the same. My video card has the Intel G31 Express Chipset (the drivers for the video card are the one from Ubuntu).

View 1 Replies

ActionScript 3.0 :: Export Movieclip Dynamically As Standalone Swf?

Mar 26, 2012

Im having one movieclip and some slider to change width & height of that movieclip...
 
In runtime. i ll customize my movieclip by my slider.After that i want that movieclip alone as new swf..
 
means ,i want to export my movieclip as new swf at runtime..

View 1 Replies

ActionScript 3.0 :: Linux Standalone Flash Player Flicker

May 11, 2009

I have a problem with the standalone Linux Flash player. The thing is that when I have a video playing in background and over it I make some tweens, it flickers all the time and it is an annoying flicker. It happens only on Linux Flash Player (it works on Windows Flash Player). The flicker appears when I have a video on background, only when the tween is made and on the portion of the screen where the tween is made. I have Ubuntu 9.04 installed and the latest version of standalone Flash Player (from 2/24/09). I've tried this on several LCD and on all it does the same. My video card has the Intel G31 Express Chipset (the drivers for the video card are the one from Ubuntu).

View 2 Replies

ActionScript 3.0 :: Full Screen In Flash Standalone Not Working?

Aug 10, 2009

fscommand ("allowscale","false");
fscommand ("fullscreen","true");

Everywhere it says I should use this to make fullscreen in flash

I tried everything, I even copied the damn tutorial from adobe page of fscommand, still not going fullscreen at all, no errors.

View 4 Replies

ActionScript 3.0 :: Standalone Language Reference Display Not Working?

Oct 24, 2011

I am unable to view the majority of the downloadable standalone ActionScript 3.0 Language Reference.To replicate:

1) Download the file from [URL] ndalone.zip.

2) Expand the zip, open the resulting folder and open the index.html document in your web browser.

3) Pick any filter link you desire from the choices on this page. Notice that the package and class filters in the header continuously display "Retrieving Data from Server..."

4) Click on the Classes link in the header at the top.
 
Result: The class list displays only momentarily, then completely hides.
 
It would be great if there was a way to completely circumvent the filters. There appear to be several missing linked elements in the download, such as en_US/shared/ahpods/AHPod.js.

View 2 Replies

ActionScript 3 :: Open URL In Browser On Standalone Flash Projector?

Jun 23, 2010

var request:URLRequest = new URLRequest("[URL]");
navigateToURL(request, "_blank");
This works fine on web based swfs, it fails on flash player.

View 1 Replies

Swf - Custom Standalone Executable That Allows To Run Flash Content From Desktop

Aug 25, 2011

I want to create a custom executable which is similar to the Flash Projector to play swf content. The use case for this is the following: I have Ui components on the swf which exchange messages with my c++ cli executable for sending and receiving events.

View 1 Replies







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