Actionscript 3.0 :: MySQL And PHP To Make A Scoreboard?

May 29, 2009

I need to create a scoreboard for my game. I want to be able to let my user submit the time it took to complete the game to my scoreboard. I have been able to purchase webspace with SQL, PHP. I have set up my SQL database. I have found a great tutorial about how to do precisely what I wanted on YouTube BUT after starting the tutorial I realised it was ActionScript 2, I REALLY need time type of tutorial but for ACTIONSCRIPT.

View 1 Replies


Similar Posts:


Actionscript 3.0 :: MySQL And PHP To Make A Scoreboard

Sep 4, 2011

I need to create a scoreboard for my game. I want to be able to let my user submit the time it took to complete the game to my scoreboard. I have been able to purchase webspace with SQL, PHP. I have set up my SQL database. I have found a great tutorial about how to do precisely what I wanted on YouTube BUT after starting the tutorial I realised it was ActionScript 2, I REALLY need time type of tutorial but for ACTIONSCRIPT. I have searched google for over two weeks now, but cannot find anything that suits.

View 1 Replies

ActionScript 3.0 :: Make A Scoreboard?

Jun 11, 2011

how can i make a scoreboard? i have no idea how to do it

View 1 Replies

ActionScript 2.0 :: Make A Scoreboard Of Players?

Jul 31, 2010

I'm trying to make a scoreboard of players.It works fine for strings (like the username) listing like:

User1
User2
User3
etc

using in PHP to seperate them. (Using Flash,PHP,MySQL Integration)This is how I get them from the db in PHP:

PHP Code:

while($row = mysql_fetch_array($result)){ $rankPos .= $nrow . "
"; //# Position $rankUser .= $row['user'] . "
"; //Username obviously $rankN .= $row[$rankBy] . "

[code]...

The problem with this is, when flash receives rankings such as time, they are seperated by newlines () which makes them strings instead of integers as they rightly should be.

I'm using a time to string function to convert the time as integer (getTimer()) to a format HH:MM:SS It's fine ranking the times in the getTimer format but it all becomes a mess when trying to display the string format instead. (Considering times for all players are linked in the same string passed by PHP as time

time
time
time (000000

[code]...

The reason they are split with newlines is because the rankings are displayed in a single dynamic text.I tried converting each time in flash using the int function, but what would you do for newlines? The time rankings just comes out as '0' because of the newlines.I've also tried using this following function to remove the newlines and then possibly put each time into an array.

Actionscript Code:
function time(input){ timestr = ""; for(i=0; i<input.length; i++){  if(input.charAt(i) != " "){ timestr += input.charAt(i);} }  return timestr;}

[code]...

What would I check for in order to get each time into an array?Though I'd much prefer using a much more efficient and easy method for display high scores.

View 3 Replies

Flash :: Make A Live Gameshow Scoreboard/timer?

Nov 17, 2009

I need to make a scoreboard/timer that would show on a projector so that everyone can see the current points and the 8 second timer, all this controlled for a non-flash-user, considering someone else will have to do it cause I'm IN the gameshow, so it has to be easily-changable.
 
[[[I'd also like to mention I apparently heard that this could somehow be done sending information between flash and excel? The image attached is what it'd look like. Each peice is a graphic object in flash.

[Code]...

View 1 Replies

ActionScript 3.0 :: Make A Shared Object Save A User Name For A Scoreboard?

Jun 22, 2011

how can i make a shared object save a user name for a scoreboard it works like this i made a mc that is the scoreboard and the scoreboard has text boxes in it and the game gets a popup when it starts with a editeble text i want that text to save on to a text box in the scoreboard mc how can i do that?

View 3 Replies

ActionScript 3.0 :: Php -> MySQL ... Make The Db Flexible??

Jan 28, 2011

what I should read up on to let me store 'very flexible' data in a mySQL database?I've written an AS3 'online experiment' platform (soon to be opensource) where I run my psyc experiments (e.g.[url]..- a follow up to this [url]...experiments specified in XML). The big issue is that I want to be able to store data from many experiments in mySQL.

Each experiment will have a different list of variables it will want to store. E.g.

Experiment 1: name, age, rating1, rating2...

Experiment 2: id, number, reaction time1, rating1...

Experiment 999: x, y, z, a, b, c, d, e...

How on earth do I get mySQL to be so flexible??? Currently I have as3 -> php -> boring file on my server. Can you advise on reading material for me to learn how to make php -> mySQL flexible enough to do this?

View 3 Replies

ActionScript 2.0 :: Make A Flash - MySQL - PHP Calendar

Jan 21, 2004

make a PHP, mySQL, Flash calendar. I want to do this to teach myself a little bit about all three of these things. I know a little about all of them, but I don't really understand how to use them all together. I have searched around the forums, and kirupa, and the web in general and I am having trouble with a few things. First of all let's say I have 3 different fields in my table. Date, Event, and Description. How can I pull each record with PHP? Do I have to pull them one field at a time, or can I just pull the whole record, and send it straight to flash via PHP?

View 14 Replies

ActionScript 3.0 :: Make Slide Show Using PHP,Flash And MySql?

Feb 19, 2010

i will make slide show using Flash actionScript 3.0, PHP and using MySql also (have animation too inside) for my final exam. how to make the slide show from begining ?

View 2 Replies

ActionScript 2.0 :: Make Flash Form Submit To MySQL Database?

Apr 20, 2009

I would like to make my flash form submit to mysql database.

View 2 Replies

Mysql :: Migrate A Preexisting Flex/Java/Hibernate/MySQL App Onto A CD For Portable Distro?

Feb 2, 2011

I have a typical Flex-based application that was written to use a Java/Hibernate/MySQL backend. The client changed the requirements - now they want to distribute it on a CD where the user can just run the app without any installation or a network connection.

To do this, I certainly need to eliminate the web server and the database server and adapt my application (with as few changes as possible, of course) to a stand-alone application that will fit on a CD/DVD. I've managed to export the data to XML and read it into Flex, but I'm wondering if there's a way to recreate the Hibernate data structures in Flex so I could change as little code as possible. Failing that, is there any way to keep the existing Java/Hibernate external to the Flex code but retrievable without installing Apache Tomcat or MySQL?

View 3 Replies

Mysql :: Create An Insert Form With TextInput Containing ComboBox Provided By MySQL Database Table?

Jan 13, 2010

I have a Flex application which manage a database composed by 7 tables.I have created the insert form and all work great. Now I wanto to improve the Form performances; the idea is to replace the TextInput of the Form with ComboBoxes which are provided by the DataBase tables

View 1 Replies

Configure MySQL JDBC Driver Mysql-connector-java-5.1.12?

May 25, 2010

I have downloaded MySQL JDBC driver from [URL]... How do I configure it?

View 1 Replies

ActionScript 3.0 :: Refresh The Php Scoreboard?

Dec 3, 2010

I have a scoreboard in flash which works great, but once go back onto the scores page at the end of the game it adds the text to each field again rather than refreshing the scores/names, therefore each item appears twice in each  box..
 
Is there a correct way to dynamically update  the scores each time I access the page ? I've tried creating a loop that sets the value of each text_box.text to ""; once I leave the page but that didn't work !!

View 3 Replies

IDE :: Completely Dynamic ScoreBoard?

Feb 22, 2010

I'm building a dynamic scoreboard for a client currently. The first application will be a golf leaderboard. It needs to be updateable by the client (I'll write a form that fills in the xml file from the users input)I need to have a xml file that defines..-number of columns/rows-titles-content in each boxand then the flash that takes that and generates a table from it.Is there any tutorials or source files floating around that do this? There's plenty that talk about in-game scoreboards, but we need to have all the data input from an external file.

View 1 Replies

ActionScript 2.0 :: Scoreboard With Shared Objects?

Sep 7, 2010

I've done this flash scoreboard with shared objects.but what i can done is it will replace the 1st score in my scoreboard, it won't have 2nd, 3rd, 4th and etc...the script i used is:

ActionScript Code:
submit_btn.onPress = function()
{

[code].......

View 0 Replies

ActionScript 2.0 :: Encrypt Data On A Scoreboard?

Oct 17, 2011

Basically I've set up a scoreboard for a flash game I've made for a client. Now the scoreboard works fine but apparently it's not very secure. One of the clients friends was able to add a score of 100,000 without even playing the game. This is quite a big problem as they are planning on doing a competition with prizes for the highest scores.

What's the normal way to encrypt data on a scoreboard? The scores are stored in a MySQL database btw.

View 1 Replies

Mysql :: Accent MySQL-Flex/ZendFramework?

Oct 22, 2011

In my table the Collation is:latin1_swedish_ci (but i tried UTF8_unicode too).In my flex application when it shows the table,it displays it correct,with all accent and pointing correct,but in the table is like :

View 1 Replies

ActionScript 2.0 :: Flash 8 - Scoreboard With Shared Objects

Sep 2, 2010

I've done this flash scoreboard with shared objects. But what I can done is it will replace the 1st score in my scoreboard, it won't have 2nd, 3rd, 4th and etc...

The script I used is:
submit_btn.onPress = function(){
//create a new sharedObject called 'userName'
var mySharedObject:SharedObject = SharedObject.getLocal("userName");
var mySharedObject2:SharedObject = SharedObject.getLocal("userScore");
//assign (data) the sharedObject (mySharedObject) a var called 'name1', which has the value of whatever is in textField 'save_txt'
[Code] .....

I want to have each higher score goes to the scoreboard, so will have 10 highest score in my scoreboard. Here is my attached file in CS5 format.

View 4 Replies

ActionScript 1/2 :: Comparing 10 Variables And Listing Top 3 On Scoreboard

Mar 22, 2010

I am making a scoreboard. On this scoreboard I will have 10 different scores. I want to compare the 10 scores and list the top 3 scores in another location. I was thinking at first
if(score1>score2&&score1>score3&&score1>score4 etc.....){
some function
}
But this will only give me the top score in the group. I would like to find the top 3 scores, and then list them.

View 4 Replies

ActionScript 1/2 :: Creating An External Array For A Scoreboard?

Jul 26, 2010

I also want another fla file to be able to reference this external array and pull the top 15 scores from it, and then display those scores on a scrolling banner.  I want the banner to be able to update dynamically (I assume reloading the banner fla each time it reaches the end of its cycle, having the first frame load the external array on an onClipEvent action would accomplish this), that way it will update while remaining open.  The main reason I need two separate files for the quiz and the score banner is they will be displayed on two different monitors.  What would be the most efficient way of accomplishing this?  I know a little about actionscript but I don't have much experience with calling data and functions from external fla or as files (the array and the function designating how the data will be arranged within said array are going to be in a separate .as file).

View 9 Replies

ActionScript 2.0 :: Setup A Scoreboard Type Deal

May 10, 2009

Im trying to setup a scoreboard type deal. I'm using SharedObjects.I can make it WRITE to the .sol without any problems but I cant seem to make it READ from the .sol to re-display the data once the user opens the swf again.

View 2 Replies

ActionScript 3.0 :: Create A Scoreboard For My IPhone Using Flash CS5 In Air For IOS Mode?

Aug 4, 2011

I need this for a simple iPhone app...I was trying to create a Scoreboard for my iPhone using Flash CS5 in Air  for iOS mode. I succesfully add the Timer and the 24-seconds Timer, but  now i need soooo much help. Problems: 1. When the Timer reaches 0 mins, it display only :59, not 00:59 2. I tried to add a Button for the Counter of the points, but it seems  very complicated in AS3(not in AS2 :/). I created a TLF Read Only Text  named "HomeScore" . But it's a String not a Number so i can't add a  simple counter. 4. with the Reset button (for Timer & 24-Seconds) and the Start/Stop buttons (for Timer & 24). My code:import flash.events.MouseEvent;

[Code]...

View 4 Replies

ActionScript 2.0 :: Game Scoreboard Using Local Shared Object?

Oct 10, 2003

I would like to know how to save more than 1 score into the text file and not overwriting the previous score so that it can be displayed in the high score list...I'm not sure how to write the array and where to write itwrite a sample code of for example getting 3 scores, saving it and displaying it in the high score board ?

View 2 Replies

ActionScript 3.0 :: Flash Game Scoreboard - Setting Up A Scoring System

Apr 5, 2012

I am making my very first AS3 game, and though it's quite simple I'm having trouble setting up a scoring system. The concept of the game is simple. Objects appear on the screen, clicking the objects adds points. For this project I am working with 3 AS files, a Document class and two movieclip class files. I would also like to track how many objects have been added to the stage in addition to the score which should track how many objects have been clicked. Here is my Doc Class

[Code]...

View 14 Replies

ActionScript 2.0 :: CS3 PHP / MySQL

Sep 15, 2009

i am good in php though, i am trying to make it so when the user presses a button, it updates a field by 1, i dont mind if it cant do it with text but if it just can do numbers at least then i can do an if echo statement. so far i have looked around and this is the best one i got (it is a poll but should give similar results)(i replace personal details with exactly 5 *'s): With this the table is called votesystem with fields vote1, vote2, vote3, vote4

[Code]...

View 3 Replies

How To Update A MySql DB Using Flex

Aug 10, 2009

i've done some simple apps to get the felling of it, nothing involving updating a file or a database.I wanted help, how to do a query to a MySql DB from a Flex application (thats gonna be running in a web server).I didn't saw any duplicated questions, sorry if any exists, just point me to it.

View 5 Replies

Php :: How To Integrate Flash And MySQL

Feb 20, 2010

tutorials (e.g. ) show how to integrate Flash and MySQL. Also Flash can manipulate and sent this back to serverTo integrate flash and MySQL one can do the following:(1) MySQL -> php -> Flash (e.g. What is the most robust way to set up (1) and (2) to work at scale - as quickly as possible? What are the server loading implications? Is there any other way to do (1) and (2) more effectively?

View 2 Replies

Flex :: Connecting To Mysql Using Php

Mar 8, 2011

I wanted to use flex line chart for displaying data stored in mysql table. Can anyone suggest me on how do I do this with flex as UI and mysql as db, I am not sure how to call .php file in flex to query from mysql. I wanted to show some data of time v/s temperature.I wrote a php file to query data from mysql, but my flex program is not able to connect to mysql, is there any configuration I need to update. I am using XAMPP

View 1 Replies

Php :: MySQL Query Not Working

May 27, 2009

[code]I am not sure whether i am going correct, i am always getting the return value no though i enter the correct username and password.

View 7 Replies







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