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


Similar Posts:


ActionScript 2.0 :: Drop Doown Menu Type Deal

Mar 24, 2009

I know there are lots of posts about drop down menus but I think my ? is a bit different. I want to have a menu like URL... where when you click on say, ad campaign the options come up on the side.

View 6 Replies

ActionScript 2.0 :: Spoiler Tags Type Deal With Flash

Feb 7, 2007

any resources that could help me learn how to emulate a spoiler tag type effect for flash text?I've looked at tree menus etc but seems a bit fussier than needed. What I have is a very large piece of text with differing sections, rather than have a user swamped by everything at once I'd like to hide the majority of it with a brief intro for each section. A [+] / [-] button would expand and collapse the extra information when required (pushing the rest of the content down ala a tree menu type thing).

View 3 Replies

Media Server :: Stuck In Vhost Setup Have Setup And Working Up To Connection?

Feb 22, 2011

I have started the vhost setup. I have cpanel on the server and I added the domain and it resolves to
the hosting account just fine pull up www.domain.com and goes to server.
 
I added the www.domain.com vhost. I pointed the application dir to /home/domain/public_html/applications/
 
I copied live over to applications dir. I setup user and pass for the virtual host login.

View 3 Replies

Xml :: How T Deal With The Namespace

Jun 30, 2011

I'm developing a flex mobile project using the wikipedia api which returns an xml with namespace like this.

<SearchSuggestion version="2.0" xmlns="http://opensearch.org/searchsuggest2">
<Query xml:space="preserve">xml</Query>
<Section>

[code]....

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

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

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

Windows :: Can FDT Deal With FLA Files Or Not?

Jun 16, 2010

I'm trying to find an all-in-one IDE for flash, one that can deal with various flash related files. I just read this answer and it recommends fdt, but seems fdt can only deal with scripts but not .fla ones. Which IDE should I use so that I can use it to develop various files involved in flash developing?

View 2 Replies

ActionScript 3.0 :: How To Deal With Xml Files

Sep 29, 2009

i want to program a flash simulation using actionscript 3, infect I learned how to deal with xml files from this website:URL...But the problem that I want a sample of an xml file for simulation template and if it possible a simulation template so that I can learn how does it work.If "flash simulation" is not clear, i mean with to perform a dialog that two people are conducting one of them are you, and the other one is the pc, if you answered with deferent choice then the dialog will take another path. (Every answer will take you to a deferent path)

View 4 Replies

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

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

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

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

Professional :: Priority On Stage And How To Deal With It?

Oct 2, 2010

Anybody else have that dilemma where you have movieclips on stage that should animate, but because they somehow end up switching index/priority(top to bottom on a single layer) on stage in some keyframes, they end up resetting themselves. This causes you to go back through all your movie clips just to check for this. Is there a reletively simple way to deal with this?

Also, assume that distributing everything to layers is not an option.

View 3 Replies

Flash :: Deal With Late OnMetaData In IE?

Apr 7, 2010

I am trying to dynamically resize an flv playing back in a flash player. To do this, I need to get the flv's width/height so I can maintain the original aspect ratio. I have noticed that in Firefox the onMetaData event will be hit right away, and the video will resize properly. In IE however, onMetaData is not hit until the buffer is full and video starts playing.

One solution I have thought of is to set the initial buffer to something close to 0 (e.g. 0.01). Then the buffer will instantly hit full, and the video will be resized. The issue I have with this is low bandwidth users will have a a short 'sputter' of video (0.5 seconds say) at the beginning before it goes to the next, larger, buffer. Is there any better way to deal with this behavior in IE? Can you manually "get" the metaData from an FLV file before it even plays?

View 1 Replies

Actionscript 3 :: Way To Deal With Sound In Flash?

Jun 2, 2011

is it best to load sound files into the library, or to load them externally? What I want to do is make a sampler app. You'd have a selection of loops and drag and drop them onto a timeline. My main concern is performance and any delay of sound.

View 2 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 3 :: Deal With Same Method Body In Different Handlers?

Aug 23, 2011

I have a method fired on mouse down:

private function setGender(e:MouseEvent):void
{
check.visible = true;[code]...

The same method body is shared by another method fired on a keyboard Event (so, it takes a keyboard Event for argument). Which is the best way to deal with situations like this one? I would like to have only one method.One way could be to create a new method called by the two event handlers (even if, if I need to use e.target, it can change according to the type of event and other variables, so I should eventually create a method that takes e.target as a parameter). This creates three methods...Would it be possible to change for example e:MouseEvent with a parent of MouseEvent and KeyboardEvent?

View 3 Replies

ActionScript 3.0 :: Flash Memory And How To Deal With External Swf?

Jul 23, 2009

I'm currently building a website that contain different game. each game is an external swf. I'm auto-preloading it while displaying textual stuff in order to have a minimum of preloading time.

Everything work well but imagine I've got 5 external swfs. If I decide to close one game and remove the loader child, when I click back to view this game, I have to reload it again.

So, is there a problem (memory or performance) if I do not delete my 5 loader childs in order to lead them only 1 time?

View 0 Replies

ActionScript 3.0 :: XML: Deal With Empty Child Nodes?

Jul 24, 2009

I have child node that has no information ... it would be a URL, so the error message I get is Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.. Code: _currURL = path.article.(@ID == _marker).storyURL; I thought I might check to see if _currURL == null, but that does nothing.

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

Professional :: The 'works Locally Fine, Not On Server' Deal?

Feb 5, 2010

There was always a flash movie on the homepage and it worked fine. A couple days ago I replaced the movie with a new one and added a .swf to the portfolio page as well. On the portfolio page, the movie is layered behind a series of transparent .pngs that link to their corresponding lightbox designations. The movie just plays, there isn't any interaction this way, atleast not in flash.

The problem: Everything works perfectly fine locally on all browsers and not at all on the server across all browsers. I have seen this problem before and read alot of posts about it.I know I have the proper scripts files. I've re-saved flash movies, changed their location within the site, published them with the appropriate settings, nothing seems to do the trick. Whats worse is that the lightbox doesn't even work online and it runs fine locally. Infact you cant even click on the .pngs and they aren't positioned the same with the css as they are viewed locally. I've overwritten the css with the up-to-date stylesheet many times as well

View 5 Replies

ActionScript 3.0 :: Making 300x250 Ad That Takes XML Feed For A Deal Of The Day?

May 25, 2010

My work has tasked me to create a 300x250 ad unit that will pull an XML feed from a vendor. The problem is I've been reading guides on XML and As2/As3 for the last few days and I've really not gotten anywhere. My boss is breathing down my neck and I need to get this done asap.This is an example of the feed the vendor is giving us.

Code:
<deal id="24">
<title>$20 for $40 worth of food & drinks at Simply Fondue</title>
<advertiser_name>Simply Fondue - Orange County</advertiser_name>

[code]....

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







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