Posts Tagged ‘flex’

GeoIP tester

As you might have noticed, i added a tiny map to the site. The flex app first gets your current location (via geoip from the server) and displays a red dot. Then it gets the locations of all the previous visitors and displays the green dots. On mouseover, the country and city (where available) are [...]


GeoFeeder Updates

Now that my code signing certificate is “gone”, i have to start a new line of development for my “products”. First to go is GeoFeeder: After some interest from Switzerland, i decided it was time to do an update. More or less it’s just a move back to a self-signed certificate, a first port to [...]


Flex Builder install under Windows 7 (64-bit)

After getting a new laptop and after upgrading to Windows7 (64-bit) i tried to migrate my current work-setup for eclipse and my workspaces to the new machine. Also upgraded to the newest eclipse version (3.6). Wasn’t really watching the install, but realized that the installer window went “black” after a while and the install went [...]


Code-signing AIR applications and migration

Adobe granted me a free code signing certificate (for 1 year): Things are a little less “red” now. The first mail stated i should go to Thawte (which i had used for webserver certs multiple times) and apply for a cert. Ok, setup an account, added all info, submitted on 21st of february.  On 23rd [...]


flex: Making a percentage-sized VBox scroll

If you’re using a VBox with a pixel height, it will scroll as expected. If you’re using a percentage sized VBox, it won’t scroll when it’s content grows in size: the scrollbars will be “pushed somewhere up the component hierarchy”. To make it scroll, set it’s minHeight=0. Found this here.