WITHOUT Server-side Scripting Like ASP/PHP
Can I use Flash 5 to open my MS Access database to gather users information ?
If not, how about simply gather in a text file ?
such as :- &lastname&firstname&age&....
I am going to count how many users play my flash game (remember not in the server)
FlashKit > Flash Help > Flash ActionScript
Posted on: 01-31-2004, 05:29 AM
View Complete Forum Thread with Replies
Sponsored Links:
Does Anyone Here Know Anything About Server Side Scripting?
I've never received an answer here on server side scripting i really need a forum where people are exsperienced with both client and server side scripts can somebody give me a link and point me in the right direction....my current problem is i cannot trace and messages to the output panel using application.onAppStart=function(){ trace "this traced when the app started"}
View Replies !
View Related
Server-side Scripting
background:
running an asp.net webserver
hosted provider does not have flash remoting installed
what's the best way to send an XML document through flash? i've tried creating an vb.net webservice but trying to process the my xml within the xml got tricky for me. i've tried .send and .sendAndLoad, which works, but they both redirect or open new browser windows which is undesirable.
help?
-ty
View Replies !
View Related
Server Side Scripting Help(php) And Actionscript
I am relativly new to pHp, not so much to actionscript.
With that said, I need is some asistance in seting up a dynamic gallery for my portfolio section of my website. So any help would be most appreciated.
To better understand a quick overview of the actionscript and ultimate intentions is neseccary before getting to the root of the promblem.
actionscript:
Code:
//portfolio images
thumbs=[" ","face.jpg","poster.jpg","cards.jpg","4.jpg"]
m = 20 // relative displacement
r = 4 // number of objects per row
count=16 // amount of objects total
h = r+(r*.25)
for (i=1; i<=count; i++) {
if(i >=(r+1)){xCord = (m*(i-((h+(r*2))-i)))+(Stage.width/2)}
if(i<(r+1)){xCord = (m*(i-(h-i)))+(Stage.width/2)}
if(i>=(r*2+1)){xCord = (m*(i-((h+((r*2)*2))-i)))+(Stage.width/2)}
if(i>=(r*3+1)){xCord = (m*(i-(((h+((r*2)*2))+(r*2))-i)))+(Stage.width/2)}
if(i>=(r*4+1)){xCord = (m*(i-(((h+((r*2)*2))+((r*2)*2))-i)))+(Stage.width/2)}
if(i<(r+1)){yCord = (Stage.height/2)-140}
if(i>=(r+1)){yCord = (Stage.height/2) - 100}
if(i>=(r*2+1)){yCord = (Stage.height/2)-60}
if(i>=(r*3+1)){yCord = (Stage.height/2)-20}
if(i>=(r*4+1)){yCord = (Stage.height/2)+20}
if(i>=(r*5+1)){yCord = (Stage.height/2)+60}
if(i>=(r*6+1)){yCord = (Stage.height/2)+100}
if(i>=(r*7+1)){yCord = (Stage.height/2)+140}
mybox.duplicateMovieClip ("box"+i, i);
_root["box"+i].number=i;
_root["box"+i].gotoAndStop(i+1);
_root["box"+i]._x = xcord;
_root["box"+i]._y = ycord;
contain.duplicateMovieClip("gallery"+i, i+count);
_root["gallery"+i].loadMovie(thumbs[i]);
_root["gallery"+i]._x= ((Stage.width/2)-30);
_root["gallery"+i]._y= (Stage.height/2);
_root["gallery"+i]._xscale = 15;
_root["gallery"+i]._yscale = 15;
_root["gallery"+i]._alpha = 0;
}
for(var i=0;i<=count;i++){
_root.attachMovie("mybox", "box"+i, (i+(count+1)));
_root["box"+i].thei=i;
_root["box"+i].onRollOver=function(){
_root["gallery"+(this.thei)]._alpha = 100;
}
_root["box"+i].onRollOut=function(){
_root["gallery"+(this.thei)]._alpha = 0;
}
}
Basically this duplicates a a movieclip called mybox and sets them up on the stage.
Then It duplicates contain and sets up all the images on the stage with a transparentcy of 0.
Then when you rollover any given box the image which shows up is dependent on the i incerment or thei.
Non of that is really important though.. since, it all works.
Now I am hoping to bring to the next level.
This is more of less the concern with the actionscript:
Code:
//portfolio images
thumbs=[" ","face.jpg","poster.jpg","cards.jpg","4.jpg"]
I have it set up currently so that each image I add it works (no more modification is nessecary to the rest of the code... since it is all based on a proportionate variables.)
What I need now is a way To read a directory in which the images are in and output the names.
Then pull out those names in flash.
So Instead of needing to write anything more in actionscript I can just add images to that folder and everything works in flash.
this is the code I am looking to use as a foundation for the reading directory.
Code:
#!/usr/bin/perl
$dirtoget="/home/yourname/www/images/";
opendir(IMD, $dirtoget) || die("Cannot open directory");
@thefiles= readdir(IMD);
closedir(IMD);
print "Content-type: text/html
";
print "<HTML><BODY>";
foreach $f (@thefiles)
{
unless ( ($f eq ".") || ($f eq "..") )
{
print "$f<BR>";
}
}
print "</BODY></HTML>";
However, I have very minimal experience if any with php but, would highly like to have this run totally dynamically.
So any help would be most gratefull.
Especially from some pHp and actionscript gurus.
thanks
View Replies !
View Related
Sending Automatic E-mail, Server Side Scripting
hey,
I have made some simple forms. currently i have this code in the "send" button:
Code:
on (release) {
getURL("mailto:indiapavilion@yahoo.com");
}
But, does any1 know how i can make it so that when the user clicks the "send" button, then the information in the forms is automatically sent to a given e-mail address?
The code i have up above.....it only opens up the default e-mail application, which i don't need.
Baljinder
View Replies !
View Related
Flash READ What Files Exist Within A Directory ...Without USING SERVER SIDE SCRIPTING
Hi,
How can Flash read what files exists in a sub directory on my server without using server side scripting becasue this is going to be an online/offline product.
For example:
I need the Flash application to read what files are in a sub folder within the main folder where the swf sits on my server:
For example:
www.multimediaprogrammer.com/mainapp/pics/
Contains
1.jpg
2.jpg
I want Flash to tell me files 1.jpg and 2.jpg are in the pics folder?
MANY THANKS IN ADVANCE FOR THE HELP!!!!!
Debra
View Replies !
View Related
SSAS - Call A Client Side Function From Server Side
Hi all!
I have a problem...
I'm working with FMS and AS3, and i need to call a client side function from a 'server side action script' code and pass through a parameter to the client side function.
To specify the problem:
The application im trying to create is a video communication tool.
The user connects to the server, on the server side the application.onConnect() function runs.
The client gets an id on the server side and i have to pass this 'clientId' through to a client side function, (it needs the clientId parameter) which is sorting the streams.(like this function setStream(clientId){}) The 'clientId' is needed to identify the stream that is captured by the users camera.
Have to visualize 5 streams (5 user connects and sends streams) on each application instance, and i have to know which stream belongs to which user.
For example: I dont want to visualize John to his stream, instead of the other four streams.
I tried with client.call() but it didnt work.
Could anybody please help me, about how to pass variable data and call a client side function from the server side, or how to solve this problem?
Thx a lot!
Malk
View Replies !
View Related
Read Server Side File From Client Side
Hello all,
i m using Influxis server.I have used these lines of code to create text file at server side:->
var myFile = new File("log_file.txt");
if(myFile.exists) myFile.open("text", "append");
else myFile.open("text", "create");
myFile.writeln("Hello world!");
above code is working fine but i want to download this "log_file.txt" file at client side.How can i do this?
Plese help me on this issue
View Replies !
View Related
Read Server Side File From Clent Side
Hello all,
i m using Influxis server.I have used these lines of code to create text file at server side:->
var myFile = new File("log_file.txt");
if(myFile.exists) myFile.open("text", "append");
else myFile.open("text", "create");
myFile.writeln("Hello world!");
above code is working fine but i want to download this "log_file.txt" file at client side.How can i do this?
Plese help me on this issue
View Replies !
View Related
Read Server Side File From Clent Side
Hello all,
i m using Influxis server.I have used these lines of code to create text file at server side:->
var myFile = new File("log_file.txt");
if(myFile.exists) myFile.open("text", "append");
else myFile.open("text", "create");
myFile.writeln("Hello world!");
above code is working fine but i want to download this "log_file.txt" file at client side.How can i do this?
Plese help me on this issue
View Replies !
View Related
Read Server Side File From Clent Side
Hello all,
i m using Influxis server.I have used these lines of code to create text file at server side:->
var myFile = new File("log_file.txt");
if(myFile.exists) myFile.open("text", "append");
else myFile.open("text", "create");
myFile.writeln("Hello world!");
above code is working fine but i want to download this "log_file.txt" file at client side.How can i do this?
Plese help me on this issue
View Replies !
View Related
How To Load Images From Client Side When The Swf Is Hosted On A Server Without Uplaoding It To Server?
I'm trying to build a online image resize tool.
problem i face are:
1. I build a button that allow user to browse the file. Once file is selected, it doesnt show full path.
2. lets say if it shows fullpath, but i try to load it into a movieclip, and it doesnt work because the swf file is located at the server and not the client's place.
3. as far as i know, flash can only load images which is located in the same server or internet.
4. if i use php, asp, cgi.. it can only allow me to 1st upload the image then resize later, but this is not wat i want.
5. I need to 1st resize then upload later, because if i have 100 and more photos taken from digicam, it's going to be very slow and heavy.
What i have tested:
1. upload "image3.jpg" into the same directory as the "viewer.swf", and it works.
2. do not upload the swf to the server, but run locally from the user's computer and open "image3.jpg" and it works.
3. upload the swf to the server and open "image3.jpg" from the user's computer and IT DOESN"T WORK!
please help me out.
Thanks~!
Attach Code
//---------- Import -------------
import flash.display.BitmapData
import flash.net.FileReference;
//---------- objects -------------
var dlgOpen:FileReference = new FileReference();
var dlgOpen_Listener:Object = new Object();
//---------- _root.value -------------
//Value transfer from <object> or <Embedded> tag.
var strOutputFileField:String = _root.OutputFileField;
var iMaxPPI:Number = eval(_root.MaxPPI);
var iMaxWidth:Number = eval(_root.MaxWidth);
var iMaxKB:Number = eval(_root.MaxKB);
var bDebug:Boolean = eval(_root.bDebug);
lblNo.text = "Picture " + _root.PictureNo;
//---------- Variables -------------
//var bCropProcess_Flag:Boolean = false;
//var bIsValidFormat_Flag:Boolean = false;
//---------- Listener -------------
//dlgOpen_Listener
dlgOpen_Listener.onSelect = function(selectedFile:FileReference):Void
{
//Flag the crop process has been started
bCropProcess_Flag = true;
//update filename, cannot get full filename because flash don't allow
txtFilename.text = selectedFile.name;
//Create into a movie clip or a bitmapdata
_root.tmpBitmap.loadMovie(selectedFile.name);
CreateBitmap();
};
//---------- Functions-------------
//OpenImage
function OpenFileDialog(event:Object):Void
{
dlgOpen.browse([{description: "Image Files", extension: "*.jpg;*.gif;*.png;*.bmp;*.tif"}]);
//_root.tmpBitmap.loadMovie(txtFilename.text);
}
//Load Image into Bitmap Object
function CreateBitmap()
{
}
function sendData(pixels:Array, h:Number, w:Number){
//Create the LoadVars object and pass data to PHP script
var output:LoadVars = new LoadVars()
output.img = pixels.toString()
output.height = h
output.width = w
//The page (and this movie itself) should be in a server to work
output.send("jpeg.php", "output", "POST")
}
//---------- Others -------------
//Add Events and Listener
dlgOpen.addListener(dlgOpen_Listener);
btnBrowse.addEventListener("click", OpenFileDialog);
//Clean up and stop
stop();
Edited: 11/23/2007 at 07:34:09 PM by zerodevice
View Replies !
View Related
LoadVars With Server Side ActionScript (Flash Com Server)
I'm making a simple login application. I want to send a username/password while connecting to FCS, and have the SSAS of main.asc connect to a PHP document that will lookup the username/pass and make the necessary checks for the information in a mySQL database.
I'm trying to use the LoadVars() object, maybe you can't do this with SSAS? Or maybe i need to include some other actionscript file (I know when you use components you have to specify load("components.asc"); at the top of the main.asc file --- i'm hoping it's something that easy )
This is my first FCS app, I've done a lot of research but this one's sort of stumping me. I keep getting an error that looks like this:
/opt/macromedia/fcs/applications/my_app/main.asc: line 9: ReferenceError: LoadVars is not defined
Here is my code for main.asc:
ActionScript Code:
application.onAppStart = function(){ this.userCount = 0; this.users = [];}application.onConnect = function(thisClient, username, password){ thisClient.username = username; //authentication functions var my_lv:LoadVars = new LoadVars; //line 9 where error happens my_lv.load("http://10.10.1.200/_websites/quickconnect/verify.php?username="+escape(username)+"&password="+escape(password)); my_lv.onLoad = function(success){ if(success == true){ thisClient.username = my_lv.username; thisClient.email = my_lv.email; thisClient.firstname = my_lv.firstname; thisClient.lastname = my_lv.lastname; thisClient.usertype = my_lv.usertype; this.users[this.userCount] = thisClient; this.userCount++; } } //if login is okay //add user to users list this.acceptConnection(thisClient); }
View Replies !
View Related
LoadVars With Server Side ActionScript (Flash Com Server)
I'm making a simple login application. I want to send a username/password while connecting to FCS, and have the SSAS of main.asc connect to a PHP document that will lookup the username/pass and make the necessary checks for the information in a mySQL database.
I'm trying to use the LoadVars() object, maybe you can't do this with SSAS? Or maybe i need to include some other actionscript file (I know when you use components you have to specify load("components.asc"); at the top of the main.asc file --- i'm hoping it's something that easy )
This is my first FCS app, I've done a lot of research but this one's sort of stumping me. I keep getting an error that looks like this:
/opt/macromedia/fcs/applications/my_app/main.asc: line 9: ReferenceError: LoadVars is not defined
Here is my code for main.asc:
ActionScript Code:
application.onAppStart = function(){ this.userCount = 0; this.users = [];}application.onConnect = function(thisClient, username, password){ thisClient.username = username; //authentication functions var my_lv:LoadVars = new LoadVars; //line 9 where error happens my_lv.load("http://10.10.1.200/_websites/quickconnect/verify.php?username="+escape(username)+"&password="+escape(password)); my_lv.onLoad = function(success){ if(success == true){ thisClient.username = my_lv.username; thisClient.email = my_lv.email; thisClient.firstname = my_lv.firstname; thisClient.lastname = my_lv.lastname; thisClient.usertype = my_lv.usertype; this.users[this.userCount] = thisClient; this.userCount++; } } //if login is okay //add user to users list this.acceptConnection(thisClient); }
View Replies !
View Related
Flash Media Server, Does It Need Server Side?
Ive been importing my videos and selecting flash media server, which I thought was streaming. However its always worked fine and I dont understand what these extra files are that are needed on the server? Are my videos just converting to progressive video? Because I never knew they needed special files yet they have always worked or so it seems!
View Replies !
View Related
Server Side Avi/mov To Swf?
I have a program that my customers use to playback video's embedded into flash swf.
I am trying to find out how to host a serverside script that they can upload their avi or mov's too and it will convert it to embedded swf?
any hint is appreciated.
View Replies !
View Related
About Server Side XML
Hi there,
I am developing a game/chat server with c/c++ using socket.
The data sent by the flash are through the XML format with XMLSocket.
That's I am here to ask whether there is a lightweight XML parser library to parse the XML string in my server provided that it MUST NOT load a XML file from hard disk but handle the string read in the socket.
ANy idea?
Your helps are highly appreciated.
Thank you very much.
Pixelmana
View Replies !
View Related
Server-side SWF's
I'm currently specing out a project in which i'd like the facility to create audio swf's server-side then store them in a database.
My question is: Is it possible to import wav files into Flash MX server-side and output seperate swfs?
View Replies !
View Related
Jpg 2 Swf Server Side
Hi I know there are some programs out there that will convert jpg 2 swf serverside with some kind of cron job.
But what im looking for is:
- I have a camera that will upload a pic to the server every 15 min, so I would like to convert that jpg to a swf, but also to fill in a dynamic text field-(timestamp) (off the stage somewhere) of the time(date, day) that the conversion occured, so when I call the movie in i can display the time the picture was taken.
Thank you.
-G
View Replies !
View Related
XML Server-side?
Hi.
Hope I've hit the correct forum.
My question is, can server-side .asc files load and read XML files?
I got the process to do this in AS3, but naturally that's an .as file, not an .asc file.
The reason I am asking is that I want client-side to input and send login-details to server-side, server-side loads and reads XML file containing this data, matches it, and either accepts or rejects the connection.
Is there a way to make it read an XML file? Or do I have to write a standalone .as file as a manager for doing this? And if so, how do I make the server-side .asc file "include" this manager to make use of its XML-reading and processing functions?
Regards,
slhm1
View Replies !
View Related
Jpg 2 Swf Server Side
Hi I know there are some programs out there that will convert jpg 2 swf serverside with some kind of cron job.
But what im looking for is:
- I have a camera that will upload a pic to the server every 15 min, so I would like to convert that jpg to a swf, but also to fill in a dynamic text field-(timestamp) (off the stage somewhere) of the time(date, day) that the conversion occured, so when I call the movie in i can display the time the picture was taken.
Thank you.
-G
View Replies !
View Related
Server Side Actions
Hi guys,
I have not been here for a while so Hi to everyone, and it is good to be back.
I am currently working on something far more complicated than I can grasp. I have been reading books, and banging my head against the wall. Still I can find no answers.
This is the situation: I have a menu system that I am building for a backend web-aplication that is run by ColdFusion. This, of course, is run with a DB.
Depending on the type of user the menu items have to change. How can I get my swf to talk to the database and spit out the right info? If there are any ideas out there I would be more than greatful for them
Thanks in advance for you time!!
Cheers,
Nik
View Replies !
View Related
Server Side Bypass
I have an application that uses SharedObjects for a chat room, with video and audio. and a server side asc file. which actually creates the shared Objects. every thing works perfect, except I now want another swf file to access a variable in the SO with out creating another clientObject. like a counter telling how many people are in the chat room before you actually go into the chat room. I think you have to connect. with automatically kicks off the main.asc file er.... any suggestions on bypassing this>?
View Replies !
View Related
Server-side Spellcheck
Can anyone tell me if there are public domain english dictionaries and backend scripts to perform spellchecking?
ie. pass it a paragraph of text and it comes back with index numbers of those it cannot match.
or pass it a word, and it returns a list of closest matches.
Anyone?
View Replies !
View Related
Server Side SWF Slicing?
Hello All,
Maybe what im trying to do is far out on another planet but hey why not try. Does anyone know of a way to have a very large detailed SWF file on the server and with some type of script that selects the layers and the portion of the swf file that you want to send to the client?
Here is what i'm getting at, lets say you had a maze game, that lets say got more detailed the further you got you would want to have the ability to send only a slice that fits their screen and the detail level required for the area they are viewing.
I know this is VERY simple to do with PNG or JPG on the server with GD or anything else that could work with images. What i'm asking for here is a script compatible with PHP / Linux that would slice a SWF with vector graphics on it.
Regards,
Nick
View Replies !
View Related
Server Side Proxy
Howdy,
I have been dealing with a cross-domain policy issue with my flash form and my form host freedback.com. I found a servers side asp proxy script on Adobe.com :
http://kb.adobe.com/selfservice/view...6520&sliceId=1
I cant get it to work. I was wondering if the script is out of date with new Flash 9 security features.
My form loader gets a complete event and it looks like it goes through but it does not.
I got a php proxy script working on another server, but my work server is .net.
Here is the asp script:
Code:
<%@ LANGUAGE=VBScript%>
<%
Response.Buffer=True
Dim MyConnection, TheURL
' Specifying the URL
TheURL = "http://www.freedback.com/mail.php"
Set MyConnection = Server.CreateObject("Microsoft.XMLHTTP")
' Connecting to the URL
MyConnection.Open "Post", TheURL, False
' Sending and getting data
MyConnection.Send
TheData = MyConnection.responseText
'Set the appropriate content type
Response.ContentType = MyConnection.getResponseHeader("Content-Type")
Response.Write (TheData)
Set MyConnection = Nothing
%>
Thanks!
View Replies !
View Related
Displaying Server-side PHP.
Long story so I won't explain, but I need Flash to look at the source of a PHP page in the same directory on the server. The only problem is that the server parses the PHP so Flash doesn't look at it! I'm using Flash MX but I also have Flash 8 Pro if needed. Here's my code on the first (only) frame. It works client-side but not executed from the server (it parses first).
ActionScript Code:
loadText = new LoadVars();
loadText.onData = function(raw) { myField.text = raw };
loadText.load("index.php");
I believe one of those is undocumented, so it may not be recognized. It works fine running it on a local computer and for other files.
Here's the example I have right now: http://www.cindex.webhop.net/Test/index.swf to show the source on cindex.webhop.net/Test/index.php
Thanks
-Cindex
View Replies !
View Related
Server-side Playlist
My goal is to write an application which launches specific files from the server-side to all connected clients,
so I need to a play file, wait untill it stops playing and launches the next file.
The problem is if I do the following (in server-side AS):
someStream = Stream.get('broadcast')
someStream.play('file1')
someStream.play('file2')
FMS plays 'file2' immediately, not after 'file1' actually finishes it's playback.
Any solution?
View Replies !
View Related
FMS Server Side ASC Files
Hello there I am having some trouble understanding the use of the server side scripts on FMS.
What I am trying to do is make a very basic isometric multiplayer game where you kill some monsters that are on screen (mmo style)
My basic code flow is
1> when starting the application create a shared object to hold information on monsters
2> Allow the player to connect
Now here all of my problems start.
ActionScript Code:
application.onAppStart = function(){
trace("Application Started");
amountMonsters = 5
//this is the object used to hold the monsters
monsters = SharedObject.get("monsters", false)
//I am making it into an array because of course there is more than 1 monster
monsters.data.monsters = new Array();
for (i=0; i<amountMonsters; i++) {
//I am pushing a class called Poring.as to the array and sending it some info when it is created
var por = new Poring(i);
monsters.data.monsters.push(por);
}
players = SharedObject.get("playersOn",false)
players.data.playersOn = new Array()
};
The poring as file contains this
ActionScript Code:
class Poring{
var myNum:Number = 0
var intervalId:Number
var tileX:Number
var tileY:Number
var tileTarget:String
function Poring(poringNum){ // initial poring setUp
myNum = poringNum
tileX = random(2)+1
tileY = random(2)+1
tileTarget = "tile"+tileX+"-"+tileY
trace(tileTarget)
intervalId = setInterval(this, "moveMe", 6000);
}
function moveMe(){
tileX = random(2)+1
tileY = random(2)+1
tileTarget = "tile"+tileX+"-"+tileY
}
}
In the flash file I call the shared object using getRemote and just try to trace it with
ActionScript Code:
monsterObject = SharedObject.getRemote("monsters", netConn.uri, false);
monsterObject.connect(netConn);
monsterObject.onSync = function(list){
trace("monsterSync")
trace(monsterObject.data.monsters)
}
What traces is undefined =/
I am at a loss as to what to do here I am sure I must be either using the wrong syntax or doing things in the wrong order.
Any help is greatly appreciated,
Simon
View Replies !
View Related
Create A Swf Server Side
Hello:
I need to give users the ability to upload a logo in a format like EPS, TIFF, or JPG-and have some sort of ASP-based server side technology convert it to a SWF and save it. Does anyone have any suggestions?
View Replies !
View Related
Converting Avi/mpg To Flv On Server Side
Hi there guys.
I'm building an application where different users could upload their videos and see them playing instantly on MediaPlayback.
But how can I convert e.g. avi-files to flv on the server side?
I don't want to encourage my clients to download any other programs(wildform flix or Sorenson Squeeze) and then train them how to use them.
And it is definately not an option for them to buy Flash just in order to get their videos into flv format.
Is there any way, how you can upload an mpg/avi file to your server and automatically convert it to flv as it uploads or after the upload???
Or is this even possible to achieve?
Thanks in advance.
-Pekka Kinnunen
View Replies !
View Related
Local SWF Vs Server Side SWF And PHP
I am having the strangest problem... I have a form in Flash where I use the sendAndLoad () function to communicate with a PHP file, that then sends an email with the loaded data. The action works fine when I run the SWF from my Mac to the server side PHP file using an absolute address. But it doesn't work when the SWF is on the server, again running an absolute path to the PHP file.
Has anyone experienced this issue before? Is it a problem with security?
Thanks,
g
View Replies !
View Related
Encryption Server-side
is there any class for Flash media server to encrypt strings in server-side?.I need to send an encrypted string from server side to externalhost.
i found a Tea class for flash communication server 1.5 but id doesn´t work on FMS..it return undefined string..Tea class here
Sorry about my english.
Thanks
Edited: 01/04/2007 at 10:34:40 AM by pyros23
View Replies !
View Related
Trace Server Side
my code is simple :
application.onAppStart =function (){
trace("onAppStart")
}
I don't understand when it trace, it did it for a few times and now it doesn't.
any idea?
thanks
View Replies !
View Related
Record Flv In Server Side
Hi All,
I am using the Flash Media Encoder for the live broadcast. Is it possible to record the streaming FLV in the server side at the same time? I want to archive this files for further use.
Thx for your help
Dennis
View Replies !
View Related
[server-side] SWF To Bitmap
I'm currently using AMF:: Perl (aka FlashRemoting) to import data from our server and chart the information using custom functions.
My problem lies in that we'd like to be able to publish the SWF as a bitmap for printable reasons, and so that people can send/share the chart if they so choose.
Any help would be greatly appreciated (even just a point in the right direction).
View Replies !
View Related
Server Side For Designers
I've been using PHP recently with CSS/XHTML. However I've got some projects coming up in flash.
I'm not a developer but I need to know how to intigrate the back end with my Flash front end. DOing this in PHP is fairly straightforward as there are lots of tutorials and books. However, there are some instances I will have to use a ASP back end and cant find any books or tutorials. tried searching the forum and other sites but no good.
Are PHP/ASP just as easy to inegrate if you know the right actionscript?
View Replies !
View Related
Flash, And XML In Server Side
hey guys, I took a fla from the xperiment forum here, and I tryed placing it in a hosting space, but it those not work, it works in my machine locally, but not in the server space.
the swf shows one image, and one thumb, but it those not show the rest
Thanks dudes!!
link: http://anardodesign.com/radio/photoviewer.swf
View Replies !
View Related
XML & Server-side Generated XML
Does flash read xml from a local xml file and xml generated from a php script the same way?
Can I just switch xml.load("myxml.xml") to xml.load("http://www.mydomain.com/page1.php?vars=vars");
If so, great. If not, I would appreciate whatever help, links, info you can provide.
Thanks in advance!
View Replies !
View Related
[server-side] SWF To Bitmap
I'm currently using AMF:: Perl (aka FlashRemoting) to import data from our server and chart the information using custom functions.
My problem lies in that we'd like to be able to publish the SWF as a bitmap for printable reasons, and so that people can send/share the chart if they so choose.
Any help would be greatly appreciated (even just a point in the right direction).
View Replies !
View Related
Server Side For Designers
I've been using PHP recently with CSS/XHTML. However I've got some projects coming up in flash.
I'm not a developer but I need to know how to intigrate the back end with my Flash front end. DOing this in PHP is fairly straightforward as there are lots of tutorials and books. However, there are some instances I will have to use a ASP back end and cant find any books or tutorials. tried searching the forum and other sites but no good.
Are PHP/ASP just as easy to inegrate if you know the right actionscript?
View Replies !
View Related
|