Adobe y 4pple
by Alberto González on Apr.16, 2010, under General
Creo que Apple debe ser más agradecido con sus usuarios, después de todo, muchos de ellos son diseñadores que se forman utilizando productos de Adobe y sueñan con trabajar en una computadora de Apple.El hecho de cerrar las puertas en el iPhone/iPad a la plataforma Flash hace que definitivamente sea reconsiderado el hecho de adquirir uno de sus dispositivos y aunque los dispositivos son buenos, definitivamente no son los únicos en el mercado y otras marcas que colaboran con Adobe Systems Inc. dentro del Open Screen Project saben lo que significa el permitir contenido Flash dentro de sus dispositivos, conocen la cantidad de contenido que existe con esta tecnología y el beneficio que trae para ellos.
Conference and lab coming soon [ Oct - Nov 09 ]
by Alberto González on Oct.18, 2009, under Events, General
Hello people.
I just want to tell you about a conference and lab I will be giving in a few weeks.
The first one is a Lab I will be giving at an event called Workshop camp in Mexico City.
I will show how to create an application and make it available as a web application, desktop application and as a mobile application.Also I will talk about some Flash Platform features that are coming in AIR, Flash Collaboration Services and Flash Player.There will be many other labs about other technologies and platforms: iPhone development, Silverlight, Flex, Ruby, CSS and more.
Date: Sunday, October 25th, 2009.Time: 1st set => 10:00 – 13:00, 2nd set => 14:00 – 17:00 (I’ll be in this one)Place: Ked, Mexico CityMore info & website: http://barcamp.org/WorkshopCampMexico
The second event is named Campus Party Mexico and I’ll be giving a conference about development options in Flash Platform.
I will talk about the programming languages related to flash platform products. The available SDKs, programming IDEs, runtimes and much more.The conference I will give is part of a great event where many technology enthusiast will share experiences and knowledge for 5 days. Tim Berners will give the opening and the main conference. I strongly recommend to attend to this event.
Date: November 12th – 16th, 2009.Place: Expo Bancomer, Mexico City.More Info & Website: http://www.campus-party.com.mx/
Well, this is all for now. See you soon.
[MAX09 - 01] AIR 2.0, New features
by Alberto González on Oct.13, 2009, under Adobe AIR, New Releases
In Adobe MAX I could attend many many conferences and I’d like to share the info.
In this first post I will tell you about the new features that are coming with AIR 2.0
New AIR and Flash Player versions on July 2009
by Alberto González on Aug.02, 2009, under Adobe AIR, New Releases
As you may know there were discovered some critical vulnerabilities in Flash Player, Adobe AIR, Adobe Reader and Acrobat. These were important and forced Adobe to update the products as soon as possible.
If you want to know the details of these vulnerabilities, you can read the next article http://www.adobe.com/support/security/bulletins/apsb09-10.html
A new version of Flash Player was released the last week. Actually there were two versions: Flash Player 10.0.32.18 and 9.0.246. Both of them can be downloaded directly from the Flash Player Downloads page. There, you can get debug and projector versions of the Flash Players. As you can see, Adobe also updated Flash Player 9 instead of just updating Flash Player 10, this was because if you can not have Flash Player 10 installed in you machine for any reason, you will also be protected if you install the new Flash Player 9.
Adobe also released a new version of Adobe AIR, the 1.5.2.8870 version. You can download this version directly from Adobe web site. Besides the fixed vulnerabilities in this new version, there were released more features like the isPerUser property in LocalConnection instances and, for Flash Player 10.0.32.18 and 9.0.246, the modification made to FileReference.save when running Internet Explorer in protected mode. You can see the details in this page http://kb2.adobe.com/cps/497/cpsid_49735.html.
Talking about AIR 1.5.2 if you want to use the new features and code hinting you should download the new SDK also released (1.5.2) and change it in Adobe Flex/Flash Builder and Adobe Flash installations. You can get the SDK here http://www.adobe.com/cfusion/entitlement/index.cfm?e=airsdk. Also don’t forget to change the AIR version in the XML descriptor file of you new AIR application.
That’s all for now.Regards.
Working with Flash and Flash Builder in the same project
by Alberto González on Jul.27, 2009, under ActionScript, Adobe AIR, Adobe Flash, Adobe Flex, Coding, Tips & Tricks
This article shows how you can configure Adobe Flash and Flash Builder to work in a project. Let’s start.
I created this post ’cause I love the programming tool of Flash Builder but there are projects that need to be created mainly in Flash. So, following these steps you will be able to have all the coding advantages of the Eclipse platform and still use Flash for the visual part of the project.
1) Removing the Build Automatically option in Flash Builder: First open Adobe Flash Builder and before create any project or anything just remove the Build Automatically option located under Project -> Build Automatically. This will avoid Flash Builder to compile the code every time you save a file.
2) Create an ActionScript project in Flash Builder: Let me tell you that the project structure created by Flash Builder is very useful so we’ll try to keep it. Select File -> New… -> ActionScript project. Chose a name for the project and the location, just remember that this will be the location where all the files, including FLA and asset files, will be stored.Click Next and here we will change two fields. First, for the “main source folder” we will type src/classes and for the “output folder” it will be deploy. These two changes will help us with the Flash / Flash Builder project.You can now click Finish.

3) Change the super class of the main class to be MovieClip: This is because we’ll use this main class as the Document Class in the Flash file and if you don’t change the super class to MovieClip yo won’t be able to invoke methods like gotoAndPlay, gotoAndStop, nextFrame, stop, etc. If you don’t need to invoke this kind of methods you can leave Sprite as the super class.
package{import flash.display.MovieClip;public class MyApplication extends MovieClip{public function MyApplication(){}}}
4) Create the Fla file in Adobe Flash and place it in the right location: Open Adobe Flash, create a new Flash file and save the file under a folder named /flas that has to be at the same level of the folder named /classes. This folder is, remember, in the Flash Builder project.Once you save the file, change the publish settings in Flash and for the exported swf point to the folder named /deploy that is two levels up the folder where the fla file is stored.Export the swf, refresh the Flash Project Folders in Flash Builder and see if your project looks like this.

5) Set up the classpath in Flash and set the main class of the Flash Builder project to be the Document Class in the Flash File: Go to Publish settings in Flash, in the Flash tab locate the “Settings…” button under the script section. Once there, set the source path to be ../classes/ and then, in the field “Document Class” type the name of the class generated by Flash Builder.
6) Final steps… Run, Debug and Profile configurations in Flash Builder: Go back to Flash Builder an press the little black arrow located just next to the Run button, yes the one that seems like a music stand play button. Select Run configurations… and then we just have to change the files that Flash Builder will run when we press the Run, Debug and Profile buttons. Locate Web Application in the left side, select it and the press the “New launch Configuration…” button located in the top side of that panel. Then type any name for the configuration and the most important step is to change the files that Flash Builder will launch. We do this unchecking the option “Use defaults” in the “URL or path to launch” section and, for the new names, we’ll just change the name of the file, not all the location. We have to point to the html or swf generated by Adobe Flash located in the same folder name /deploy. We have to change the 3 fields (one per action). If we do this step right, when we press “Run”, Flash Builder will launch the files generated and compiled by Adobe Flash.
7) Enable the debug mode in the fla file: If you try to debug or profile the swf file from Flash Builder after doing the previous step, you’ll notice a message saying that the swf file was not compiled for debugging. That’s true. Unlike Flash Builder, swf files generated by Adobe Flash are not for debugging by default. If we want to enable them for debugging we have to go to publish settings, once again in Adobe Flash, and in the Flash tab just enable the option “Permit Debugging”. Recompile the swf file from Flash and try to debug the Flash Builder project. You will get no errors now. Just, DON’T FORGET TO UNCHECK THE OPTION PERMIT DEBUGGING when you deploy the final project.
Unfortunately we don’t have a way to compile a fla file to a swf without Adobe Flash so, anytime you want to compile the project you have to switch back to Adobe Flash and press Ctrl + Enter to export the swf. The advantage here is that you can code in Flash Builder and use all the features it has. The main class in Flash Builder is the Document Class in the Fla file so you can control everything from that class. Also yo can create more classes and packages all from Flash Builder. Actually you will use Flash for compiling and for adding visual information with the Flash tools.
Enjoy the article and see you soon.
