Services


 Development SERVICES

Aoyamadesigns has been developing web applications for over 4 years. Primary development has been in the Actionscript language format, used in Flash and Flex technology. Using this platform allows us to offer a broad range of operating systems from personal computers to mobile phones. Because of the close interaction in development, new User Interface (UI) design concepts are always being integrated and tested.

  • ActionScript 1.0, 2.0, 3.0, FlashLite, AIR
  • Flash CS, Flex (Flash Builder)
  • HTML, XHTML, CSS
  • MySQL Database building
  • PHP

 

  1. private function brightInit():void {    
  2.      bInput.text = "50";        
  3.      hBrighten.value = 50;      
  4.      var value:Number = 50;    
  5.      var matrix:Array = new Array();    
  6.      matrix = matrix.concat([1, 0, 0, 0, value]); // red        
  7.      matrix = matrix.concat([0, 1, 0, 0, value]); // green      
  8.      matrix = matrix.concat([0, 0, 1, 0, value]); // blue      
  9.      matrix = matrix.concat([0, 0, 0, 1, 0]); // alpha  
  10.      var cmfB:ColorMatrixFilter = new ColorMatrixFilter(matrix);       
  11.      bImage.content.filters = [cmfB];
  12.      bInput.addEventListener(KeyboardEvent.KEY_DOWN,bInputFun,false,0,true);
  13. }