Tagged Questions
2
votes
1answer
32 views
Undefined index when trying to GET variable
In my Flash file I have the following Actionscript code:
gameEnd.submitBtn.removeEventListener(MouseEvent.MOUSE_DOWN, submitScore);
The submitScore function is as follows:
public function ...
0
votes
0answers
17 views
File upload error not detected by flash as3 with php
ActionScript 3 has a sophisticated way of uploading files with php. A common error (at list for me) is wrong url, so php can't allocate the file. This should generate an error since I put all those ...
0
votes
2answers
28 views
Passing Data from PHP to Flash
I am trying to get some basic data passed from PHP to Flash. From reading on the topic I understand the best way is to create XML with PHP then read it in Flash. I am trying to start out simple so ...
0
votes
1answer
22 views
JavaScript function does not run when called from Flash
I have a .php page, which has a JavaScript function in it, and runs that function, if something is correct in MySQL database. I know the function works.
So my php file looks like this:
thephp.php:
...
0
votes
1answer
22 views
How to get time with respect to MySQL timestamp, in ActionScript 3?
I want to show an ActionScript 3.0 Timer, with respect to a timestamp gotten from MySQL.
So suppose MySQL (PHP) returns a string like $my_birthday="2013-05-22 12:30:45"
I got it from ActionScript by ...
0
votes
1answer
54 views
Show hiscores within Flash?
I am creating a game in Flash using Actionscript 3 and the game is to be integrated into a Facebook app. My question is how do I go about creating and showing a hiscores table within my game?
The ...
1
vote
4answers
45 views
How can i break a line text using PHP for an email
Using a AS3 aplication, i'm sending the body variable via GET.
$body = $_GET['body'];
Here i'm trying to replace the word 'JUMP' with '\n' to break a line
$body = preg_replace('/JUMP/', '\n', ...
0
votes
1answer
30 views
AS3. XML created from PHP needs to be send to Action Script 3
I need to make TOP 10 players table in flash. When I click button "TOP 10" it must get data from database and print list on the game screen.
What I want to make here is vision:
I have dynamically ...
0
votes
0answers
30 views
passing variable content using swfobject to AS3
I have this JS code implemented in AS3 project:
// JavaScript API consumer detection
var enableJsApi:Boolean = ExternalInterface.call( "eval", "(function(){
return window.onFlashSnesReady != ...
0
votes
1answer
22 views
Timer Concept on Server Side
Here's the scenario:
I have a SmartFox server running on Amazon EC2 and using MySQL for the database. I'm using AS3 as the programming language.
I have a virtual world in which the user can click ...
0
votes
1answer
63 views
Action Script 3. How to get time from game and insert to database?
I'm creating flash game. Here is timer, which counts how long player playing. When "Game is over" counter stops. And I need to write this time to database. My counter format is MM:SS, so I don't know ...
0
votes
3answers
34 views
How to Get Array From URL Encoded String?
I'm sure this is a very easy thing but I couldn't find it in google for hours.
I'm new to ActionScript and I'm trying to obtain an array of variables from a string that is generated by a .php file.
...
0
votes
2answers
25 views
ActionScript Implicit Coercion Error
I'm new to ActionScript and Flash environments (just started) and I'm trying to get data from a .php file.
So I found this AjaxRequest class on the internet.
And I'm testing it with my Main ...
0
votes
0answers
22 views
Modify Local Shared Object with javascript or PHP
In my previous question I tried to figure out how to identify a computer as accurate as possible. I think the best solution is the usage of Local Shared Objects a.k.a flash cookies. I would like to ...
0
votes
1answer
27 views
Hiding requests of Flash movie from browser
I have my own flash video player that makes a request to a video file on my server. I use Google Chrome and every time when I use Inspect Element and go to the Network tab, I see that request. So the ...
3
votes
1answer
65 views
POST vars from flash to php file_put_contents filename
I'm recording webcam data and sending to a .php to be stored and viewed later within the flash. That element is working fine but I need to give the file a unique ID each time it does this based on ...
4
votes
1answer
86 views
Action Script 3. How to get data from swf (as) to php and write to database
I'm creating Flash "memory" game, Idea to discover 2 equal cards. Here is timer which count time in how many seconds all cards are discovered. After complete game timer stops. How can I get this time ...
0
votes
2answers
42 views
Unable to call access session variable
I have a flash app which captures image thorugh webcam and stores it in a file throught save.php (below). Now the problem I have is that I am unable to access my session variables when save.php is ...
0
votes
2answers
36 views
ActionScript 3.0 Button Compile error
I'm a newbie in ActionScript. Just started, watching some basic video tutorials and searched some sites about subjects that I am interested in. So, I selected something that I thought was going to be ...
1
vote
0answers
56 views
How can I use Flex RemoteObjects with NodeJS?
I have a application builded in Flex/AS3, and I use a server LAMP as a proxy/gateway.
I use ZendAMF to make the conversation between Flex <=> PHP.
Now I need to build another server ...
-1
votes
1answer
33 views
Load PHP content in AS3 without notice in console
Is There any way to prevent log requests after retrieve data with this code?
var QUEUE_LOADER:URLLoader = new URLLoader;
var QUEUE_REQUEST:URLRequest = new URLRequest("http://localhost/c/");
var ...
0
votes
0answers
69 views
filling datagridview from requested data
I am trying to load an XML document into a DataGridView in Actionscript. BUT I am creating the xml in php from a mysql result. So I need to send my php the user name to select the correct records from ...
0
votes
1answer
139 views
How can I stream live webcam video using Adobe flex without using Flash server or Red5?
My hosting service doesn't allow Flash server or Red5 to be used on the shared hosting account, only with a VPS account. This is something, I do not want to pay for. I have managed to create a MXML ...
0
votes
1answer
33 views
AS3 getting vars, but can't access
I am trying to get some user data from PHP to AS3.
When I execute my code in AS3 I get this: &levelUser=5&livesUser=5 And its good, it's all the data I want to transfer
But when I try to get ...
0
votes
0answers
37 views
timer resets before urlrequest completes AS3
I set a timer to check for new messages every second and then print them, problem is once it detects new messages it prints them 2 times. I guess the timer resets before the urlrequest completes ...
-4
votes
1answer
52 views
Get a variable of Flash file [closed]
Please any one tell me how I can get a variable of Flash file:
Using php , file_get_contents? And thanks.
0
votes
1answer
50 views
PHP's $HTTP_RAW_POST_DATA in ASP
I'm updating a classic asp page with a flash app and I need to reproduce the PHP's $HTTP_RAW_POST_DATA function under vbscript (OR C# .NET since it's on IIS7 also). This is what I have so far but does ...
0
votes
1answer
25 views
As3 email forms php with components
I need to create an email form with AS3. Coming from AS2 my knowledge is limited. On stage, i have a submit button, a combobox, and two textinput fields for email and password. Reading throught some ...
0
votes
1answer
46 views
Parsing variables through PHP with Flash
I'm making chat in flash as3 with php and mysql database.
However I don't know php at all, and got problem with updating messages.
for now my php file looks like this:
$caster = $_POST['caster'];
...
0
votes
1answer
94 views
how to connect registration form made from flash to phpmyadmin?
i made this simple registration form using flash, and i want it to connect to a database in my localhost using php, here is my code so far
function register(evt:MouseEvent):void{
var jpa:URLVariables ...
0
votes
1answer
77 views
JSON format lost in PHP
When I send json data from action script 3 to php using URLVariables, the json string changes and cannot be used as json inside php. How to prevent this happening? Or how to fix it?
trace from ...
0
votes
1answer
46 views
Action Message Format vs downloading XML files?
As we are about to start downloading big data from the server, we have two options to work with:
Downloading compressed XML file each 10 seconds, where we will store data to be consumed at the ...
1
vote
1answer
102 views
Sending JSON from AS3 to PHP
I really can't figure out what's wrong.
Im sending JSON from AS3 to PHP:
var sendToPHPJson:String = com.adobe.serialization.json.JSON.encode(sqlResult);
myRequest = new ...
0
votes
0answers
40 views
autosum in pdf file
I want to get auto sum in the pdf, for example, when I tick checkbox, it will automatically calculate the sum of ticked box.
Here is my code:
if($books){
$i=1;
foreach($books as $b){
...
0
votes
2answers
106 views
AS3, PHP, mysql: Cant get variables from server
Im using as3, mysql and php, trying to send username and receive (points) and post the points in a text object on the stage, I can send points to the server with similar script but can get numbers ...
0
votes
0answers
135 views
Flash AS3 Data from PHP XML not showing in datagrid
My PHP code is reading correctly from the database, I can run the PHP code and see the XML. In flash I have no errors, the datagrid appears correctly however the data is simply not there.
PHP Code
...
0
votes
0answers
30 views
Sending vars back from php to AS3 at various times throughout script?
Gidday
I'm using some JSON at the end of a php script to send a status update back to AS3:
$send = array("error"=>"", "x"=>5);
$sendThis = json_encode($send);
print $sendThis;
exit(); ...
0
votes
0answers
77 views
Data not being sent to PHP from AS3
im going trying to post data from as3 into a sql database through PHP. Here is the code i currently have, can anyone see any problems with it. Thank you
(The database is already setup and works)
...
-1
votes
1answer
40 views
AS3 to PHP is this possible [closed]
I have been using this as3 code but would like to know if its possible to do in php or JavaScript as I cant seem to find anything. regards
var my_date:Date;
var my_timer:Timer=new Timer(1000);
...
0
votes
2answers
68 views
sendToURL doesn't send to URL [duplicate]
I edited the question as suggested in meta.stackoverflow to improve the quality of my question for better understanding :))
I am using phpbb 3 and just downloaded a MOD called Proxy Revealer which ...
0
votes
2answers
168 views
Retrieving Information from MySQL via PHP to AS3
I am currently doing a tutorial which was found on TutsPlus.
This tutorial was to save information from AS3 to MySQL via PHP and then retrieve this information.
So far, it works. I Can enter a ...
1
vote
2answers
48 views
AS#3 organize variables loaded from PhP
I am having a problem of how to organize my variables in flash that are from a PHP script.Ideally i want them in an array type format so i can loop through them.Below is some code to go with.
...
0
votes
1answer
39 views
AMFPHP how to access classes outside amfphp
My class log is in directory:
www/includes/classes/log.php
with a method
public function add($type){
if($type!=''){
$this->addRow($type);
}
}
AmfPHP class abc exist in ...
0
votes
1answer
77 views
loading images and data from mysql into Flash using PHP?
I have a mysql database where the name of the products and prices and details get saved on there. This is done using PHP. and it works fine.
I just need to load the images of the products and their ...
0
votes
2answers
215 views
Sending data from AS3 to MySQL via PHP
I'm new to both programming languages and could use any help possible. I've created a form in AS3 and the data should be sent to PHP and then to MYSQL. I've checked my code and have no errors in ...
0
votes
1answer
117 views
Need Help sending data from AS3 to PHP
I have a form which is created in Adobe flash actionscript 3 and need help to verify if what i'm doing is correct... i'm new to both AS3 and PHP so any help and explanation would be really ...
0
votes
3answers
134 views
PHP wont send data to mysql!? (undefined variable error)
I have some data which is received from adobe flash AS3, the PHP file receives it, but I cant seem to send the data to mySQL...
Here is my PHP code:
<?php
if(isset($_POST['userFirstName'])){ ...
0
votes
1answer
71 views
Printing database query results in AS3
new-ish to PHP. Attempting to create a highscore table in Flash, I've got my game linked to the database and can send scores to it no problem. I can also retrieve them but the problem lies in the ...
-4
votes
1answer
112 views
Optimizing PHP code that uses a lot of for loops
My PHP code contains a lot of foreach loops and results are absolutely disastrous. It takes way too long to run.
Is there an alternative to this. I am open to all suggestions.
I am thinking may be ...
0
votes
0answers
32 views
Accessing Cross-Domain Info from AdWords
I am developing an SWF for a client for use in AdWords. The client wants the SWF to load and play a short YouTube clip, but they want it to pull the URL for the clip from a data call on their server ...


