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


Similar Posts:


Possible To Get Computer Name Where Flash Program Is Running?

Jun 19, 2009

Is it possible to get computer name where the flash program is running? Not on the website, the swf will be run directly on the PC.

View 2 Replies

Actionscript :: Connection From Program To The Server Using XAMPP Server And Program In Flex?

Oct 26, 2010

i have the following code ]

[Code]...

but no connection established what is the reason behind not know help required and one more thing XAMPP is installed in D: drive.

View 1 Replies

Flash :: Professional - CS4 Running Slow - Computer Or The Program?

Jun 21, 2010

Ever since I installed Flash CS4 on my computer, it runs fine for a while before becoming really slow to respond and a pain to use, so I have gone back to using Flash 8 which runs fine. Is this a problem with my computer or the program?

View 3 Replies

ActionScript 1/2 :: Possible To Determine If A Program Is Installed On The PC Running The Flash?

May 2, 2011

I use Flash to develop a movie that runs when a user installs a new version of my companies software, and allows the user to access the user documentation and software installations at the click of a button.  I use ActionScript to control the flow of the movie based on radio buttons that the user selects so that they are only provided with information relevant to them.I have been asked if Flash can determine whether a program is installed on the user's computer which can then be used to determine the flow of the movie.

View 1 Replies

ActionScript 1/2 :: Determine If A Program Is Installed On The PC Running The Flash?

Jun 25, 2009

I use Flash to develop a movie that runs when a user installs a new version of my companies software, and allows the user to access the user documentation and software installations at the click of a button.  I use ActionScript to control the flow of the movie based on radio buttons that the user selects so that they are only provided with information relevant to them.
 
I have been asked if Flash can determine whether a program is installed on the user's computer which can then be used to determine the flow of the movie.

View 2 Replies

Media Server :: Send The String Value From .asc File?

Sep 29, 2009

I need to send the String value from .asc file to Flash AS3 in Application.rejectConnection();

[Code]...

View 2 Replies

ActionScript 3.0 :: Disable A Computer's Screensaver When A Flash Program Is Running?

Mar 27, 2009

Is there any way to disable a computer's screensaver when a flash program is running?
It's for a program that I run locally (converted .swf to .exe).

The program is also used on other computers so changing stuff in the registry or something like that isn't really what I'm looking for.

I tryed changing mouseX but it's read-only..

View 2 Replies

What Program To Use For Editing A Flash Website

Feb 22, 2010

I had posted a similar query earlier but didn't get a satisfactory reply. I need to edit a flash website (only the text needs to be changed). Which software program should I use ? It is required to convert every text on the site (links or no links) to be converted from language A to language B.

View 1 Replies

C# :: Send Keys To A Flash Movie Running In The Browser?

Jan 30, 2012

I tried setting the browser as active windows and using SendKeys but it does not work. Is there an alternative ?

View 1 Replies

ActionScript 3.0 :: Possible To Open A Program In Flash Website Which Is Created In Visual Baisc 6?

Apr 9, 2012

I have a small program developed in Visual Basi 6 and would like other users to access it through my Flash Website. Is it possible to do so. It is a database program that retrieves data from MS Access database which is used as backend.

View 1 Replies

Flex :: Get Dimensions Of A Running Instance Of A Program In AIR?

May 20, 2011

Determine, whether a defined program is running (for example firefox.exe) If its running, then get the current dimensions of its window - i want to make a screenshot of the window, so i'd need other parameters too i guess: Is it minimized? is it behind some other window?

Is this possible to accomplish in AIR? Im using the latest version (2.6)

View 1 Replies

ActionScript 3.0 :: Change The Name Of The Variables While The Program Is Running?

Oct 19, 2010

I have this code:

ActionScript Code:
for (var j:int = 0; j < 20; j++){
if (values==j){
var "ingredient"+j:"Ingredient"+j = new "Ingredient"+j();

[Code].....

it doesn't work for what are probably obvious reasons but I show it to give you an idea of what I'm trying to do which is change the name of the variables while the program is running.

View 6 Replies

ActionScript 3.0 :: Flash Running Function From A String?

May 25, 2010

If I have the name of the function I want to run in a string called function_name and the params I want to pass to the function in another string called function_params, how would I could this to go in a button with the following code:

mc.button1.addEventListener(MouseEvent.MOUSE_DOWN, button1_handler);
function button1_handler(Event:MouseEvent):void {
// Dont know what to put here

[code].....

View 1 Replies

Flex :: Running A Java Program With A .dll From Adobe AIR's Native Process

Jun 18, 2010

I would like to be able to operate a scanner from my AIR application. Since there's no support for this natively, I'm trying to use the NativeProcess class to start a jar file that can run the scanner. The Java code is using the JTwain library to operate the scanner. The Java application runs fine by itself, and the AIR application can start and communicate with the Java application. The problem seems to be that any time I attempt to use a function from JTwain (which relies on the JTwain.dll), the application dies IF AIR STARTED IT.[code]

View 2 Replies

Actionscript 3 :: Server Library API To Send Request To Server From Flash

Jul 22, 2011

I want to write application for facebook and vkontakte, which will consist of such main blocks as: SocialNetworkAPI (which include all work dedicated to social networks: posting to wall, get all user's info) and ServerAPI (which will send HTTP POST requests to my Java based server and receive data from there in JSON).

I am looking now to Adobe flash URLLoader

is there any good ServerAPI libraries, which I can use or rework to prevent rewriting standart code lines.

View 2 Replies

Professional :: Create A Flash Program That Uses It's Own Code To Send And Create Images?

Sep 29, 2010

I'm trying to create a flash program that uses it's own code to send and create images. Each square has a colour and that colour gets added into the array. A black, then grey, then white is:

filecode = ["Bl", "Gr", "Wh"];

That works fine, but when I try to paste it into an Input text box it will only fill in the first part of the array.

filecode = ["Bl,Gr,Wh"];

So the program has NO idea what I want.The only ways I can think of fixing this is by putting in 402 text boxes to suit every box...But every one of them needs a Variable Name.Or by sending the information straight into the array. But this way you are just looking at what you just drew, and that is not at ALL practical.

View 3 Replies

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

ActionScript 3.0 :: Program Installed On A Game Server That Outputs The Server Information?

Sep 24, 2011

I only started coding Actionscript about two weeks ago and I really need help on this, I am seriously considering just coding an if statement for each value if I can't figure this out. Sorry if my code is terrible formatted, I am self taught using Adobe Help.This is what I need help on.I have a program installed on a game server (CoD4) that outputs the server information including player(s) info and would like to be able to make it so that there is a flash document on the website displaying the information for each player. I wanted the program to build the information automatically and so far I have been able to make it work but the formatting of the output is terrible.To make things simple, the only real information I need from each player is their name and guid. Hopefully each player's info is on a new line.This is the xml document the server is outputting:HTML Code:[URL]

Code:

import flash.net.URLRequest;
import flash.net.URLLoader;
import flash.events.*;

[code]....

View 4 Replies

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

Media Server :: Shareobject.send() - Send Method Does Not Work

Mar 18, 2010

I have a problem with shareobject. the Send method does not work. I work with AS3 My code

[Code]....

View 4 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

IDE :: Editing A Already Up And Running Website?

Mar 14, 2009

editing my website a friend bult for me in flash..i have flash cs4 when i import to library all i seem to get are lots of symbols a few gifs and my video file , and the main swf ...trouble is seem to be unable to edit any of it .... i need to update a picture and add some text to it ..

just tought i would add... i downloaded the contents of my my website via dreamweaver to a folder on my drive then imported into flash

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

ActionScript 2.0 :: Convert A String Ending In A Number To A Number?

Oct 9, 2006

how can i convert a string ending in a number to a number? lets say i have a string such as somestring3 how can i convert that to a number 3?

View 7 Replies

Actionscript 3.0 :: Website Running Slowly

Feb 16, 2009

I've almost finished a website for a client, this is my first as3 project.

The website runs pretty slowly, As3 code should run 100 times faster then as2 code.[url]...

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







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