SeattleFUG Project: Extending the Code Jam Project

Last thursday a bunch of members of the User Group gathered around and decided that a good way to learn about new tech was to just do it, and considering that I am associated with a project that is very close to 1.0, and has set goals for 2.0, we decided to work on the ResourceLocator that was developed at the San Jose 2008 Flex 360 Charity Code Jam.

So, the code isn’t there yet, we’re waiting for 1.0, which should be finished in the next couple weeks. But I’ve invited all of the members that want to participate to take a look at the code, and if they get really excited about it, they can even contribute and fix one of the bugs that are still outstanding. This invitation is NOT restricted to my user group members, anyone can join, just contact me (dusty (dot) jewett -at- gmail (dot) com).

One thing I promised the members was a bit of guidance, so I’m linking to Laura’s Flex 360 talk about Mate. Unfortunately, the talk on Degrafa hasn’t been posted yet, but there are plenty of examples on the site.  AMFPHP has been around for a long while, but I’ve enjoyed Sephiroth’s tutorials. I’ll be explaining specific things in our user group meeting on the 13th, and while we don’t have the cool setup that Flex360 did, I should be able to come up with some sort of recording of it.

Singleton-esque, self-aware ‘Kind’ Classes

I recently started a project of converting an older flex app to an AIR app. This app has to scan through a bunch of files, and classify certain types of media based on the location and file extension. Then it saves a manifest of the media to an xml file that can be loaded (without scanning every time).

I started out with a Kind class (think CollectionEventKind) that had the types as strings… but then I had to figure out how to store the regular expressions to make them easily accessible… Then I remembered that while everyone just uses Strings, static const vars can be any class, including it’s own class. So I came up with this class that you can use constants, or locate a specific constant. Code after the fold.
Continue reading →

Launching Files from Adobe Air

So, this takes the long way around, and is not a good solution for mass-distributed applications, but if you’re lucky enough to have a managed environment that you can push installs down the pipe, this is a way to let your users launch files from AIR.

First, download Switchboard.

Second, add Switchboard to your libs.

Third, use this script:

private function openFile(f:File):void{
Client.init(super.applicationID);
var message:Message = new Message();
var script:String = "var runScript = function(fileName){\n" +
" var theFile = new File(fileName);\n" +
" if(!theFile.exists) return false;\n" +
" theFile.execute();\n" +
"}\n" +
"runScript(\"" + f.url.substr(7) + "\");";
message.body = script;
message.target = "bridge";
message.onError = function( msg: Message ) : void {
// put the error message into the result box
trace("Error: " + msg.body);
}

message.send();
status = “Opening ” + f.name;
Client.close();
}

This opens up bridge, then uses Bridge to run the “execute()” command that ExtendScript (or whatever they’re calling it) has available.

Now… while this is neither simple or elegant, it gets the job done. I’d rather use Merapi, but my app has to ship before Merapi can go stable.

Flex Code Jam – Now with ∞ more open source code.

The Flex Code Jam Google Code Project is officially LIVE!

I’ve added all of our source code to the repository, including the code from the Seattle 2007 Code Jam (which is unfortunately unfinished…).  We’re heading towards a 1.0 release for the Second Harvest food bank, then after 1.0 we’ll be abstracting some of the pieces, so that it can be a plug-n-play widget for any organization that wants to offer a slick location-based-search. (Though it WILL be tailored to non-profits)

The code is free to download and try out.  We don’t have documentation on how to set up the AMF-PHP yet, but it’s coming… it shouldn’t be too hard, however. We have 7 open tickets as of this post, so feel free to dig in and help us release 1.0.  If you work on one of the tickets, let me know… I’ll add you to the project as soon as you have code to commit.

flash.system.Capabilities

Ever need to know if you’re running in debug mode (programmatically)? What screen resolution the user is running?

flash.system.Capabilities has everything you need.

<mx:Canvas visible=”{Capabilities.isDebugger}” /> will give you a canvas that is only displayed when you are debugging. You can check the flash player version, check to see if audio is enabled, many other things that can really tailor your application to enhance the user experience.

Debugging AIR Drag and Drop

So… you thought you’d be cool and throw a break point on some DRAG_ENTER code, but after you’re done debugging, you’re left with a little floating icon on your desktop.

Debugging Drag and Drop

Never fear, you don’t have to restart your entire computer, open up Taskmanager and you’ll see an application called ‘Drag’. You can kill this application and the icon will disappear. If you don’t see this app, close Eclipse and find the process called ‘adl.exe’ and kill this process.

Restart averted, Yay!

BlazeDS + Flex – First Draft

Welcome SeaFlex’ers and other MXNA visitors. I haven’t gotten around to finishing up my article, but I’ve posted it on my BlazeDS + Flex page 

It’s really a draft right now, you’ll see strikeouts and everything.  Most of the content is in there, but I need to add a page or two about debugging the project, as getting an Ant-built project to debug properly in Flex can be a pain.  I’ll also be adding some info about how to debug your java code at the same time you are debugging your flex code.

Take a look, and feel free to leave comments.

BlazeDS + Flex, From a Java Newbie’s Perspective (Background)

I’ve recently committed to speaking at the Seattle Flex User Group meeting in Feb, and in preparation, I will be posting my ‘notes’ here. Hopefully I will be able to take you from knowing no java to being able to have a simple yet useful application working in BlazeDS. This application will utilize Java, Hibernate and MySQL to power the Resource Manager graph from ILOG Elixir. For Java newbies like myself, I can recommend the following reading materials (I recommend signing up for OReilly Safari):

**update** I’ve moved everything to a static page, view it here: BlazeDS + Flex
Continue reading →

Adding Build, Build Date, Revision and Revision Date in your Flex App

I have recently started branching my code out for multiple customers, and I needed an easy way for the Project Managers to be able to see more info about the deliverables, and be able to send that data back to me for bugfixes, feature requests, etc…

I’ve been using Ant for a while, it’s great for packaging up my Flash/AS2 applications, without including the .as, .fla, swd, etc.. files. And since so many java devs use SVN, I knew there had to be some sort of integration between the two. I eventually stumbled upon SVNANT, but was unable to get the 1.0.0 working on my machine. I found many references to 1.1.0, however, so I downloaded the source and compiled it (Thanks to Jeff at Alagad). This worked right away for me, so with the help of this post from Howard Scholtz, I was able to add in revsion #/time directly into the app without using svn keywords!

Code included after the break. Continue reading →

Accessing items created by a Repeater

So, I’ve got some components that will need to be updated by non-programmers, so in the interest of keeping things easy to understand for them, I’m using Repeaters when I need to create multiple items based on Data (rather than creating my own component that creates these items itself through the data, which would be much more efficient, and less vexing).

So, using Repeaters creates many issues you don’t usually come in contact with. Here are some of the things I’ve run into, and the workarounds.

  • Repeater.currentItem not available in the click handler
    • Same as with a list and an ItemRenderer, but because I just need a button, and nothing fancy, this is annoying. I got around this by setting the “data” property (FB won’t suggest data as a property, but it’s there!) to Repeater.currentItem.
  • Repeater isn’t on the display list, and doesn’t have an array of ‘children’, so it’s hard to get at the items that were created.
    • A mysterious feature of Repeaters is that if you set the id of the items created, AS3 will see an array based on that ID
      This means that if I use <Button id=”buttonArray” /> I will be able to do a “for each(b:Button in buttonArray)” loop to get access to those buttons. This works just like the groupName property of RadioButtons.
  • Button property ’selectedField’ only gets the state, and does not set the data’s value when ’selected’ is changed.
    • I’m not sure how I feel about this. Part of me expects that when the button changes to ’selected’, the data’s field should be changed too. Then the pedantic, MVC Loving part of me kicks in and wants to strangle anyone who lets the interface directly change the model… so I end up half-strangled and completely exhausted.

buy viagra online prescription group buy viagra online u buy viagra online uk buy viagra online web meds buy viagra online without prescription buy viagra onlines buy viagra or cilas buy viagra order viagra buy viagra other drug online buy viagra over the counter buy viagra over the counter us buy viagra overnight buy viagra per pill buy viagra pharmacy online buy viagra pill buy viagra pill online buy viagra pills buy viagra porno at maygreat org buy viagra powered by phpbb buy viagra prescription buy viagra prescription america buy viagra prescription america carisoprodol buy viagra prescription online buy viagra price drugs on buy viagra removethis buy viagra s diary buy viagra s journal buy viagra safeway pharmacy buy viagra sale buy viagra securely online buy viagra soft tabs buy viagra softtabs buy viagra the best quality pills buy viagra toronto buy viagra uk buy viagra ups buy viagra us pharmacy low prices buy viagra vaniqa prescription buy viagra viagra buy viagra viagra online buy viagra where buy viagra with discount buy viagra with paypal buy viagra without a perscription buy viagra without a prescription buy viagra without prescription buy viagra without prescription online pharmacy buy viagra without prescription pharmacy online buy viagra woman buy viagra xanax buy viagra zenegra cheap canadian viagra cheap cheap deal pill viagra viagra cheap cheap discount sale viagra cheap cheap herbal viagra viagra viagra cheap cheap viagra cheap cheap viagra viagra cheap cialis viagra cheap citrate generic sildenafil viagra cheap deal deal pill viagra cheap deal discount price viagra cheap deal discount viagra viagra cheap deal viagra cheap drug generic generic viagra cheap drug online prescription viagra cheap drug retin viagra wellbutrin cheap drug viagra cheap drugs viagra cialas cheap followup post viagra cheap foreign generic viagra cheap free price viagra cheap free viagra cheap free viagra viagra cheap gen viagra bi cheap genaric viagra kamagra cheap generic 50 mg viagra cheap generic drugs viagra cialis levitra cheap generic india viagra cheap generic kamagra kamagra uk viagra cheap generic online viagra cheap generic overnight viagra cheap generic pill ultram ultram viagra cheap generic substitute viagra cheap generic viagra cheap generic viagra 1.00 cheap generic viagra co uk cheap generic viagra from usa cheap generic viagra no prescription cheap generic viagra no script cheap generic viagra online cheap generic viagra overnight delivery cheap generic viagra substitute cheap generic viagra substitutes cheap generic viagra uk cheap herbal sale viagra viagra cheap herbal sale viagra viagra viagra cheap herbal viagra cheap herbal viagra viagra cheap herbal viagra viagra viagra cheap india viagra cheap inexpensive viagra cheap kamagra uk viagra cheap kamagra viagra cheap man viagra cheap meltabs online viagra cheap meltabs viagra cheap mexico viagra cheap molde ticket viagra cheap no prescription viagra cheap online generic viagra cheap online order viagra cheap online pharmacy viagra viagra cheap online pill price viagra viagra cheap online pill viagra cheap online price price viagra cheap online purchase viagra cheap online sales viagra cheap online softtabs viagra cheap online viagra cheap online viagra viagra cheap online viagra viagra viagra cheap order prescription viagra cheap order site viagra cheap overnight viagra cheap pfizer viagra cheap pharmaceutical viagra cheap pharmacy viagra cheap pharmacy viagra cialis levitra cheap phizer viagra cheap pill pill sale viagra cheap pill viagra cheap prescription viagra cheap prescription viagra without cheap price viagra cheap quality viagra cheap referrers total viagra cheap sale viagra cheap site viagra cheap soft tab viagra cheap soft viagra cheap source viagra cheap uk viagra cheap viagra cheap viagra 25mg cheap viagra ambien generic cananda order viagra with my checking account order viagra without a prescription order viagra without prescription cheap viagra at online pharmacy cheap viagra bi cheap viagra buy pharmacy online now cheap viagra canada cheap viagra cialis cheap viagra cialis india cheap viagra direct cheap viagra discount cheap viagra discount viagra buy viagra cheap viagra fast shipping cheap viagra from pfizer cheap viagra generic cheap viagra generic paypal cheap viagra in the uk cheap viagra in uk cheap viagra india cheap viagra kamagra cheap viagra new zealand cheap viagra no prescription cheap viagra no presrciption 50mg cheap viagra nz cheap viagra online cheap viagra online a href cheap viagra online order viagra now cheap viagra online pharmacy online cheap viagra online prescription cheap viagra online uk cheap viagra uk cheap viagra uks viagra and coupon cialis 20 cialis 10mg cialis 10 cialis blindness cheap viagra viagra cheap viagra without a prescription cheap viagra without prescription cheap websites for viagra cheaper cialis levitra viagra cheaper viagra cialis 20mg cialis 24 cialis 30 cialis 30mg cialis 32 cialis 5 cialis 50mg cialis 5mg cialis 1 cheapest online viagra cheapest place buy viagra online cheapest place to buy viagra cheapest place to buy viagra online cheapest prescription viagra cheapest price for generic viagra cheapest price for viagra cheapest price on viagra cheapest price viagra cheapest prices for viagra online cheapest prices on generic viagra cheapest uk supplier viagra cheapest uk viagra cheapest viagra cheapest viagra and regalis cheapest viagra anywhere cheapest viagra cheapest generic viagra home cheapest brand viagra cheapest cheap viagra cheapest generic price viagra cheapest generic silagra viagra cheapest generic substitute viagra cheapest generic viagra cheapest generic viagra and canada cheapest generic viagra and cialis cheapest generic viagra and cialis pills cheapest generic viagra sent overnight cheapest in uk viagra cheapest line viagra cheapest viagra generic substitute cheapest viagra homepage cheapest viagra in the uk viagra cailis viagra canada prescription viagra canada price viagra canada satisfaction guarantee viagra canadaian prices viagra canadian viagra canadian prescriptions viagra canadian price shipped buy and purchase viagra online buy australian viagra buy buy cheap medved viagra buy buy cheap viagra buy buy medved viagra viagra buy buy online sale viagra viagra buy buy online viagra viagra buy buy sale viagra viagra buy buying sale viagra buy cailis viagra singapore buy can reply viagra buy canada in viagra buy canada viagra buy cheao cgeap kamagra uk viagra buy cheap cheap kamagra uk viagra buy cheap deal pill viagra cheapest viagra in uk cheapest viagra in uk che cheapest viagra in uk cheap cheapest viagra on line cheapest viagra on the internet cheapest viagra on the net cheapest viagra online cheapest viagra online in the uk cheapest viagra online pharmacy cheapest viagra online plus zenegra cheapest viagra overnight cheapest viagra price cheapest viagra prices cheapest viagra prices uk cheapest viagra substitut viagra calgary viagra calias viagra can viagra canada viagra canada generic viagra canada online viagra canada online pharmacy viagra canada pharmacy discount viagra drug discount viagra europe discount viagra generic discount viagra in the usa discount viagra mastercard discount viagra offers discount viagra online discount viagra or cialis discount viagra order viagra discount viagra discount viagra perscription drug discount viagra pharmacy online discount viagra pills discount viagra prescription drug discount viagra sale discount viagra sale online discount viagra sales discount viagra sales online discount viagra uk discount viagra viagra discount viagra wholesale stores discount pharmacy order 50mg viagra order cheap viagra order cheap viagra fas order cialis and viagra order discount viagra order forms for buying viagra order generic viagra order generic viagra online order mexican viagra order order viagra order pfizer viagra with mastercard order phizer viagra order prescription viagra order prescription viagra without order site viagra order status viagra order telephone viagra overnight delivery order uk viagra order viagra order viagra 1 order viagra air travel order viagra buying viagr order viagra buying viagra uk order viagra canada order viagra cheap order viagra cialis levitra pharmacy order viagra here order viagra international ships order viagra licensed pharmacies online order viagra now order viagra now money order viagra now viagra money order order viagra on line order viagra on-line order viagra online order viagra online a href order viagra online consumer discount rx order viagra online consumer rx order viagra online in wisconsin order viagra online no rx prescription order viagra online uk order viagra onlines order viagra or levitra order viagra overnight delivery order viagra overnight shipping order viagra prescription order viagra softtabs order viagra uk order viagra usa order viagra viagra order viagra viagra online order viagra with mastercard buy viagra and cilas usa buy viagra and overseas buy viagra at safeway buy viagra at the best price buy viagra australia buy viagra australian buy viagra bradenton buy viagra buy cheap viagra index buy viagra by pill buy viagra canada buy viagra cheap buy viagra cheap india pharmacy buy viagra cheap online buy viagra cheap prices over sea generic viagra over the counter drug to viagra over the counter viagra in europe over the counter viagra london over the counter viagra substitute over the counter viagra substitutes buy 100 mg viagra viagra and cialas viagra and cialis viagra and cialis and viagra and cialis cheap viagra and cialis together viagra and flomax viagra and generic viagra and generic drug viagra and hair loss viagra and hearing loss viagra br viagra brand viagra brands viagra brazil cipro 20 cheapest viagra tablets