Facebook :: 3 Isolib Game Development?

Mar 16, 2012

I need to develop a isometric game on facebook like farmvillie, barnbuddy or etc. I found couple of frame works (link is here) to develop it, but they not simple as isolib.So I decided to go with as3 isolib. Google project for that is here.

But I could not find a A-Z tutorial for as3 isolib, except basic (adding scenes, adding map and etc).
I want more stuff. So Can you please suggest me a advance as3 isolib tutorial (I googled it 100 times) ?

Anyway if you have suggestion for frame work except isolib to develop isometric game,let me know it also.

View 1 Replies


Similar Posts:


Javascript :: Facebook Game Development / University Project / Front End Woes

Dec 8, 2011

I have been requested to make a port of an iOS game for Facebook.The game itself is fairly simple, it is a puzzle game using a 2d array for a grid with XML passed from a server for loading objects onto the the grid, to create levels.The game will ask questions at stages which will be passed to my server and stored for research purposes.Some questions for those with experience.What front-end options do I have with Facebook? I have looked into both Flash and HTML5/js both of which i have little to no experience in (I'm experienced in Java/C#/Ruby + Rails).Javascript seems like a nightmare from what I have read, even looking into javascript game engines, but at least it is free. My backend will most likely be rails for handling server logic.Summary(because I ramble too much)

-Is javascript for programming games really a problem for simple games on Facebook?

-Are js game engines worth using? Does anyone have any experience with them?

-Would prevention of cheating be possible with a js/rails game, do server side checks work?

-Are there any alternatives for a front end for someone with C#/Java/Ruby background?I've never seen any Unity or Java apps on Facebook(I don't use it much) and I don't know if the licensing will be an issue for this research project.

View 1 Replies

Web Development :: Web Development - Search For All Tagged Photos Associated With User Some Id I All Of Facebook Users?

Nov 3, 2011

I'm using the the Adobe ActionScript 3 SDK for Facebook Platform to get all the tagged photos of the current user. Is this possible?

I've tried this:

FacebookDesktop.api("/"+uid+"/photos",getTagedPhotosHandler);

But that only gets me the photos belonging to that user.

View 1 Replies

ActionScript 2.0 :: Game Development - Game Character Dialogues?

Jan 22, 2010

It's about the "Game Character Dialogues", It is used to instruct the user what to do, like what you see in BookWorm or Diner DAsh.I used dynamic text fields to generate these dialogues,but as I continued doing it. I found myself stuck.I have no idea on how to change the words when the "next" button is clicked. there will be no previous button. but the dialogue will replay when the character is clicked.

View 3 Replies

AS2 :: (cs4) Open Source Development Facebook Comment FriendsList Fla With UserLogin

Sep 26, 2010

You can create a account You can login with your username and password. You can post comments. You can read all posted comments from your self and from your friends. What is not done with this project? It needs an accept friendship button where new friends rerquest was sent. It needs to read any new request from any new friends. it needs a decline button where the new friend request was sent if your does not wish to have this friend. It needs a comment delete button where this username and this comment. set only for the user who posted the comment. so not just any one can delete anyones comment.

[Code]...

View 2 Replies

Cost Of Game Development

Oct 12, 2009

I am a web designer and have a client who is interested in having a game application created similar to farmville or mafiawars on facebook. This is outside of my realm of Flash for sure and would have to be handled by someone else.I realize there are many factors that affect this question but could anyone give me a ballpark cost of creating an application like that? My client is just curious as to the realistic possibility cost wise?

View 1 Replies

ActionScript 3.0 :: Communities For Game Or App Development ?

Mar 3, 2011

I am working on 2 projects at [url]... (an "easy" to use rapid data collection and processing app), and Space Out (a space shooter game with minion ships and systems/galaxies that expand as you explore).Are there any popular communities that handle both game and more serious-oriented app development? Is there some forum here at adobe? I've been working on them for a while,at least space out, but don't know what to do about getting feedback/users to try them.They use php and mysql to act like a server, and are written purely in as3.Space out has had more functional versions that were based on a development kit, which I am trying to move away from now. I'm not a business, just one person trying new things, new to me at least.

View 1 Replies

C# :: Where To Start With Browser Game Development

Sep 4, 2011

I started off game development on Android about a year ago and want to expand to developing browser games as well. Is flash worth learning? Or should I go for using an engine like Unity and learn game development in c#. Mostly I'm just worried that I would be wasting my time learning flash if I'm not going to get much use from it.

View 1 Replies

ActionScript 3.0 :: Framework For Game Development?

Oct 1, 2010

I need a framework that would ease n modularize game development.I am also searching through web,but the reason I posted this query is that ,there are lots of great game developers out there who have been actively involved in game development.And they know what framework is right for game development purpose.This is for the facebook game similar to [URL]..

View 2 Replies

Game Development - Slide From One Frame To Another In Flash CS4?

Apr 20, 2011

I'm able to create the basic structure but I'd like to add some transitions between frames when a player makes a choice. I want to make it look like one frame slides to the left followed by the next frame sliding into view.

View 1 Replies

Flash :: Web Development - Not To Target 10 For A Browser - Based Game?

Oct 25, 2010

There's clearly a bunch of new stuff in Flash 10, I'm seeing a bunch in the Graphics class so far. Struggling a bit to reconcile it with what I know already but it looks useful - render lists and 3D transforms, etc - however I wondered if there are good arguments for targeting Flash 9 since I can definitely manage without all the new stuff I don't know. Like support on non-Windows devices, wide adoption of Flash 9 Vs 10, etc.

View 1 Replies

Iphone :: Use Flash For Commercial IOS / Android App / Game Development?

Sep 7, 2011

Since I've been using Flash for a long time, I want to know if it can be be used for commercial grade games or app development?

View 3 Replies

Actionscript 3 :: Component Based Architecture In Game Development?

Oct 1, 2011

I have been thinking of trying out component based architecture for game development. I have read some blog posts and articles about it but I have a few things I have not sorted out yet. When I say component based I mean that you can add components to a ComponentManager that updates all components in its list. I want to try this to avoid getting classes that inherits variables and functions that they donīt need. I really like the idea of having an really simple entity class with a lot of components working side by side without getting bloated. Also, it is easy to remove and add functionality at runtime wich makes it really cool.

This is what I am aiming for.

// this is what the setup could be like
entity.componentManager.add(new RigidBody(3.0, 12.0));
entity.componentManager.add(new CrazyMagneticForce(3.0));
entity.componentManager.add(new DrunkAffection(42.0, 3.0));
// the game loop updates the component manager which updates all components
entity.componentManager.update(deltaTime);

Communication: Some of the components need to communicate with other components I canīt rely on the components to be self-sustaining. Sometime they will need to communicate with the other components.In Unity 3D, you can access the components using GetComponent().I was thinking of doing it like this, but what happens if you have two components of the same type? Maybe you get a Vector back.

var someComponent : RigidBody = _componentManager.getComponent(RigidBody);

Priority: Some components need to update before others

Some components need to update before others to get the correct data for the current game loop. I am thinking of adding a PRIORITY to each component, but I am not sure that this is enough. Unity uses LateUpdate and Update but maybe there is a way to get an even better control of the order of execution.

[URL]

View 1 Replies

Actionscript 3 :: Three D Libraries In Flex Application For Game Development

Feb 10, 2012

I am beginner in flex as3 applications. I need to develop a 3d game using flex will you the some 3d engines used for flex applications.

View 2 Replies

Flash :: Framework For Game Development On Adobe's AIR Mobile?

Feb 14, 2012

I've recently tried FlashPunk for game development and it seems to be easy enough to comprehend, however, when me and a friend tested simple apps coded in it on the iPhone, it seems to be acquiring an unnecessarily large amount of memory plus dropping framerates.

Are there any other choices for game development with ActionScript 3 with frameworks that are optimized for mobile gaming?

View 2 Replies

Actionscript :: Export Score Data From A Flash Game (still In Development)?

Sep 30, 2009

The game will be on a school VLE (virtual learning environment) like 'Moodle'. Can you export to email? Spreasheet? Or can it only be done with php? Do not want to be spending weeks on it!

View 1 Replies

Actionscript3 :: Game Development - Flash Cs4: Resolve Lag When Launched From Browser?

Aug 12, 2011

I've been working for a month on a flash game, which should be manageable to play in a browser (light computation). This being said, I've noticed that in some browsers the game runs at what looks like 15 fps (the game should run in 80fps). This has been known to happen in IE9, and the quick fix was to add this line to the top of the html: <meta http-equiv="X-UA-Compatible" value="IE=9"> This was a quick-fix that forces IE into compatibility mode and greatly improved the fps (to about... 60, let's say). Still, I believe that the game is running slower than it should in every browser, which is evident when the html version is compared to the swf.

[Code]...

View 1 Replies

As3 :: Game Development - Create - Append And Read A Txt File With Flash

Jan 16, 2012

I am kind of new to Flash and only really know really basic stuff. (Scenario) I have made a local game in Flash CS3 Professional for my Advanced Higher Computing project for school which is almost completely glitch free. But my teacher says it needs a file handling feature, such as a high score feature in it to make it AH standard. I want to make a simple high score feature where it takes the final score, asks the user to input their name, and add it to a .txt file. Since the computers at my school are very limited, I cannot use programs like Adobe AIR or PHP or anything like that so I need it to be simple. (Question) So I really need a full tutorial (where to put the coding, layout and everything) to:

Check if there is an existing .txt file called (for example) "High Score.txt" If there is, load it. If not, create a .txt file called (for example) "High Score.txt" to the desktop. Take the users input and place it with their final score after it. (Optional but not required) Arrange the scores in order of highest to lowest or display the top 5.

View 1 Replies

Flash :: Iphone - Adobe CS5 For Game Development And Publish It On The Apple App Store?

Oct 28, 2010

Since Apple loosened their terms again, is it posible to develop a game in FLash CS5 and publish it on the Apple App Store? Are there actually any real apps / games on the App Store that were build on Flash?

View 1 Replies

Actionscript 3 :: Game Development - Embed External Data Files For Run-time Retrieval?

Jul 30, 2011

I'm writing a Flash game where the game levels are saved in small plain-text files, which I want to embed in the swf file. My current solution has a distinct code smell in its repetition, and I'm certain that there is a better way. My code is basically: In a LevelLoader class, embed all the levels

[Embed( source="levels/1.dat", mimeType="application/octet-stream" )]
protected var level1:Class;
[Embed( source="levels/2.dat", mimeType="application/octet-stream" )][code].......

There are a couple of problems with this approach: I have to add a line for embedding each level. Optimally, all files in a folder would be automatically embedded.A level can't be "prepared" from a string. I'd like to be able to pass LevelLoader a level number or level name as a string.I think that all strings are stored in memory rather than on disk.How could I program this "correctly"?

View 1 Replies

Flash :: Game Development - Comet / JS / PHP / HTML5 Versus In Secure Multiplayer Gamedevelopment

Sep 1, 2011

I would like to create a multiplayer online game (tic-tac-toe/chess) and i am not sure which language to use. I am familiar with JS/PHP and heard about comet Does comet stand a chance against Flash, if yes whats the limitations except the lack of smooth animations like flash allows? What are the differences regarding resources and memory needed? SECURITY: Is it possible to create Flash-games without any chance to modify (flash-)cookies etc... for cheating? i know lot of questions, i do hope for your recommendations into the reight direction.

View 1 Replies

Game Development - Create A Translations Library Of Flash Symbols For Action Script From An XML File?

Nov 5, 2011

I have a list of 700 words that I would like to convert to symbols in Flash for a flash card game. I'm trying to make a game where a random symbol from a slice of the array of symbols will come into game play until the user performs an action.Basically, I'm wondering how I can create an arrayed/indexed library of symbols from a dictionary, for a downloadable Flash game. Does anyone know how I could start to script this? Also, if I want to pair a 'word symbol' with its translation, do I need to use a database? Obviously, because it's a flash-card type game I'm working on, the translated symbol is just as valuable as the original-language symbol.

View 1 Replies

Flash :: Php - Facebook Game Authentication

Apr 9, 2012

I need to authorise my Flash game (which runs on Facebook) users against my game server. I'm able to get their data like id, access token, etc, from Facebook on the client (I'm using the Flash Facebook API) but I'm not sure how to authorize them on my game server (e.g. do a login with a database query). One scenario that I have on my mind:

If I could get the same access token from Facebook on both the client (which I already do) and the server (with, for example, a redirect URL, which I tried but does not seems to work), then I could easily compare the two tokens (together with the user IDs) and thus authorize the user. UPDATE To put it simpler, I want to catch the token that is returned from Facebook on the server-side before it gets to the client (it can be a simple PHP script that parses the URL token parameter). Next, store it in the DB on the server, and when the client queries the server, I can do the comparison.

View 2 Replies

Multiplayer Flash Game (like Some In Facebook)?

May 12, 2011

Is there any free Open Source Multiplayer Flash Game (like Happyfarm... in facebook) that I can use and build my own small network?What I'm looking for is the source code of some Multiplayer Flash Game (like http:[url]....for example)I do not know to much thing to talk about it, but if there is some, I hope:

+The game can run without any other system (not a plug-in or mod)

+If there is server-slide script, it should be PHP

+There is an English document for deverloper

View 1 Replies

How To Create Flash Game On Facebook

Aug 26, 2011

What would be steps and technology needed to create a flash board game on Facebook? - something like checkers?

Will all game attributes - like ability to keep score, resume broken games and invite friends?

View 1 Replies

Php :: Integrate A Flash Professional Game Into Facebook?

Oct 26, 2011

I'm trying to integrate a Flash Professional/AS3 game into Facebook. The swf is hosted on a secure (https) server. The swf has to connect to a SmartFoxPro socket server on another domain.I'm using the Facebook Actionscript API to interface with Facebook. (Should I use PHP, instead? I read an article that recommends using PHP, because the Actionsrcipt API may not be kept up to date.) When I fire up my app, I get a "Security Information" pop-up box saying that the page contains both secure and nonsecure items. I click "yes" to all the display of the nonsecure items.

Then, I get an "XD Proxy blah-blah-blah" popup. This pop-up goes away, and then my app logs in to my SmartFox server.So... What is this "XD Proxy" window? I think it looks unprofessional, and users may think there's an error with the app. Also, can I block or hide the "Security Information" pop-up? Why don't I see this in other FB apps?

View 1 Replies

ActionScript 3.0 :: Flash Game With Facebook Connect?

Jul 11, 2011

i made flash game in action script 3.0. In my game i have leader score.. i have 2 buttons 1. share on facebook and 2. challenge your friends on facebook.on clicking 1 button it will directly go to facebook and share my score on facebook.And on clicking 2 button my all facebook friends pics will appear with checkbox when i am selecting few of my friends and click on go buttons, the facebook request will go to selected friends only for challenge ... how to do this 2 buttons functionality.

View 1 Replies

Flash - How To Approach Multiplayer Game Facebook App Project

Jun 16, 2011

I wish to create a multiplayer game facebook app. A game will have 1 to 4 people in it playing from their own systems. I wish to target, lets say, 10K simultaneous online users. I am planning to write the client side game in Flash. I wanted to know how these clients communicate with each other. Can these clients communicate directly with each other or I should go with "server as middleman" approach? I want the game to work even in "restricted" networks. If server, how do I have things working from google app engine cloud service? I came across channel API, should I use that? Would it work with a flash client?

View 3 Replies

Developing Characteristics Of Facebook Social Flash Game?

Jul 1, 2011

I just start to learn Flash AS3 and trying to make a Facebook social flash game. How is Facebook flash game divide its data into many parts for loading? For example, it's usually found that if we click on a new item (ex: character cloth, hair, eyes, etc) and drag it into stage, we need to wait for loading it from the ....er the sever(host), is it? what is the system of this and how where can i learn it? So there will be many people playing the game. therefore how can we store the accounts' data and load it when they start? How does the fullscreen system work? two separate flash?

View 2 Replies

Flash :: Facebook Game Client-server Communication?

Jul 6, 2011

We're currently working on a small scale indie card game for Facebook, which we hope will reach hundreds of thousands of players (eventually). We have most of the issues figured out (scalability, server-side architecture, etc) - however one question - communication between client & server.

We have the following requirements:

Server side push messages (no client message request) High scalability (should support at first hundreds and later hopefully thousands of CCUs) Secure, reliable layer Work well with most computers, routers & browsers Works with Adobe Flash/AS3

First thing that came to mind was socket connections, but I was wondering, is there a better solution that answers our needs?

View 2 Replies







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