Tag Archives: flash
Hi,
the other day i was thinking to make a site where you play a random game each time you visit.
so, i have registered a domain and set it up:
need to do a lot of more work on it, i’m still thinking some features i can add and a proper design for it (that need to be light and at the same time, look nice)
As soon i make some changes, i going to post it here
Regards,
Shadow.
Related Post
Hi,
the last days i was working on a API for project. for that, i was needed to set a OAuth system. all went perfect but i have a problem when i wanted to use the API in a AJAX app.
as you already know, AJAX it’s a technique where you use javascript to request info to a page and show it to the user. as you also know, javascript it’s executed in the user machine, and for OAuth it’s a problem :s
no matter what how it’s implemented the OAuth system in the API that you need to use, you need always to send the $consumer_key and the $consumer_secret encrypted in the signature, also depending of the type of request, also need to send the $token and $token_secret, for that, you can’t include in any javascript way (or in a swf) any of this vars why compromise the security of the consumer, why any with this data can access to the protected resources as you.
for that, the solution it’s to create a bridge between your AJAX/FLASH app and the API/OAuth server.
the process it’s simple, create a php with a code like this:
<?php
//check if the one who are making the call to the bridge it’s trusted
//for that you can use a filter ip, an authenticated session or any method that fits your needs
$consumer_key=”lalala”;
if($trusted){
//making the request
$result=$OAuth->request($url_of_the_server.$_GET['service'],
$consumer_key,$consumer_secret,$_SESSION['token'],$_SESSION['token_secret']);
echo $result;
}
?>
of course the code can be diferent depending of your client library and stuff, but basically that are the steps to make the bridge:
1)check that the one who call the bridge it’s trusted or ahiterized, checking a sesssion var or anything what you have
2)make the request using the $service var that define the service to call to the service
3)print the result of the call and it’s done
i hope this give you some help at the time to use OAuth and REST with ajax and flash
Regards,
Shadow.
Related Post
Hi,
today i’m really happy
it’s available for download in several format the new version of the flash plugin for linux
it’s a great update, why if you are a developer, can develop and enjor the new improvement of this version, and if you are user, the same but better
i already installed it and i noticed a better performance than the version 9.
so, dont waste more time, go now and update your plugin
Regards,
Shadow.
Related Post
Hi,
no, i not released a game yet, but a good friend mine yes, and that merit a post
he released her first game, i hope you, when you tried, be nice and give a contructive feedback
i appear in the credits, only why i help him with some things in AS3
only left enjoy it
http://gamesmosaic.net/games/Memo.php
Regards,
Shadow.
Related Post

Adobe it’s planing to release a security update for flash player, to protect of cross side scripting and other vulnerabilities what have the swf format, this changes going to affect any new app developed and older content also (also the content for flash player 7), to prevent the broke of your app, need to have some precautions what are detailed in this document:
http://www.adobe.com/devnet/flashplayer/
articles/flash_player9_security_update.html
Read it and make your change before you app or content dont work anymore :p
Regards,
Shadow.






