AUGo Brazil

Adobe User Group Goiás

This is a public Group - South America  public

Eventos e Encontros

No results

Blog do AUGo

  • 1-6 of 6
  • Entry posted Sep 15 by Pablo Davi, tagged Design, Development in Blog public

    Ehaaaaa isso mesmo geral, isso que vocês ouviram, espero que não seja só eu o grande entusiasmado da semana. Depois da visita de Lee Brimelow ao Brazil - DF, SP, RJ - parece que as coisas ficaram mais fáceis para criar um camp brasileiro somente de FLASH. Uruuum

    O danado irá acontecer no dia 16 de Janeiro do próximo ano, 2010. Local ainda não divulgado mas o site do evento - ainda em versão não definitiva - terá todas as informações necessárias para os interessados.

    Vejo todos la
    : )

    www.flashcampbrasil.com.br

    camp flash brazil flashcampbrasil
  • Entry posted Apr 09 by Pablo Davi, tagged Development in Blog public

    Today i post other thing about AIR, how to create, read and write files using AIR, File Class.

    Basically i create a class named recFile ( com.dLibs.air.recFile ) that you can download by SVN using the link : http://asdatalibs.googlecode.com/svn/trunk/

    How to use this class ? So simple, you will create the recFile object and after that will set what the string you want record into this file like show bellow:

    var recfile:recFile = new recFile();
    recfile.writeData = "Data to record on the file";
    

    For more info access the blog post at the : http://blog.des84.com/2009/04/09/create-write-and-read-file-using-air.des84

    air, file, record, data
  • Entry posted Feb 15 by Pablo Davi, tagged Development, Rich Internet Apps, Video in Blog public

    Hi for all .. here i will explane a little bit of how to use the videoPlayer class of dLibs classes. It support:

    • Support HD (h.264)
    • Play and Pause button together;
    • Mute button;
    • Seek bar and loaded bar;
    • Time played and total time of video.

    See the code bellow, it will create a video player and other controlls like play and pause button, mute and seek bar, you can see the sample working in my blog post http://blog.des84.com/2009/02/10/video-class-in-actionscript-3.des84

    package
    {
            import flash.display.MovieClip;
            import flash.events.MouseEvent;
            import com.dLibs.video.videoPlayer;
     
            public class main extends MovieClip
            {
                    private var videoObject:videoPlayer;
                    private var videoURL:String = "http://adobe.edgeboss.net/download/adobe/adobetv/flasher_magazine/issue_1/issue1.mp4";
                    private var videoWidth:uint = 700;
                    private var videoHeight:uint = 400;
                    private var videoStart:Boolean = false;
     
                    public function main():void
                    {
                            videoObject = new videoPlayer(videoURL,700,400,false);
                            videoObject.addBuffer           = newBuffer;
                            videoObject.addPlayPause        = playPause;
                            videoObject.addMuteSound        = muteIcon;
                            videoObject.addDuration         = seekControll.theTime;
                            videoObject.addSeek             = {progress:seekControll.seekProgress, loader:seekControll.seekLoader};
                            newVideo.addChild(videoObject);
     
                            // @ Change status of playPause Button
     
                            playPause.addEventListener(MouseEvent.CLICK, changePlayPause);
                    }
     
                    private function changePlayPause(m:MouseEvent):void
                    {
                            if ( m.currentTarget.currentFrame == 1 )      { m.currentTarget.nextFrame(); }
                            else                                                                               { m.currentTarget.prevFrame(); }
                    }
            }
    }
    
    as3 video class dlibs augo goias flash cs4
  • Entry posted Feb 07 by Pablo Davi, tagged Development, Rich Internet Apps in Blog public
    PROBLEM

    Always when execute the AIR app we can connect with the database file and create the same table and this may do loose data.

    SOLUTION

    The simple way to resolve it is verify if the table is created into database file using a simple SQLite instruction IF NOT EXISTS

    DETAILED DESCRIPTION

    One way to resolve this problem is the code bellow. First function only connect with the database.db and the second function will create the table into database. A normal way to create one table, with out verify if the table alread created into database.db, using SQLite instructions is only CREATE TABLE, but it will create always when run app the table. Using IF NOT EXISTS we can resolve it.

    private function init():void
    {
            conn = new SQLConnection();
            try
            {
                     var dbFile:File = File.applicationStorageDirectory.resolvePath("database.db");
                     conn.open(dbFile);
            }
            catch (error:SQLError)
            {
                    trace("Error opening database");
                    trace("error.message:", error.message);
                    trace("error.details:", error.details);
                    return;
            }
            createTable();
    }
     
    private function createTable():void
    {
            createStmt = new SQLStatement();
            createStmt.sqlConnection = conn;
            var sql:String = "";
            sql += "CREATE TABLE IF NOT EXISTS rssURL (";
            sql += "        id              INTEGER PRIMARY KEY AUTOINCREMENT,";
            sql += "        postName        TEXT,";
            sql += "        postURL         TEXT,";
            sql += "        postText                TEXT";
            sql += ")";
            createStmt.text = sql;
            
            try
            {
                    createStmt.execute();
            }
            catch (error:SQLError)
            {
                    trace("Error creating table");
                    trace("CREATE TABLE error:", error);
                    trace("error.message:", error.message);
                    trace("error.details:", error.details);
                    return;
            }
    }
    
    Actionscript, SQLite, AIR
  • Entry posted 12/26/08 by Pablo Davi, tagged Design, Development, Interactive Experience in Blog public
    O *Adobe Group Goiás* está querendo saber quais são seus anseios e o que deseja com o grupo. Estamos fazendo o *cronograma e planejando* os encontros e para isso vamos precisar de você: deixe sua opnião com o conteúdo que você está procurando ou esperando agregar a você. Com sua ajuda o grupo irá crescer e fazer uma unificação de conhecimentos muito maior dando oportunidades de grandes profissionais aparecerem. O grupo está aqui para entre outras coisas: * Busca de informações e tecnologias * Busquem e ofereçam trabalhos * Troca de informações com outros profissionais * Encontros mensais para palestras e mini cursos e muito mais. Grande abraço a todos e usem o grupo sem moderação.
    encontros augo cronograma planejamento
  • Entry posted 12/23/08 by Pablo Davi, tagged Development in Blog public
    Hi for all, the AUGO (Adobe User Group Goiás - Brazil) will show one project make by 7Mares Midia Digital, Actionscript Programmer Pablo Davi and PHP Programmer Marcell (Equylybra). AMF ( Action Message Format ) is a binary data to be loaded into Flash using AS2 and AS3. Flex Service data (AMF3) and Flash Remoting (AMF0) and to install and implement this no need use nothing extension, only upload amfphp folder and done. This is my first project using AMFPHP and have an incredible performance to response all these requests. Athletics is a Gym in Goiânia/Goiás. The URL is : http://athletics.com.br
    amfphp as3 actionscript3 flash php

AUGo Feed Reader

  • DES 84 - Blog of DES84 WebsiteGaleria de imagens com AS3: FullGallery - Nov 18

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    Hi Geral, depois de muito tempo e muitas mudanças na vida estou de volta escrevendo um novo post sobre alguma coisa que eu já deveria ter feito a muito tempo ehehe: uma galeria de imagens decente. Estive pesquisando algumas coisas sobre estrutura de navegação e formas de deixar o codigo As3 mais fácil de trabalhar, [...]

  • DES 84 - Blog of DES84 WebsiteFlash CS5 on FOTB - Sep 23

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    A great preview about new version of Flash CS5 with integration with Flash Builder, reading custom classes and so much more. Play the video bellow and have fun. Adobe Flash CS5 Viper presented on FOTB 2009! – www.CS5.org from Adobe CS5 on Vimeo.

  • DES 84 - Blog of DES84 WebsiteCarregando imagens em AS3 sem usar a classe Loader() - Sep 22

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    Depois de tanto ouvir acabei voltando a escrever no blog em português, mas isso acredito que é o que menos importa até mesmo porque estamos ali meio a meio com os americanos em quantidade de acessos no blog mas com muito mais tempo online para os brasileiros, então ponto pra gente. Bem vou falar hoje de [...]

  • DES 84 - Blog of DES84 WebsiteFlash Camp Brasil - Sep 15

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    Galera interativa, é isso mesmo que vocês leram no titulo do post. Quem dá sempre uma olhada no blog do Lee Brimelow viram que haverá ainda nesse ano em países próximos ao Brasil como Chile, Argentina, Peru entre outros o Flash Latin Tour onde ficamos de fora por questões aparentemente técnicas. Mas o bom de [...]

  • DES 84 - Blog of DES84 WebsiteGreenSock Tweening Platform v11 Beta - Jul 17

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    Yes, GreenSock Tweening Platform v11. Beta, really but awesome. The first, and the best, thing to me is Timeline (Lite/Max) that can do really good animation sequence. On the heels of releasing the huge v10 update that introduced the plugin architecture, I’ve been hard at work on an even bigger release that delivers quite a few [...]

  • DES 84 - Blog of DES84 WebsiteFrameworks for Flash: 15 awesome to inspire you - Jul 14

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    From Flashden: “As more and more developers turn to ActionScript 3, more and more AS3 frameworks appear to be popping up to assist the Flash community. Frameworks are basically reliable libraries of code that you can use to rapidly deploy a project while also streamlining common tasks. Think of them as a way to help develop [...]

  • DES 84 - Blog of DES84 Website5 free Rainbow Live licences to give away - Jul 13

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    Code and Visual has 5 free Rainbow Live licences to give away to the 5 best Rainbow Live tutorial entries. For a limited time you can trial a fully functional installation of Rainbow Live on any server you choose by using the Domain Key “tutorialcompetition”. This Domain Key will remain valid for the duration of [...]

  • DES 84 - Blog of DES84 WebsiteRainbow Live XML Editor + CMS - Jul 10

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    Rainbow Live XML Editor makes editing easy and full online with a simple Flash interface, multiple users and so much more. With Rainbow Live you can edit your @attributes, CDATA, upload your imagens and create thumbnails easely from your computer to server in seconds. Today you have two choices, Rainbow XML Editor and Live version, the [...]

  • DES 84 - Blog of DES84 WebsiteSVN with large files - Jul 09

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    Hi guys, when we work with Flash for web sites or AIR applications is so easy use SVN to save and compare documents online or in your own local network, but when your job include large files – something near 3GB – like HD videos, After Effects video format and others, you will have some [...]

  • DES 84 - Blog of DES84 WebsiteNew Adobe Browserlab - Jun 03

    Source: DES 84 - Blog of DES84 Website by Pablo Davi

    A new way to test your web project using cross browser and operating system is Browserlab by Adobe.  Now you can put your project URL and see full page using a lot browsers with Windows, Mac OS, Linux and others. If you alread have the Adobe ID you may go to Adobe Browserlab – link bellow [...]

Active Discussions

No results

Assorted Media Gallery Posts

No results

Recently Posted References

No results

Search Group Posts

Contact Us

No results

Members

  • 1-17 of 17

Sponsors

No results

Recently Posted Job Listings

No results

Adobe Announcements

  • We made a big change to the Adobe Groups homepage today. Now, when you log in, you'll see a list of all groups that you have joined right there on the page.

    No more bookmarking groups or having to go to your profile page to see the full list!