Home

Follow Skinkers.

Recieve all the updates from Skinkers via email:

 

Posts Tagged ‘Flex’

3

Adding Gzip support for Flex/AIR HTTPService/URLLoader

September 2nd, 2010 | Air, AS3, Flex, Geekery, Tech | Matt Bryson

Update : Thanks to Paul Robertson for pointing out that as of AIR 2.0.2 released a couple of weeks back, there is native cross platform GZIP support in Air. However, if you need to achieve this in the 1.5 runtime for any reason, the below is still applicable!

To reduce bandwidth many servers compress HTTP responses using GZIP encoding. Pretty much all web browsers support GZIP decoding, so the actual data transfered is a fraction of the final unpacked response. Flex/Flash apps running in a web browser can take advantage of this as the browser handles the HTTP responses.

However, Flex AIR apps which do not run in a browser don’t have this luxury. By default, the headers sent in a request from AIR do not accept GZIP encoding, and even if they did, Flex / AIR runtime has no idea how to handle GZIP de-compression!!

Thanks to the Flex community however, it is possible!
Read the rest of this entry »

1

Skinkers Develop Urgent Care Dashboard for NHS

August 6th, 2010 | Air, AS3, Flex, Releases, Tech | Tim Heyes

Skinkers release cross platform dashboard built in Adobe AIR to help patients choose the appropriate care based on real-time and location-based data.

Today Skinkers announce the launch of the UK’s first digital Urgent Care Desktop Dashboard.

Created by virtue of a joint innovation venture between Skinkers, NHS Choices, Directgov and Businesslink, United Lincolnshire Hospitals NHS Trust and NHS Lincolnshire, the tool is aimed at making the choice of which NHS service to use a little easier.

United Lincolnshire Hospitals NHS Trust patients can now download the cross-platform desktop app for free from the UHLT web site (http://www.ulh.nhs.uk/for_patients/urgent_care_tools.asp) and use it to access information about getting the right treatment in the Lincolnshire area.

Read the rest of this entry »

1

How to use custom bitwise flags in Actionscript

January 12th, 2010 | AS3, Flex | Matt Bryson

The Alert class in AS3 is a good example of using bitwise flags to specify a configuration without having to set lots of separate Boolean flags.

Its also very easy to create bitflags for yourself, which save time, code and memory! Below is an example of custom bitflags as well as an explanation of how it all works.
Read the rest of this entry »

0

HTML Text in a Flex Alert box

November 13th, 2009 | AS3, Flex | Matt Bryson

A quick and easy way to render HTML text with the body of a Flex Alert box.
Read the rest of this entry »