[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread johnlukemills
If what you want to do is deploy a web service on your server, the simplest way by far is to use ColdFusion. The Cfcomponent from the ColdFusion 8 developers guide is all you need. cfcomponent cffunction name = echoString returnType = string output = no access = remote cfargument name = input

[flexcoders] Re: Overriding Combobox and ListBase

2008-09-26 Thread johnlukemills
Hi Shuan, Your suggestion works great. It turns out that it's keyDownHandler that really needs to be modified, but so what. Thanks a bundle, John Luke Mills

[flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread johnlukemills
I found this lying around. It might work. package com.one2one.cliex.util{ import mx.utils.Base64Encoder; import mx.utils.Base64Decoder; import flash.utils.ByteArray; public class B64String { public static function encodeString(plainString:String):String{

[flexcoders] Re: Error after 2.0.1 update

2007-03-16 Thread johnlukemills
I had lots of strange problems after the 2.0.1 update. The solution was to uninstall everything and install the new download that starts as 2.0.1. JLM