[flexcoders] Flex Post with Special Characters

2006-12-21 Thread hugocorept
Here is the thing, i have a Flex Application that POST into a PHP Script. Real Simple, the script send a Email with the data from the Flex. My Problem is: What i have to do , in Flex our in PHP Script, so that charters like ç , á , ~ can be send in the Email correctly. At the moment, if the

[flexcoders] Re: Flex Post with Special Characters

2006-12-26 Thread hugocorept
--- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Here is the thing, i have a Flex Application that POST into a PHP Script. Real Simple, the script send a Email with the data from the Flex. My Problem is: What i have to do , in Flex our in PHP Script, so

[flexcoders] Save DataGrid

2007-01-14 Thread hugocorept
Hi every flex addicted:P Does anybody knows a way to save the changes realized to a dataGrid? DataGrid have editable=true , the goal is to save to a MySql, but all ideias are welcome to find a way... My ideias are, use a PHP script to receve the data..but how?

[flexcoders] Re: Flex Post with Special Characters

2007-01-16 Thread hugocorept
[1] = 'A'; $text=preg_replace($patterns, $replacements, $text); see http://tr2.php.net/preg_replace for more info about preg_replace - Original Message From: hugocorept [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, December 26, 2006 9:00:55 PM Subject: [flexcoders

[flexcoders] Connect and Retrieve from MS SQL Server 2005

2007-03-28 Thread hugocorept
Hello all, In your opnion, witch is the simple/best way to connect a MSSQLServer 2005. I prefer java-less.. Thank you , Very Much!

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-04-03 Thread hugocorept
requirements) and ColdFusion 7 ( still in research but seams pretty good) Point 3 Fluorine project use witch languague ? Asp.NET? Thanks For All --- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Hello all, In your opnion, witch is the simple/best way to connect

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-04-05 Thread hugocorept
--- In flexcoders@yahoogroups.com, hugocorept hugocore@ wrote: Hey many thanks Point 1. So, you in general point the new feutures of SQL Server Web Services. Is that suported by either Express and Full Version? Can someone support me with some tutorials of any kind

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-04-09 Thread hugocorept
, hugocorept [EMAIL PROTECTED] wrote: Hello all, In your opnion, witch is the simple/best way to connect a MSSQLServer 2005. I prefer java-less.. Thank you , Very Much!

[flexcoders] WebService in AS

2007-05-18 Thread hugocorept
Hello you flexers Well, i have created an WebService in AS, because in the mxml tag way, the WSDL derived from an TextInput does NOT WORK.. :( sad... so i create this simple AS but i cant get the lastResult successful, Always give me null in the beginning, click again, and then the result,

[flexcoders] Re: WebService in AS

2007-05-19 Thread hugocorept
of webservice trace(event.result ); } Dan Freiman nondocs http://nondocs.blogspot.com On 5/18/07, hugocorept [EMAIL PROTECTED] wrote: Hello you flexers Well, i have created an WebService in AS, because in the mxml tag way, the WSDL derived from an TextInput

[flexcoders] Re: WebService in AS

2007-05-20 Thread hugocorept
Oh i get it, the error has in : public function readyHelloWorld():void{ // call web service function Is Ready webService.HelloWorld(myInput.text); } correct to :

[flexcoders] Re: WebService in AS

2007-05-20 Thread hugocorept
trace(event.result); } --- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Hey thanks for the Help, that really light me! So, i write something like this.. [Bindable] public var webService:WebService

[flexcoders] BUG? On WebServices \ become nothing...

2007-05-31 Thread hugocorept
hell you flexers! How u doing..? Hey guys, do you notice that if you send blabla\loremipsum the slash vanish !? 0_o It just me .. ? Example : webservice.operation(CORE\SQLEXPRESS); The tracetarget says me: ns0:strCORESQLEXPRESS/ns0:str Am I doing something , wrong ? ... Solutions in

[flexcoders] Dates and Months Problem

2007-10-01 Thread hugocorept
Hello all, how you doing ^^ I want to get the month we are by number. Can some one explain me why is flex saying the Month we are is 9 (Setpember) day 1 ? trace(dataHoje.toDateString()) trace(dataHoje.month)

[flexcoders] htmlText to Text

2008-07-19 Thread hugocorept
Hi guys, Does somebody have an idea to convert htmlText to text, it means remove the Angle Brackets. Example: FONT ...Lorem Ipsum/FONT to Lorem Ipsum I don't know, RegExp, some String Method ? :S Thanks, Core

[flexcoders] Re: htmlText to Text

2008-07-19 Thread hugocorept
=#FF text={richText.text}/ The text in the TextArea are not formated was i wanted :) Thanks, anyway --- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Hi guys, Does somebody have an idea to convert htmlText to text, it means remove the Angle Brackets. Example

[flexcoders] sortCompareFunction - First the number's then the null's

2008-11-05 Thread hugocorept
Hi all, In my App I need a custom sortCompareFunction to resove my problem. My problem is, if I have a column with 1, 2, 1, 3, null, 2, null', by default flex sort like this null, null, 1, 1, 2, 2, 3 or 3, 2, 2, 1, 1, null, null. It means, first cames the null then the values. I need 1, 1, 2, 2,