Has anyone dealt with situations where a webservice call is indeed
completing properly, and the results can be seen in service capture, and the
raw SOAP can be seen in event.message.body, but yet the event.result is
coming through null?

 

I'm battling that very issue now.  Any advice or words of wisdom?

 

________________________________________

Jeff Tapper> Senior Consultant

digital primates IT Consulting Group R

Phone: 847.824.7800, x222 | Fax: 847.655.2867

[email protected]

 

From: [email protected] [mailto:[email protected]] On
Behalf Of shawnsvacha
Sent: Friday, January 16, 2009 12:53 PM
To: [email protected]
Subject: [flexcoders] TextEvent.TEXT_INPUT preventDefault not working on
Linux

 

Has anyone run into this before? On Linux the preventDefault event for a 
TextEvent.TEXT_INPUT event does not hide the characters entered. This works
fine on OSX 
and Windows, but not Linux. Here is example code:

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"; 
layout="absolute" xmlns:ns1="*">
<ns1:CustomTextField x="10" y="10" width="500" height="22"/>
</mx:WindowedApplication>

package
{
import flash.events.TextEvent;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.text.TextFieldType;

import mx.core.UIComponent;

public class CustomTextField extends UIComponent
{
public function CustomTextField()
{
var _customTF:TextField = new TextField();
_customTF.x = 0;
_customTF.y = 0;
_customTF.width = 480;
_customTF.height = 22;
_customTF.type = TextFieldType.INPUT;
_customTF.multiline = true;
_customTF.autoSize = TextFieldAutoSize.LEFT;
_customTF.wordWrap = true;
_customTF.maxChars = 1024;
addChild(_customTF);

_customTF.addEventListener(TextEvent.TEXT_INPUT, dontShowTextInput);

}

private function dontShowTextInput(e:TextEvent):void
{
e.preventDefault();
}
}
}

 

<<image001.jpg>>

<<image002.jpg>>

Reply via email to