Running Flash On A Web Server

Mar 5, 2011

I work on a lot of digital media projects; which often require dynamic graphics. I find flash to be a great tool for this purpose. It's very easily to dynamically change text inside a swf, compensate for text overflow and apply lots of nice filters and effects. Not to mention font embedding. This technique works great for web pages, however quite often we want to use flash generated artwork in a html email. How can we do this? Well, we can use as3corelib to generate a jpg from a swf, and then use the generated image in an email.This is fine, so long as we can pre-generate all of the images, before sending out the emails. But say we need to generate the dynamic jpeg on the fly from a webpage? If the user on the webpage has flash installed we could configure a swf to generate the image for us.But what if the user has flash disabled? Maybe they are using an ios device or simply don't like flash. What I would like to do is set up a server side fallback that could run a swf, replace text in the swf based on supplied variables, generate a jpg using as3corelib and save the jpeg somewhere. The trick here is running flash player on the server. It would also need to run in a multithreaded way in case the server needed to process multiple requests.

View 4 Replies


Similar Posts:


ActionScript 3.0 :: Running Flash As A Server Application?

Feb 18, 2010

We're interested in putting one of our flash applications on the server back-end so that it can run as a module on the server machine (not on the client!). I know flash wasnt designed for this at all, so my question is:

1) Can I run Flash from the command prompt and pass parameters to it?

2) Can I detect when the Flash has finished running, or a way to communicate with the command prompt from Flash (to inform it once the operations has finished).

3) Can I close the flash application from the command prompt?

View 9 Replies

Json :: Flash - No Feed When Running On DoubleClick Server?

Feb 23, 2012

I have a Flash Ad which makes use of a JSON feed. The Flash file is hosted within oubleClick Studio.The call works perfectly locally but when I upload it to DC Studio the load Event.COMPLETE does not file neither do any IOErrors which is leaving me with no feed and no errors!I have tried making use of the StudioLoader which is supplied by DC which returns that the file is an unrecognised format. Would it be that DC just wont read JSON at all?

request.url = "myJSONFeed.json";
loader.load(request);
loader.addEventListener(Event.COMPLETE, decodeJSON);

[code]......

View 1 Replies

Flash :: Connect Application To Nodejs Server Running Socket.io

May 9, 2011

i'm trying to connect my flash application to my nodejs server running socket.io. To connect via web-browser is no problem. Now the problem, when the socket-server isn't running i get an IOError in Flash what seams alright. Now when i start the server and try to connect again, i don't get an error, but the socket-server doesn't receive a connection either?!

View 1 Replies

ActionScript 2.0 :: Flash Security - Running Php Scripts From A Different Server To Access A DB

Sep 11, 2007

I guess this is more a question about PHP and MYSQL, but since Im using flash as the interface, I wanted to know if anyone knew this. Is it possible for someone to basically trigger one of my php documents that inserts variables to the Database through an swf ran outside my server? I know for example flash has a security feature built in to prevent flash from loading xml files from server to server. If anyone knows more about flash security issues and tips let me know

View 3 Replies

Media Server :: Cannot Connect To Admin Console FMS 3.5 Running Separate Apache Server

Jul 7, 2009

I have installed the FMS 3.5 Server on a separate IP from our main Apache Server: The server is running Redhat Linux 2.6.18-128.1.10.el5
 
FMS 3.5 running on ***.***.**.138 using ports 1935, 8080 (Admin Server using port 1111)
Apache 2 running on ***.***.**.139 using port 80, 443. (several sites setup on this IP)
 
However, when accessing the fms_adminConsole.htm in the root directory of one of the domains on ***.***.**.139, all login attempts fail. I am connecting to localhost and using the assigned user and password set up in fms.ini. Using either IP fails as well. The FMS server is set up to listen to all hosts as no specific IPs were set.
 
/var/log/messages show that FMS and the Admin Server are up an running and listening:
Jul  7 12:15:37 228215-web1 Service[28196]: Server starting...
Jul  7 12:15:37 228215-web1 Service[28196]: Server started (/opt/adobe/fms/conf/Server.xml).

[Code]....

All other settings for FMS are default. This is my first time setting up FMS as a fresh install on a new unknown server and I am at a loss as to what settings to check or which files I may need to modify to get it to connect properly. It is a managed server is hosted by rackspace.com if that makes any difference.

View 5 Replies

Media Server :: Deploy Video Using FMS / Apache / IIS Server Running On Win XP Pro?

Sep 28, 2009

Right now I do not have "server". Example: I do not have anything like windows sever 2000, 2003 etc. but I have and running IIS server on the same Windows XP Pro. On this very same machine I installed FMS server with the Apache that came with the FMS. I have read and followed the instructions time and time again in deferent ways to deploy my video on the server but no idea I used is working so my clients could view my videos. Looking forward to have site like "hulu" / "You Tube".

View 1 Replies

Media Server :: Have Multiple FMS Installation Running On 1 Linux Server?

Jan 19, 2011

Is it possible to have multiple FMS installation running on 1 linux server?This mean that each fmsadmin, fmsmaster, fmsedge, fmscore will run under a specific user. (not vhosts of a single FMS install)How will this impact the performance of the other FMS instances in case there are more of them running on the same server?

View 2 Replies

ActionScript 3.0 :: Flash - Send A String (or Number) From A Website To A Server Running A C++ Program

Jun 17, 2010

I have found little to no flash to C++ documentation, let alone Flash to C++ over the internet. What I want to do: -Have flash send a string (or number) from a website to a server running a C++ program -The C++ program will receive the data and do something with it -After that, the C++ program would send back a response -Flash would then accept the response My goal is to make a simple MMO, but I can't start it without a server program to handle the players. I don't need a super-complicated example, just something simple, kinda secure and coded in AS3 and C++.

View 0 Replies

Prevent Swf Running Out Off Of Server

Dec 22, 2009

I searched everywhere for a peice of code to prevent a web page from loading when it is not on a server.Finally found this one and I swear it was working last night.Am I placing the function in the wrong place?I have everything in 2 framesif the flash swf is currently running on the propper server it should skip to frame 2 and if it is running on a computer or the wrong server it should stay at frame 1.[code]

View 5 Replies

Php :: Flex (with Zend) Running On A IIS-Server?

Feb 8, 2011

I have a Flex-Page which connects to a MySQL-DB through PHP (Zend). I run the Flex-Page on an IIS-Server (Windows Server 2008 R2) and it works. But the problem is, that i specified the web root to the C:inetpubwwwroot directory (there php is running). On the server i want it on another directory.(Now i have the main Flex Page in the directory für the webserver, and the php files are in the wwwroot directory).

When i specify the web root to an other directory, nothing works, not even on my local machine.

View 1 Replies

ActionScript 3.0 :: URLLoader Not Same Running On Server

Jun 12, 2010

I am sending byte array data to php through a urlloader. Everything works fine when I run it locally on my computer. If I try to run it off my server,nothing gets sent to php, my Event.COMPLETE listener never fires.I have tried both absolute urls and relative urls, that didn't make a difference[code]

View 1 Replies

Media Server :: Installing Key In Running Dev Setup

Jan 10, 2011

I have been testing a project with no license key(Dev) and last week I purchased a Flash Streaming license but I go into the fms.ini and insert the key and restart FMS but my streams no longer work and the only error I seem to be getting is: Found Connection Penalty (RTMFP) on core launch, penalty active since time 1294334608.351221 I remove the key and restart the service and everything works fine.

I even tried reinstalling FMS and provide it the key when it asked in the installer but same issue. Is this error related to an issue with the licensing key? There is no error when I remove the key but can't get support through contacting Adobe by phone. I asked what is the proper way to install the key and they said they would open a ticket and contact me back but its been 2 days not including the weekend, I thought it would be a very simple question for the FMS dept that I was speaking with.

View 5 Replies

Media Server :: Detect If A Live Stream Is Running?

Jan 21, 2009

With the Flash Media Streaming Server (not the interactive version), is it possible to detect if a live stream is running? I want to show an overview of several live streams on one page. The ones that are not running should show as "offline". The others should show an online thumbnail. I don't want the visitors to have to go to all of the pages only to see that the stream is offline.

View 2 Replies

Media Server :: Running FMS 3.5.3 On Amazon EC2 (Windows 2008)

Feb 8, 2010

Does anyone know of any issues with running FMS on Amazon's EC2 Cloud environment? We're running some live streaming applications, but are hearing reports from users of random disconnects.

View 1 Replies

Media Server :: Running A Live Stream From An XML Playlist

Mar 25, 2010

I have just successfully installed Adobe FMS on my server. I would now like to know how to program a script to run a continuous live stream, of MP4 videos, from an XML playlist.

View 20 Replies

Media Server :: Running Multiple IP Multicast Sessions

Apr 5, 2011

am setting up multiple multicast sessions, i generated configurations for each session using a seperate stream name, IP address, port.

1) Is it possible to run multiple multicast session.From configuration, looks like we can, but need confirmation
2) How can i test these sessions using the default player ? or any sample player

View 1 Replies

Flex Client App Connect To BlazeDS Running On A Different Server?

Feb 9, 2010

As far as In understand the Flex technology, a Flex client connects to a Flex server to retrieve business information. Is this the only allowed connection for the client, back to the originating server? Or can a Flex client also open a secondary connection to a different server wich runs BlazeDS for message exchange?(This might offer an option for load balancing and cross-platform development).

Update: I have found this page which links to the Cross-domain policy file specification:[URL]..

View 2 Replies

ActionScript 2.0 :: Cannot Load File Contain When Running On Real Server

Feb 15, 2012

I have used LoadVars to load a srt file and manipulate its content successfully on my desktop computer. But when I post it on a real server, it can't be used.Here is my code. It seems that LoadVars cannot read an external file on real server or function parseCSV(raw) cannot work on real server.By the way, real server there I mean that this flash running on website [URL]

Code:
//Display subtitle
function loadSubtitle(subtitlePath){
startTimes1 = new Array();

[code]....

View 1 Replies

Media Server :: Audio Distortion - Running FMS 4.5 On A Linux System With 4GB Of RAM?

Jan 3, 2012

I'm running FMS 4.5 on a Linux system with 4GB of RAM.Whenever I do a live broadcast from the server, the audio does a very strange thing. It sounds, ever so slightly, like an old record player where someone is occasionally (4-5 times a minute) putting a small amount of pressure on the speed of the record player and altering the pitch of the music. All my buffer settings are the default settings. It happens whether I'm doing CD quality audio or dialup 11025 kbps audio. I'm using MP3 for an audio format.

View 2 Replies

Media Server :: Running With Multiple Smaller Mp4 Files About 50 MB In Size?

Feb 22, 2012

I have a question regarding httpstreaming we have fms running with multiple smaller mp4 files about 50 MB in size. When played they start playing immediatly but still are cached/downloaded in directory C:Documents and SettingsUsernameLocal SettingsTemp of the clients
 
Now we have issues with a large file of 890 MB, which is not being played, clients need to download this complete file to play it. Does the streamingpart doesn't work well on our server?
 
Please help since we getting a lot of complaints from viewers. Running FMS 4.0.3 on CENTOS 5.7 64 Bit
 
What can i check besides the forums regarding dynamic httpstreaming

View 2 Replies

Java - Connecting Non-flex Client To Server Running BlazeDS?

Aug 27, 2010

I have Flex/AIR app that connects to a tomcat server via BlazeDS. I'm not finding that I have to integrate an old webapp (struts/jsp) and I'd like to keep that webapp untouched except for login, authentication and session handling. Also a 3rd java app that uses httpclient.

Currently I have some blazeDS remote objects to handle login/logout with a few RPC calls. In turn, FlexSession objects are created and handled. Is there a way to use httpclient and javascript to call those blazeds RPCs so I dont have to recode and have 3 different means to handle logins and sessions?

View 1 Replies

Media Server :: Core Process Restart/re-cycle Have An Impact On Fso/flv Of Running Session?

Apr 21, 2010

I came across a very strange issue. There was a session in which no fso has been recorded. It was a session of around 110min with more then 10 users as per the logs. Flv have been recorded for the session and I can see the chat text file which has been written from server side script but no fso has been recorded for the whole session. While cross checking the logs access log and Master log i saw that the last message recorded on that particular session was around 14:47 and in master log i see following lines:

2010-04-18 14:52:56 52768 (i)2581223 Core (56012) is no longer active. -2010-04-18 14:52:56 52768 (w)2581256 Core (56012) _defaultRoot_:_defaultVHost_:::_0 experienced 1 failure[s]! 56012 is the core process on which this session was running. So is it somehow related? I mean no fso being recorded on server with core recycling? In access log these are the last 2 messages on this core:disconnect session 2010-04-18 14:52:20 Central Daylight Time 186.24.19.5 56012connect session 2010-04-18 14:52:46 Central Daylight Time 186.24.19.5 56012 FMS server version is:FMS is 3.0.2Windows server 2003.

View 4 Replies

Flex :: HTTPService.disconnect() - No Tcp Connection Drops And Script Keeps On Running On Server Side

Mar 20, 2012

I got a mxml file that launch a script on my http server through a HTTPService.send() call. Since the script on the server side takes a LOOOONG time (it could take even more than a hour) i would like to drop the connection between my air application and server when a button is clicked. Don't know why but calling HTTPService.disconnect() is totally useless... No tcp connection drops and script keeps on running on server side. No HTTPService.cancel() nor set HTTPService var to null worked.

View 1 Replies

Professional :: Exe Projector Running Slow While Swf Running Fine?

Mar 19, 2012

I have a strange problem. When I run an exe projector that I exported from flash cs5.5, and on few of my client's computers it running very slow in full screen.When I running an swf file (not exe projector), also in full screen, it running well!I checked my clients computer hardware, and it match the system requirements of flash player.

View 3 Replies

IDE :: Site Is Running Inside The Dreamweaver But When I Publish, It Is Not Running?

May 11, 2009

I have a problem in Flash Site uploading.That is, i have created a flash site & in the dreamweaver i inserted the flash site as insert -> media -> Shockwave.The site is running inside the dreamweaver but when i publish it, flashsite is not running.

View 2 Replies

ActionScript 3.0 :: Let My Local Running Swf-file Access A Xml-file That Is On A Server?

Mar 9, 2011

How to let my local running swf-file access a xml-file that is on a server?

I have been to the "Global Security Settings panel" but dont really understand.

View 2 Replies

Flash :: Check When SWF Is Running As An AIR App?

Apr 8, 2010

I'm wondering if there is a way for a SWF to check at runtime whether it is running as an online SWF or an AIR app? I need to use the same SWF to run both online and locally, however when running as an AIR app, external assets are located in a different directory. I'd like to check whether a SWF is local or online so I can change the source path for external assets accordingly.

View 1 Replies

Flash :: AS3 Is Not Running My PHP Script

Aug 10, 2010

So I am writing this action script program that will call a php file which will return the filenames inside a folder.[code]...

but I only got my php source code displayed as an output. Can someone explain to me how I can get the output of my php to display in flash.

View 2 Replies

Flash :: Get Bonjour Running In As3 In It?

Mar 18, 2011

Is it possible to get bonjour running in as3 in flash?

View 2 Replies







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