[flexcoders] problem in position of datagrid table

2009-09-11 Thread Adarsh Agrawal



Hello All,
In my application i'm creating a dynamic datagrid table which i want to show in 
specific place(down of the window). i do it by using the datagrid move function 
it is working finr in my laptop but if i used my application in desktop ..table 
is appearing in some other place..how to resolve this problem please guide me.
 
one more thing how to make auto adjustable datagrid ta ble.?
 
adarsh


  See the Web#39;s breaking stories, chosen by people like you. Check out 
Yahoo! Buzz. http://in.buzz.yahoo.com/

Re: [flexcoders] SWF SWC File extensions. What they stands for..??

2009-09-11 Thread John McCormack
I think the C means compiled.
John

Manu Dhanda wrote:
 My understanding about SWF:
 SWF(Shockwave Flash) which was later changed to Small Web Format.

 SWC - ???

 Can anybody post me the extension details about swc. What it stands for?
 I know that it is an extension for library files. But, I am just interested
 in the term SWC, Ehat it stands for?

 --Manu.
   




Re: [flexcoders] Is Flex 3.4 DMV source in wrong place?

2009-09-11 Thread Tom Chiverton
On Friday 11 Sep 2009, tntomek wrote:
 Is the default zip of Flex 3.4 source in the wrong place?

Might be better asking Matt Chotin directly and then posting back here in case 
he misses it.

-- 
Helping to administratively benchmark holistic information as part of the IT 
team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

Re: [flexcoders] reading Xml excel files

2009-09-11 Thread ady
You can use localname - something on the lines of (but please do null
checks, this is just an illustration)

var xmlList:XMLList = xml.children();
xmlList = xml.children().(name().localName ==
Worksheet)[0].children().(name().localName == Row);


but if you want to check namespace and the tag name, use QName in
conjunction with NameSpace

hth's



On Fri, Sep 11, 2009 at 2:54 AM, charleswcng charlesw...@yahoo.com wrote:

 I'm writing a small app that can upload excel xml files and convert
 them into graphs. When I was using e4x to see how the data is shown,
 it didn't return anything.  It works fine if I simplified all the data
 with only
 Workbook,Row,Cell and Data.  Anyone have any idea why I
 couldn't use Worksheet.Row.Cell.Data in the complex example below?
 Also, when it is imported in flex, some of the tags are inserted with
 o:  in front like o:DocumentProperties.

 How can I read this file using e4x expression?  Please go easy on me,
 I'm pretty new to flex.




[flexcoders] AIR Badge Install fails on Macromedia Certificate Error

2009-09-11 Thread Battershall, Jeff
Hello,

I noticed my AIR Badge installer stopped working with the message A download 
error occurred, would you like to try again when the person did not have Adobe 
AIR installed previously.  I had thought that the Badge was supposed to 
download air seamlessly as part of the process.

I snooped with Charles and found that the loaded air.swf file was attempting to 
access https://www.macromedia.comhttps://www.macromedia.com/ and this request 
is returning a certificate error.  Attempting to access the url on my home 
machine directly using gives me the message that the cert is not from a trusted 
authority.  Attempting to access that url from my work machine results in a 
re-direct to Adobe.com.

Anyone got a clue as to what the heck is going on?

Jeff Battershall
Application Architect
Dow Jones Indexes
jeff.battersh...@dowjones.com
(609) 520-5637 (p)

(484) 477-9900 (c)



Re: [flexcoders] AIR Badge Install fails on Macromedia Certificate Error

2009-09-11 Thread Tom Chiverton
On Friday 11 Sep 2009, Battershall, Jeff wrote:
 I snooped with Charles and found that the loaded air.swf file was
 attempting to access
 https://www.macromedia.comhttps://www.macromedia.com/ and this request is

What was the full URL ? It would have been after a particular file, surely ?

-- 
Helping to professionally fashion dot-com high-end innovative internet 
deliverables as part of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

Re: [flexcoders] reading Xml excel files

2009-09-11 Thread kris range
It looks like it has to do with the fact that excel creates namespaces
for all your XML. If you don't need them, see if you can remove them
as it will save you time. If you can't, check out the Namespace class.
There is an XML example at the bottom of the link below that might
help you out.

http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Namespace.html



On Thu, Sep 10, 2009 at 2:24 PM, charleswcng charlesw...@yahoo.com wrote:
 I'm writing a small app that can upload excel xml files and convert
 them into graphs. When I was using e4x to see how the data is shown,
 it didn't return anything.  It works fine if I simplified all the data
 with only
 Workbook,Row,Cell and Data.  Anyone have any idea why I
 couldn't use Worksheet.Row.Cell.Data in the complex example below?
 Also, when it is imported in flex, some of the tags are inserted with
 o:  in front like o:DocumentProperties.

 How can I read this file using e4x expression?  Please go easy on me,
 I'm pretty new to flex.

 Here is the sample data.xml:
 ?xml version=1.0?
 Workbook xmlns=urn:schemas-microsoft-com:office:spreadsheet
  xmlns:o=urn:schemas-microsoft-com:office:office
  xmlns:x=urn:schemas-microsoft-com:office:excel
  xmlns:ss=urn:schemas-microsoft-com:office:spreadsheet
  xmlns:html=http://www.w3.org/TR/REC-html40;
  DocumentProperties xmlns=urn:schemas-microsoft-com:office:office
  AuthorAuthor/Author
  LastAuthorAuthor/LastAuthor
  Created2009-09-08T11:52:44Z/Created
  LastSaved2009-09-10T19:52:04Z/LastSaved
  Version12.0/Version
  /DocumentProperties
  OfficeDocumentSettings xmlns=urn:schemas-microsoft-
 com:office:office
  AllowPNG/
  /OfficeDocumentSettings
  ExcelWorkbook xmlns=urn:schemas-microsoft-com:office:excel
  WindowHeight16280/WindowHeight
  WindowWidth24320/WindowWidth
  WindowTopX860/WindowTopX
  WindowTopY420/WindowTopY
  Date1904/
  ProtectStructureFalse/ProtectStructure
  ProtectWindowsFalse/ProtectWindows
  /ExcelWorkbook
  Styles
  Style ss:ID=Default ss:Name=Normal
  Alignment ss:Vertical=Bottom/
  Borders/
  Font ss:FontName=Verdana/
  Interior/
  NumberFormat/
  Protection/
  /Style
  Style ss:ID=s21
  NumberFormat ss:Format=Short Date/
  /Style
  /Styles
  Worksheet ss:Name=AllTransactions.csv
  Table ss:ExpandedColumnCount=13 ss:ExpandedRowCount=6
 x:FullColumns=1
  x:FullRows=1
  Column ss:Index=4 ss:Width=98.0/
  Column ss:Index=11 ss:Width=498.0/
  Row
   CellData ss:Type=StringSymbol/Data/Cell
   CellData ss:Type=StringQuantity/Data/Cell
   CellData ss:Type=StringPrice/Data/Cell
   CellData ss:Type=StringActionNameUS/Data/Cell
   CellData ss:Type=StringTradeDate/Data/Cell
   CellData ss:Type=StringSettledDate/Data/Cell
   CellData ss:Type=StringInterest/Data/Cell
   CellData ss:Type=StringAmount/Data/Cell
   CellData ss:Type=StringCommission/Data/Cell
   CellData ss:Type=StringFees/Data/Cell
   CellData ss:Type=StringDescription/Data/Cell
   CellData ss:Type=StringActionId/Data/Cell
   CellData ss:Type=StringRecordType/Data/Cell
  /Row
  Row
   CellData ss:Type=StringCash/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringCredit Interest/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-31T00:00:00.000/Data/Cell
   Cell ss:Index=8Data ss:Type=Number0.11/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringCREDIT  INTEREST 31 DAYS @ .05%
 AVERAGE CREDIT BALANCE  2537.05 APY EARNED .05%/Data/Cell
   CellData ss:Type=Number4.0/Data/Cell
   CellData ss:Type=StringFinancial/Data/Cell
  /Row
  Row
   CellData ss:Type=StringCash/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringMargin Interest/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-31T00:00:00.000/Data/Cell
   Cell ss:Index=8Data ss:Type=Number-10.62/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringMARGIN INTEREST 4 DAYS @ 7 1/2%
 AVERAGE DEBIT BALANCE  12739.40/Data/Cell
   CellData ss:Type=Number7.0/Data/Cell
   CellData ss:Type=StringFinancial/Data/Cell
  /Row
  Row
   CellData ss:Type=StringBAC/Data/Cell
   CellData ss:Type=Number150.0/Data/Cell
   CellData ss:Type=Number17.7/Data/Cell
   CellData ss:Type=StringBuy/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-25T00:00:00.000/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-28T00:00:00.000/Data/Cell
   Cell ss:Index=8Data ss:Type=Number-20355.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringBOUGHT 150 SHARES OF BAC AT $17.70/
 Data/Cell
   CellData ss:Type=Number1.0/Data/Cell
   CellData ss:Type=StringTrade/Data/Cell
  /Row
  Row
   CellData ss:Type=StringBAC/Data/Cell
   CellData ss:Type=Number100.0/Data/Cell
   CellData ss:Type=Number17.7/Data/Cell
   CellData ss:Type=StringBuy/Data/Cell
   Cell ss:StyleID=s21Data
 

[flexcoders] Please set up a TomcatValve as described in the documentation problem

2009-09-11 Thread rohan26may

Hi All,

I am trying to login to my flex app via a java client. I am getting
following excpetions


From AMFTestConnection:
ServerStatusException 
data: Flex Message (flex.messaging.messages.ErrorMessage) 
clientId = D1BFFA70-10D2-57FF-3DAC-D202BFDB9AC5
correlationId = D25ADFC2-1088-E386-3664-65A33987F2B3
destination = null
messageId = D1BFFCE1-1093-0850-A31A-F30CCE8A07A7
timestamp = 1252653733281
timeToLive = 0
body = null
hdr(DSMessagingVersion) = 1.0
code =  Server.Processing
message =  Please set up a TomcatValve as described in the
documentation.
details =  null
rootCause =  null
body =  null
extendedData =  null
HttpResponseInfo: HttpResponseInfo 
code: 200
message: OK
at
flex.messaging.io.amf.client.AMFConnection.processAmfBody(AMFConnection.java:665)
at
flex.messaging.io.amf.client.AMFConnection.processAmfPacket(AMFConnection.java:629)
at
flex.messaging.io.amf.client.AMFConnection.processHttpResponseBody(AMFConnection.java:601)
at
flex.messaging.io.amf.client.AMFConnection.processHttpResponse(AMFConnection.java:584)
at 
flex.messaging.io.amf.client.AMFConnection.send(AMFConnection.java:685)
at 
flex.messaging.io.amf.client.AMFConnection.call(AMFConnection.java:450)
at
com.bmc.sas.ngp.testing.AMFTestConnection.main(AMFTestConnection.java:110)


My connection string is like following

channel-definition id=my-amf class=mx.messaging.channels.AMFChannel
endpoint
url=http://{server.name}:{server.port}/{context.root}/messagebroker/amf;
class=flex.messaging.endpoints.AMFEndpoint/
properties
add-no-cache-headersfalse/add-no-cache-headers
/properties   
/channel-definition

 

My UT looks like,

flex.messaging.messages.CommandMessage c = new
flex.messaging.messages.CommandMessage();
c.setOperation(CommandMessage.LOGIN_OPERATION);
String credString = admin:admin;
flex.messaging.util.Base64.Encoder encoder = new
flex.messaging.util.Base64.Encoder(credString.length());
encoder.encode(credString.getBytes());
c.setBody(encoder.drain());
c.setDestination(auth);
AMFConnection amfConnection = new AMFConnection();
String url = http://prodigy/flexapp/messagebroker/amf;;
try{amfConnection.connect(url);   
}
catch (ClientStatusException cse){
cse.printStackTrace();   
}
Object loginResult = amfConnection.call(null, c);

Please assist.

Regards,
Rohan

-- 
View this message in context: 
http://www.nabble.com/%22Please-set-up-a-TomcatValve-as-described-in-the-documentation%22-problem-tp25396490p25396490.html
Sent from the FlexCoders mailing list archive at Nabble.com.



[flexcoders] Resizable TitleWindow

2009-09-11 Thread yogesh patel
Dear All,

   How to create resizable titlewindow or is there ant realizable 
titlewindow component available..???



Regards,
Yogesh 





  See the Web#39;s breaking stories, chosen by people like you. Check out 
Yahoo! Buzz. http://in.buzz.yahoo.com/

Re: [flexcoders] AIR Badge Install fails on Macromedia Certificate Error

2009-09-11 Thread jbattershall

I don't know.  

What the badge does first is download air.swf to access the browser api. 
Then, when it detects I don't have AIR installed, sends a request to
https://www.macromedia.com (METHOD = CONNECT).  Charles returns an error
saying 'No request was made possibly the certificate was rejected'.


jbattershall wrote:
 
 Hello,
 
 I noticed my AIR Badge installer stopped working with the message A
 download error occurred, would you like to try again when the person did
 not have Adobe AIR installed previously.  I had thought that the Badge was
 supposed to download air seamlessly as part of the process.
 
 I snooped with Charles and found that the loaded air.swf file was
 attempting to access
 https://www.macromedia.comhttps://www.macromedia.com/ and this request
 is returning a certificate error.  Attempting to access the url on my home
 machine directly using gives me the message that the cert is not from a
 trusted authority.  Attempting to access that url from my work machine
 results in a re-direct to Adobe.com.
 
 Anyone got a clue as to what the heck is going on?
 
 Jeff Battershall
 Application Architect
 Dow Jones Indexes
 jeff.battersh...@dowjones.com
 (609) 520-5637 (p)
 
 (484) 477-9900 (c)
 
 
 

-- 
View this message in context: 
http://www.nabble.com/AIR-Badge-Install-fails-on-Macromedia-Certificate-Error-tp25397512p25399852.html
Sent from the FlexCoders mailing list archive at Nabble.com.



[flexcoders] Re: refer to dynamic XML elements?

2009-09-11 Thread coldfusionpaul
well it never occurred to me that i would have *search* for these things:

var runoffIDField:String=ID; // lose the namespace, use local name instead

for each (x in result.gml::featureMembers.topp::runoffdatapoints) {
id=x.children().(name().localName==runoffIDField);
}

i really have a mental block w/xml.




Re: [flexcoders] SWF SWC File extensions. What they stands for..??

2009-09-11 Thread Jeffry Houser


I would have assumed the C meant component.  Shockwave Component.  I 
didn't know they tried to reconn SWF to small web file. 


Manu Dhanda wrote:
 



My understanding about SWF:
SWF(Shockwave Flash) which was later changed to Small Web Format.

SWC - ???

Can anybody post me the extension details about swc. What it stands for?
I know that it is an extension for library files. But, I am just 
interested

in the term SWC, Ehat it stands for?

--Manu.
--
View this message in context: 
http://www.nabble.com/SWF---SWC-File-extensions.-What-they-stands-for..---tp25395056p25395056.html 
http://www.nabble.com/SWF---SWC-File-extensions.-What-they-stands-for..---tp25395056p25395056.html

Sent from the FlexCoders mailing list archive at Nabble.com.




--
Jeffry Houser, Technical Entrepreneur
Adobe Community Expert: http://tinyurl.com/684b5h
http://www.twitter.com/reboog711  | Phone: 203-379-0773
--
Easy to use Interface Components for Flex Developers
http://www.flextras.com?c=104
--
http://www.theflexshow.com
http://www.jeffryhouser.com
--
Part of the DotComIt Brain Trust



[flexcoders] Re: SWF SWC File extensions. What they stands for..??

2009-09-11 Thread valdhor
http://www.google.com/search?q=.swc+file+extension



--- In flexcoders@yahoogroups.com, Manu Dhanda manuraj.dha...@... wrote:

 
 My understanding about SWF:
 SWF(Shockwave Flash) which was later changed to Small Web Format.
 
 SWC - ???
 
 Can anybody post me the extension details about swc. What it stands for?
 I know that it is an extension for library files. But, I am just interested
 in the term SWC, Ehat it stands for?
 
 --Manu.
 -- 
 View this message in context: 
 http://www.nabble.com/SWF---SWC-File-extensions.-What-they-stands-for..---tp25395056p25395056.html
 Sent from the FlexCoders mailing list archive at Nabble.com.





Re: [flexcoders] Resizable TitleWindow

2009-09-11 Thread Yesaya handoyo
You can find it here :
http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1207017

or you can use flexlib MDIWindow component here :
http://code.google.com/p/flexlib/

Hope it helps..

Regards
Handoyo


On 9/11/09, yogesh patel mailtoyogeshpa...@yahoo.in wrote:
 Dear All,

How to create resizable titlewindow or is there ant
 realizable titlewindow component available..???



 Regards,
 Yogesh





   See the Web#39;s breaking stories, chosen by people like you. Check
 out Yahoo! Buzz. http://in.buzz.yahoo.com/


[flexcoders] Re: File Upload with FireFox on SunRay Fails-we need this to work

2009-09-11 Thread adebonis
No it just plain http


--- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote:

 On Tuesday 08 Sep 2009, adebonis wrote:
  We can't get File upload to work with a Browser Running under SunRays on
  FireFox
 
 This isn't over SSL is it ? There's an open bug in Jira for that...
 
 -- 
 Helping to competently strategize B2B bleeding-edge one-to-one data as part 
 of 
 the IT team of the year, '09 and '08
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in England and 
 Wales under registered number OC307980 whose registered office address is at 
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
 of members is available for inspection at the registered office together with 
 a list of those non members who are referred to as partners.  We use the word 
 ?partner? to refer to a member of the LLP, or an employee or consultant with 
 equivalent standing and qualifications. Regulated by the Solicitors 
 Regulation Authority.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named above and may 
 be confidential or legally privileged.  If you are not the addressee you must 
 not read it and must not use any information contained in nor copy it nor 
 inform any person other than Halliwells LLP or the addressee of its existence 
 or contents.  If you have received this email in error please delete it and 
 notify Halliwells LLP IT Department on 0870 365 2500.
 
 For more information about Halliwells LLP visit www.halliwells.com.





[flexcoders] Re: Please set up a TomcatValve as described in the documentation problem

2009-09-11 Thread valdhor
From the BlazeDS Installation guide at
http://opensource.adobe.com/wiki/display/blazeds/Installation+Guide:


To use BlazeDS with Tomcat, follow these steps after deploying the
BlazeDS WAR files. These steps are not necessary for the integrated
Tomcat installation.

1. Increase the maximum memory to at least 512MB. This is achieved by
specifying the maximum heap size for the JVM in the JAVA_OPTS variable:
-Xmx512m
2. (Optional) To enable custom authentication, locate the Tomcat
security resource libraries under
install_root/resources/security/tomcat.
1. Put flex-tomcat-common.jar in tomcat/lib/blazeds.
2. Place flex-tomcat-server.jar in tomcat/lib/blazeds.
3. Edit the catalina.properties file which can be found in the
tomcat/conf directory. Find the common.loader property and add the
following path to the end of the list:
${catalina.home}/lib/blazeds/*.jar
4. Add Valve className=flex.messaging.security.TomcatValve/ tag
to the Context descriptors. For example, for the BlazeDS samples WAR:
Context path=/samples docBase=${catalina.home}/webapps/samples
debug=0
Valve className=flex.messaging.security.TomcatValve/
/Context
You will now be authenticated against the current Tomcat realm. Usually,
the default for this authentication stores user information in
conf/tomcat-users.xml. See the Tomcat documentation for more information
on realms. See the documentation for more information on BlazeDS custom
authentication.
5. You may also need to update the active login-command in
/WEB-INF/flex/services-config.xml
in each deployment of a BlazeDS WAR file. For Tomcat, ensure that the
TomcatLoginCommand is active in the security section:
security
login-command class=flex.messaging.security.TomcatLoginCommand
server=Tomcat /
...

6. (Optional) To use the JMSAdapter with the Message Service, you
must install and configure a JMS provider (such as activeMQ or openJMS)
for use with Tomcat.
7. Restart Tomcat.

--- In flexcoders@yahoogroups.com, rohan26may rohan26...@... wrote:


 Hi All,

 I am trying to login to my flex app via a java client. I am getting
 following excpetions


 From AMFTestConnection:
 ServerStatusException
  data: Flex Message (flex.messaging.messages.ErrorMessage)
 clientId = D1BFFA70-10D2-57FF-3DAC-D202BFDB9AC5
 correlationId = D25ADFC2-1088-E386-3664-65A33987F2B3
 destination = null
 messageId = D1BFFCE1-1093-0850-A31A-F30CCE8A07A7
 timestamp = 1252653733281
 timeToLive = 0
 body = null
 hdr(DSMessagingVersion) = 1.0
 code =  Server.Processing
 message =  Please set up a TomcatValve as described in the
 documentation.
 details =  null
 rootCause =  null
 body =  null
 extendedData =  null
  HttpResponseInfo: HttpResponseInfo
  code: 200
  message: OK
  at

flex.messaging.io.amf.client.AMFConnection.processAmfBody(AMFConnection.\
java:665)
  at

flex.messaging.io.amf.client.AMFConnection.processAmfPacket(AMFConnectio\
n.java:629)
  at

flex.messaging.io.amf.client.AMFConnection.processHttpResponseBody(AMFCo\
nnection.java:601)
  at

flex.messaging.io.amf.client.AMFConnection.processHttpResponse(AMFConnec\
tion.java:584)
  at
flex.messaging.io.amf.client.AMFConnection.send(AMFConnection.java:685)
  at
flex.messaging.io.amf.client.AMFConnection.call(AMFConnection.java:450)
  at

com.bmc.sas.ngp.testing.AMFTestConnection.main(AMFTestConnection.java:11\
0)


 My connection string is like following

 channel-definition id=my-amf
class=mx.messaging.channels.AMFChannel
 endpoint

url=http://{server.name}:{server.port}/{context.root}/messagebroker/amf\

 class=flex.messaging.endpoints.AMFEndpoint/
 properties
 add-no-cache-headersfalse/add-no-cache-headers
 /properties
 /channel-definition



 My UT looks like,

 flex.messaging.messages.CommandMessage c = new
 flex.messaging.messages.CommandMessage();
 c.setOperation(CommandMessage.LOGIN_OPERATION);
 String credString = admin:admin;
 flex.messaging.util.Base64.Encoder encoder = new
 flex.messaging.util.Base64.Encoder(credString.length());
 encoder.encode(credString.getBytes());
 c.setBody(encoder.drain());
 c.setDestination(auth);
 AMFConnection amfConnection = new AMFConnection();
 String url = http://prodigy/flexapp/messagebroker/amf;;
 try{amfConnection.connect(url);
 }
 catch (ClientStatusException cse){
 cse.printStackTrace();
 }
 Object loginResult = amfConnection.call(null, c);

 Please assist.

 Regards,
 Rohan

 --
 View this message in context:
http://www.nabble.com/%22Please-set-up-a-TomcatValve-as-described-in-the\
-documentation%22-problem-tp25396490p25396490.html
 Sent from the FlexCoders mailing list archive at Nabble.com.




[flexcoders] Re: Resizable TitleWindow

2009-09-11 Thread valdhor
Check out FlexMDI (Part of FlexLib http://code.google.com/p/flexlib/)



--- In flexcoders@yahoogroups.com, yogesh patel mailtoyogeshpa...@... wrote:

 Dear All,
 
    How to create resizable titlewindow or is there ant 
 realizable titlewindow component available..???
 
 
 
 Regards,
 Yogesh 
 
 
 
 
 
   See the Web#39;s breaking stories, chosen by people like you. Check 
 out Yahoo! Buzz. http://in.buzz.yahoo.com/





Re: [flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-11 Thread Nick Collins
You might put something like the following code in a preinitialize event
handler:

const reUrl:RegExp =
/(http|https):\/\/(([^:]+)(:([...@]+))?@)?([^:\/]+)(:([0-9]{2,5}))?(\/([\w#!:.?+=%...@!\-\/]+))?/;

const appUrl:String = Application.application.url;
const parts:Array = reUrl.exec(appUrl);
if (!parts) throw new Error(Invalid URL:  + appUrl);

if (parts[1] == http )
{
const channels:XMLList = ServerConfig.xml..channels.channel;
for (var channel:String in channels)
{
if
(channels[channe...@type==mx.messaging.channels.SecureAMFChannel)
{
channels[channe...@type=mx.messaging.channels.AMFChannel;
   }
}
}

This will, on the preinitialize event, grab the url the app is being called
from, parse it with a regular expression, check to see if it's being called
from http rather than https, and modify the channels accordingly to operate
on a regular AMFChannel instead of a SecureAMFChannel.

Nick Collins

On Thu, Sep 10, 2009 at 4:27 PM, Wesley Acheson wesley.ache...@gmail.comwrote:



 Does anyone else know where I can ask or point me somewhere I might find
 more information?

 Regards,

 Wesley Acheson


 On Wed, Sep 9, 2009 at 5:28 PM, Wesley Acheson 
 wesley.ache...@gmail.comwrote:

 Hi all,

 We are nearing the end of a development cycle. One thing that I just
 noticed is that my application is talking over http instead of https when
 the application is loaded from a https domain.

 In live we will not have any http element of the domain active, only
 https. However locally there is no https component.  Is there any way of
 loading off a secure channel when the flash file was loaded via https and a
 non secure channel otherwise?

 Otherwise I'm going to have to change all the channels to secure for
 deployment, and no longer run the application locally.

 Regards,
 Wesley Acheson


  



Re: [Spam] [flexcoders] Re: printing off the Adobe Flex References?

2009-09-11 Thread Nick Middleweek
OK, thanks... I guess readin through the others will take me so long we'll
be on v4 or 5 :)



2009/9/9 valdhor valdhorli...@embarqmail.com



 Not that I've found.

 Although, it's a moving target (3.0 - 3.4 so far) so it's probably better
 left as HTML.


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Nick
 Middleweek n...@... wrote:
 
  I've got these PDF's...
 http://www.adobe.com/support/documentation/en/flex/
 
  But is there a good way to print off the language reference?
 
 
  Thanks,
  Nick
 

  



[flexcoders] Re: Is Flex 3.4 DMV source in wrong place?

2009-09-11 Thread tntomek
--- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote:

 On Friday 11 Sep 2009, tntomek wrote:
  Is the default zip of Flex 3.4 source in the wrong place?
 
 Might be better asking Matt Chotin directly and then posting back here in 
 case 
 he misses it.
 
 -- 
 Helping to administratively benchmark holistic information as part of the IT 
 team of the year, '09 and '08
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in England and 
 Wales under registered number OC307980 whose registered office address is at 
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
 of members is available for inspection at the registered office together with 
 a list of those non members who are referred to as partners.  We use the word 
 ?partner? to refer to a member of the LLP, or an employee or consultant with 
 equivalent standing and qualifications. Regulated by the Solicitors 
 Regulation Authority.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named above and may 
 be confidential or legally privileged.  If you are not the addressee you must 
 not read it and must not use any information contained in nor copy it nor 
 inform any person other than Halliwells LLP or the addressee of its existence 
 or contents.  If you have received this email in error please delete it and 
 notify Halliwells LLP IT Department on 0870 365 2500.
 
 For more information about Halliwells LLP visit www.halliwells.com.


You can do that :O Does he have a public email address or were you referring to 
posting on Flexteam/Matts blog?




[flexcoders] Gumbo downloadable API docs

2009-09-11 Thread ivo
Hello Listers,

Is the  Gumbo API docs available for download in HTML format? The latency while 
accessing the online docs is driving me bonkers  :P  . Not sure if its the 
crappy connection here or the adobe server.

Or perhaps the recipe for running ASDoc on the downloaded sources? I must be 
doing something incorrectly since the documentation generated when I try is 
incomplete.

Thanks!

- Ivo



[flexcoders] FlexBuilder3 - Hang!

2009-09-11 Thread pauscato1
Hey does anyone notice hanging(3-5 sec. after typing) in Flex Builder after 
postgres SQL server is installed?



Re: [flexcoders] Re: Is Flex 3.4 DMV source in wrong place?

2009-09-11 Thread Tom Chiverton
On Friday 11 Sep 2009, tntomek wrote:
 You can do that :O Does he have a public email address or were you
 referring to posting on Flexteam/Matts blog?

http://bit.ly/7X5IB

-- 
Helping to continually industrialize architectures as part of the IT team of 
the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

Re: [flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-11 Thread Tom Chiverton
On Friday 11 Sep 2009, Nick Collins wrote:
 You might put something like the following code in a preinitialize event
 handler:

You could just but both a secure and non-secure channel in the Channels 
list... it's what we do. 
The connection should 'fall down' the list.

-- 
Helping to assertively monetize proactive magnetic cross-media portals as part 
of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

[flexcoders] Re: How to change title in myFileReference.browse() system dialog?

2009-09-11 Thread grg_blls
Hi again,

I am re-posting this, still looking for a work around the subject...

Thanks all
George

--- In flexcoders@yahoogroups.com, grg_blls grg_b...@... wrote:

 Hi all,
 
 I want to change the standard displayed title Select file to upload by 
 localhost, that comes with the file-browsing dialog box opened by the 
 FileReference.browse() method.
 Where/how can I do this?
 
 thanks 
 George





Re: [flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-11 Thread Nick Collins
Depending on your environment that would be a great option. It doesn't work
for us because our Flex apps live within a federated portal environment.
Because of the way Adobe has implemented their support for WSRP, it
currently only supports a single channel.

On Fri, Sep 11, 2009 at 9:51 AM, Tom Chiverton tom.chiver...@halliwells.com
 wrote:



 On Friday 11 Sep 2009, Nick Collins wrote:
  You might put something like the following code in a preinitialize event
  handler:

 You could just but both a secure and non-secure channel in the Channels
 list... it's what we do.
 The connection should 'fall down' the list.

 --
 Helping to assertively monetize proactive magnetic cross-media portals as
 part
 of the IT team of the year, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list
 of members is available for inspection at the registered office together
 with a list of those non members who are referred to as partners. We use the
 word ?partner? to refer to a member of the LLP, or an employee or consultant
 with equivalent standing and qualifications. Regulated by the Solicitors
 Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged. If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents. If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.Halliwells.com.
  



[flexcoders] Detecting Whether Current User has Admin Rights - is it possible?

2009-09-11 Thread Battershall, Jeff
If this is possible, it would be very useful information, specifically to 
provide better user experience during AIR app installs.

Right now, attempting to install an AIR app without admin rights throws an 
exception - it would be nice to not even let it get that far.

Jeff Battershall
Application Architect
Dow Jones Indexes
jeff.battersh...@dowjones.com
(609) 520-5637 (p)

(484) 477-9900 (c)



[flexcoders] Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread hank williams
I wrote a blog post about this today (
http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)

but to summarize, it appears that adobe customer service  is essentially
totally unavailable. I tried several times to reach them for an urgent
issue, and the last time waited on hold for 3 hours (after which point my
cordless phone ran out of steam) with no answer, just hold music.

THREE HOURS

They also dont respond to their support email address.

This can't mean good things are happening at adobe. Anyone have any insight?

Hank
-- 
blog: whydoeseverythingsuck.com


Re: [flexcoders] Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread Paul Andrews
hank williams wrote:

 I wrote a blog post about this today 
 (http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)

 but to summarize, it appears that adobe customer service  is 
 essentially totally unavailable. I tried several times to reach them 
 for an urgent issue, and the last time waited on hold for 3 hours 
 (after which point my cordless phone ran out of steam) with no answer, 
 just hold music.

 THREE HOURS

 They also dont respond to their support email address.

 This can't mean good things are happening at adobe. Anyone have any 
 insight?
I can't say, but to stay on hold for three hours? It's ten minutes max 
for me, then try again.

 Hank
 -- 
 blog: whydoeseverythingsuck.com http://whydoeseverythingsuck.com


Re: [flexcoders] Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread hank williams
Lets conduct an experiment. What number are you calling (we've called 3
times so far).

On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews p...@ipauland.com wrote:



 hank williams wrote:
 
  I wrote a blog post about this today
  (http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)
 
  but to summarize, it appears that adobe customer service is
  essentially totally unavailable. I tried several times to reach them
  for an urgent issue, and the last time waited on hold for 3 hours
  (after which point my cordless phone ran out of steam) with no answer,
  just hold music.
 
  THREE HOURS
 
  They also dont respond to their support email address.
 
  This can't mean good things are happening at adobe. Anyone have any
  insight?
 I can't say, but to stay on hold for three hours? It's ten minutes max
 for me, then try again.
 
  Hank
  --
  blog: whydoeseverythingsuck.com http://whydoeseverythingsuck.com
  




-- 
blog: whydoeseverythingsuck.com


Re: [flexcoders] Re: Is Flex 3.4 DMV source in wrong place?

2009-09-11 Thread Matt Chotin
I think we may have just extracted to the frameworks dir for  
convenience. Yes, you may need to fix up your source path in the  
datavisualization.swc in the library path, but that shouldn't be too  
hard.  I don't think we'll re-package the ZIP at this point, but can  
look into fixing things for 3.5 (which is a ways away).

Matt

On Sep 11, 2009, at 7:46 AM, Tom Chiverton wrote:

 On Friday 11 Sep 2009, tntomek wrote:
  You can do that :O Does he have a public email address or were you
  referring to posting on Flexteam/Matts blog?

 http://bit.ly/7X5IB

 -- 
 Helping to continually industrialize architectures as part of the IT  
 team of
 the year, '09 and '08
 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in  
 England and Wales under registered number OC307980 whose registered  
 office address is at Halliwells LLP, 3 Hardman Square,  
 Spinningfields, Manchester, M3 3EB. A list of members is available  
 for inspection at the registered office together with a list of  
 those non members who are referred to as partners. We use the word ? 
 partner? to refer to a member of the LLP, or an employee or  
 consultant with equivalent standing and qualifications. Regulated by  
 the Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above  
 and may be confidential or legally privileged. If you are not the  
 addressee you must not read it and must not use any information  
 contained in nor copy it nor inform any person other than Halliwells  
 LLP or the addressee of its existence or contents. If you have  
 received this email in error please delete it and notify Halliwells  
 LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.Halliwells.com.


 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:flexcoders-dig...@yahoogroups.com 
mailto:flexcoders-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
flexcoders-unsubscr...@yahoogroups.com

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[flexcoders] Re: Java/Flex questions answered by James Ward

2009-09-11 Thread ilikeflex

I am doing something like this:

if( indexListRemoteObject == null)
{
  indexListRemoteObject = new RemoteObject(indexMasterDAO);
  indexListRemoteObject.addEventListener( ResultEvent.RESULT,
indexListHandler );
  indexListRemoteObject.addEventListener( FaultEvent.FAULT, faultHandler
);
  indexListRemoteObject.getIndexList();
}

if( indexProfileListRemoteObject == null )
{
  indexProfileListRemoteObject = new RemoteObject(indexMasterDAO);
  indexProfileListRemoteObject.addEventListener( ResultEvent.RESULT,
indexProfileListHandler );
  indexProfileListRemoteObject.addEventListener( FaultEvent.FAULT,
faultHandler );
  indexProfileListRemoteObject.getIndexProfileList();
}


if( indexTradingDatesListRemoteObject == null )
{
  indexTradingDatesListRemoteObject = new RemoteObject(indexMasterDAO);
  indexTradingDatesListRemoteObject.addEventListener( ResultEvent.RESULT,
indexTradingDatesListHandler );
  indexTradingDatesListRemoteObject.addEventListener( FaultEvent.FAULT,
faultHandler );
  indexTradingDatesListRemoteObject.getIndexTradingDatesList();
}

if( indexValuesListRemoteObject == null )
{
  indexValuesListRemoteObject = new RemoteObject(indexMasterDAO);
  indexValuesListRemoteObject.addEventListener( ResultEvent.RESULT,
indexValuesListHandler );
  indexValuesListRemoteObject.addEventListener( FaultEvent.FAULT,
faultHandler );
  indexValuesListRemoteObject.getIndexValues();
}

but if i put the System.out.println in different Java Methods.. i see
the same sequence of order in which they are called. I am 100% sure that
my first method(getIndexList) takes lot of time. So while getIndexList
is executing then i should also see that atleast one of the other
methods are being executed simulataneously. But this is not happening as
expected. None of the other methods is able to recieve the request while
getIndexList is processing.

All my java methods are static. I don't think  this should cause any
issue.

thanks
ilikeflex


















--- In flexcoders@yahoogroups.com, fotis.chatzinikos
fotis.chatzini...@... wrote:

 make a remote call implementation in java that fills a hashmap or
related object with all the info you want:

 init()
 {
 people = getPeople() ;
 towns = getTowns() ;
 etc...
 }

 if you want them 1-by-1 call them in sequence:

 getPeople() on responce getTowns and so on...

 --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote:
 
  I don't understand. Each call _IS_ a separate request. Even though
Flex batches them up together, each remoteObject call hits the server as
a separate request. They will return asynchronously. This is what you
want so that you get the data back as fast as possible.
 
 
  --- In flexcoders@yahoogroups.com, ilikeflex ilikeflex@ wrote:
  
   HI
  
   I am using Blazeds. At the start of my application i am making
couple of request to get the data from the backend. I am tracking my
request through Charles Debugger. I see that all my initial request are
put together in one POST request. I want that each service call to
backend be a different POST request. So that i can get the data fast.
  
   Please have a look at the screen
shot.(http://4.bp.blogspot.com/_v7fXKpvsYl0/SoW5_0lZl6I/APg/caJ1\
-RzjZAE/s1600-h/Query.png)
  
   How can i achieve this?
   I am using the Remote Objec to make the calls
  
   indexProfileListRemoteObject = new RemoteObject(indexMasterDAO);
   indexProfileListRemoteObject.addEventListener( ResultEvent.RESULT,
indexProfileListHandler );
  
   indexListRemoteObject = new RemoteObject(indexMasterDAO);
   indexListRemoteObject.addEventListener( ResultEvent.RESULT,
indexListHandler );
  
  
   Thanks
   ilikeflex
  
  
  
   --- In flexcoders@yahoogroups.com, James Ward jaward@ wrote:
   
Thanks for the plug. I'm using StackOverflow.com to manage the
questions. Just tag them with riacowboy so that I can find them.
   
I'm seeing a big shift from the Adobe forums, flexcoders, etc to
Stack Overflow - so hopefully many here will start getting more involved
in Stack Overflow.
   
BTW: Here is the Ask The RIA Cowboy post:
http://www.jamesward.com/blog/ask-the-ria-cowboy/
   
-James
   
   
From: flexcoders@yahoogroups.com
[mailto:flexcod...@yahoogroups.com] On Behalf Of hworke
Sent: Friday, August 14, 2009 11:17 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Java/Flex questions answered by James Ward
   
   
   
   
Hello Devs,
   
James Ward the Technical Evangelist for Flex at Adobe
encourages all to post RIA related questions in his
blog. I asked him JAVA/LCDS questions before and got
instant answer from him. If you have JAVA/BlazeDS/
LCDS related questions then you can post it here:
   
http://www.jamesward.com/blog/
   
  
 






[flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread adebonis
I have to agree - Adobe really needs to step up and solve a major problem they 
have in supporting customer - We have Platinum Support and for almost every 
case we post we have to chase down some kind of response with emails and phone 
calls.  They do answer the enterprise phone line in less then 2 min but not 
much happens after that.

The open letter Lambert Walsh has no date on it so we don't know what year this 
was that all these changes started... 
http://www.adobe.com/support/open_letter_to_adobe_customers/



[flexcoders] Re: Java/Flex questions answered by James Ward

2009-09-11 Thread ilikeflex

what i am expecting that as soon as i run my flex application i should
see

System.out.println(getIndexList Executing);
System.out.println(getIndexProfileList Executing);
System.out.println(getIndexTradingDatesList Executing);
System.out.println(getIndexValues Executing);

but i see

System.out.println(getIndexList Executing);
System.out.println(getIndexList End Executing);

System.out.println(getIndexProfileList Executing);
System.out.println(getIndexProfileList End Executing);

System.out.println(getIndexTradingDatesList Executing);
System.out.println(getIndexTradingDatesList End Executing);

System.out.println(getIndexValues Executing);
System.out.println(getIndexValues End Executing);

I should see all the method executing simultaneously.

Any help...


--- In flexcoders@yahoogroups.com, ilikeflex ilikef...@... wrote:


 I am doing something like this:

 if( indexListRemoteObject == null)
 {
 indexListRemoteObject = new RemoteObject(indexMasterDAO);
 indexListRemoteObject.addEventListener( ResultEvent.RESULT,
 indexListHandler );
 indexListRemoteObject.addEventListener( FaultEvent.FAULT, faultHandler
 );
 indexListRemoteObject.getIndexList();
 }

 if( indexProfileListRemoteObject == null )
 {
 indexProfileListRemoteObject = new RemoteObject(indexMasterDAO);
 indexProfileListRemoteObject.addEventListener( ResultEvent.RESULT,
 indexProfileListHandler );
 indexProfileListRemoteObject.addEventListener( FaultEvent.FAULT,
 faultHandler );
 indexProfileListRemoteObject.getIndexProfileList();
 }


 if( indexTradingDatesListRemoteObject == null )
 {
 indexTradingDatesListRemoteObject = new
RemoteObject(indexMasterDAO);
 indexTradingDatesListRemoteObject.addEventListener(
ResultEvent.RESULT,
 indexTradingDatesListHandler );
 indexTradingDatesListRemoteObject.addEventListener( FaultEvent.FAULT,
 faultHandler );
 indexTradingDatesListRemoteObject.getIndexTradingDatesList();
 }

 if( indexValuesListRemoteObject == null )
 {
 indexValuesListRemoteObject = new RemoteObject(indexMasterDAO);
 indexValuesListRemoteObject.addEventListener( ResultEvent.RESULT,
 indexValuesListHandler );
 indexValuesListRemoteObject.addEventListener( FaultEvent.FAULT,
 faultHandler );
 indexValuesListRemoteObject.getIndexValues();
 }

 but if i put the System.out.println in different Java Methods.. i see
 the same sequence of order in which they are called. I am 100% sure
that
 my first method(getIndexList) takes lot of time. So while getIndexList
 is executing then i should also see that atleast one of the other
 methods are being executed simulataneously. But this is not happening
as
 expected. None of the other methods is able to recieve the request
while
 getIndexList is processing.

 All my java methods are static. I don't think this should cause any
 issue.

 thanks
 ilikeflex


















 --- In flexcoders@yahoogroups.com, fotis.chatzinikos
 fotis.chatzinikos@ wrote:
 
  make a remote call implementation in java that fills a hashmap or
 related object with all the info you want:
 
  init()
  {
  people = getPeople() ;
  towns = getTowns() ;
  etc...
  }
 
  if you want them 1-by-1 call them in sequence:
 
  getPeople() on responce getTowns and so on...
 
  --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote:
  
   I don't understand. Each call _IS_ a separate request. Even though
 Flex batches them up together, each remoteObject call hits the server
as
 a separate request. They will return asynchronously. This is what you
 want so that you get the data back as fast as possible.
  
  
   --- In flexcoders@yahoogroups.com, ilikeflex ilikeflex@ wrote:
   
HI
   
I am using Blazeds. At the start of my application i am making
 couple of request to get the data from the backend. I am tracking my
 request through Charles Debugger. I see that all my initial request
are
 put together in one POST request. I want that each service call to
 backend be a different POST request. So that i can get the data fast.
   
Please have a look at the screen

shot.(http://4.bp.blogspot.com/_v7fXKpvsYl0/SoW5_0lZl6I/APg/caJ1\
\
 -RzjZAE/s1600-h/Query.png)
   
How can i achieve this?
I am using the Remote Objec to make the calls
   
indexProfileListRemoteObject = new
RemoteObject(indexMasterDAO);
indexProfileListRemoteObject.addEventListener(
ResultEvent.RESULT,
 indexProfileListHandler );
   
indexListRemoteObject = new RemoteObject(indexMasterDAO);
indexListRemoteObject.addEventListener( ResultEvent.RESULT,
 indexListHandler );
   
   
Thanks
ilikeflex
   
   
   
--- In flexcoders@yahoogroups.com, James Ward jaward@ wrote:

 Thanks for the plug. I'm using StackOverflow.com to manage the
 questions. Just tag them with riacowboy so that I can find them.

 I'm seeing a big shift from the Adobe forums, flexcoders, etc
to
 Stack Overflow - so hopefully many here will start getting more
involved
 in Stack Overflow.

 BTW: Here is the Ask The RIA Cowboy post:
 

Re: [flexcoders] Gumbo downloadable API docs

2009-09-11 Thread Leonardo França

try this

http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4

Language Reference

--
Leonardo França
Adobe Certified Expert Flex 3 with AIR
Adobe Certified Expert Rich Internet Application Specialist v1.0
Adobe Certified Expert Flash CS3 Professional
Certified Professional Adobe Flex 2 Developer
Adobe Certified Professional Flash MX 2004 Developer
http://www.leonardofranca.com.br
http://twitter/leofederal
Manager AUGDF - Adobe User Group do Distrito Federal
http://www.augdf.com.br
http://twitter/augdf




ivo escreveu:
 


Hello Listers,

Is the Gumbo API docs available for download in HTML format? The 
latency while accessing the online docs is driving me bonkers :P . Not 
sure if its the crappy connection here or the adobe server.


Or perhaps the recipe for running ASDoc on the downloaded sources? I 
must be doing something incorrectly since the documentation generated 
when I try is incomplete.


Thanks!

- Ivo




[flexcoders] Re: Gumbo downloadable API docs

2009-09-11 Thread frederik.eichler
Hey,

just download the right version of the Language Reference from 
http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4

( depending on which build of the beta you are using )

hope that helps.

cheers

Frederik

--- In flexcoders@yahoogroups.com, ivo cervantes_v...@... wrote:

 Hello Listers,
 
 Is the  Gumbo API docs available for download in HTML format? The latency 
 while accessing the online docs is driving me bonkers  :P  . Not sure if its 
 the crappy connection here or the adobe server.
 
 Or perhaps the recipe for running ASDoc on the downloaded sources? I must be 
 doing something incorrectly since the documentation generated when I try is 
 incomplete.
 
 Thanks!
 
 - Ivo





[flexcoders] Re: Understanding measure process

2009-09-11 Thread neilbrown08
Thanks Alex, 

Makes a lot more sense now.

I have since read more of the documentation and watched a few videos on 
AdobeTV. As usual a lot of this stuff is already out there. Yet you still find 
time to answer questions from the community.

It is people like you that make this product worth the effort to learn about.

Many thanks.

--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

 If you have a component that extends UIComponent it is responsible for 
 measuring itself to reserve the right amount of room in the parent container, 
 and responsible for sizing its children, usually by calling setActualSIze() 
 and using getExplicitOrMeasuredWIdth/Height
 
 Alex Harui
 Flex SDK Developer
 Adobe Systems Inc.http://www.adobe.com/
 Blog: http://blogs.adobe.com/aharui
 
 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On 
 Behalf Of neilbrown08
 Sent: Thursday, September 10, 2009 6:27 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Understanding measure process
 
 
 
 Hi,
 
 Searched the forum but cannot find an answer to my problem. Please look at 
 the code and offer some advice.
 
 My code is called Highlight.mxml if I put it in a normal VBox container and 
 call setText it sizes correctly.
 
 If I create it as a child in my own component which extends UIComponent, I 
 cannot get it to size at all, its always width = 0 even though I do see 
 measuredWidth reported correctly.
 
 I wanted this component to size itself based on what is inside the textfield. 
 So if it is a child of my component I still would like it to be the size of 
 the text.
 
 ?xml version=1.0 encoding=utf-8?
 mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml;
 creationComplete=creationComplete()
 backgroundColor=0xff
 borderColor=0x628297
 borderThickness=1
 borderStyle=solid
 mx:Script
 ![CDATA[
 import flash.filters.DropShadowFilter;
 
 private var str:String;
 
 private function creationComplete():void
 {
 this.filters = [new DropShadowFilter(4, 45, 0x33, 0.5) ];
 }
 
 override protected function commitProperties():void
 {
 super.commitProperties();
 
 txt.text = this.str;
 invalidateSize();
 invalidateDisplayList();
 }
 
 override protected function measure():void
 {
 super.measure();
 
 measuredWidth = measuredMinWidth = txt.getExplicitOrMeasuredWidth();
 measuredHeight = measuredMinHeight = txt.getExplicitOrMeasuredHeight();
 }
 
 override protected function updateDisplayList(unscaledWidth:Number, 
 unscaledHeight:Number):void
 {
 super.updateDisplayList(unscaledWidth, unscaledHeight);
 //this.setActualSize(txt.width, txt.height);
 }
 
 public function setText(str:String):void
 {
 this.str = str;
 invalidateProperties();
 }
 
 ]]
 /mx:Script
 mx:Label id=txt text=100 color=0x00/
 /mx:Canvas





Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread hank williams
what country are you in... and if US, what number did you dial?

On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@aol.com wrote:



 Sounds like you're not having very good luck Hank. As an interesting
 coincidence, I had to contact Adobe customer service today to resolve an
 issue. I just switched from PC to Mac and at the same time upgraded from CS3
 to CS4. My issue was that the upgrade wouldn't recognize my previous
 product's serial number, because it was on a different platform. I went to
 the Adobe site, clicked the support button, selected my country and called
 the 800 number. They answered after 5 minutes. Pretty good compared to 3
 hours. The initial rep took my info and had to transfer me to another rep to
 resolve my issue. The second time on hold took 7 minutes. The second rep was
 able to assist me ad resolve my issue. The entire call took 22 minutes;
 which for something like this is completely reasonable. Sorry that you
 didn't have the same experience. But, for me, I couldn't expect any better
 customer service.

 -TH


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, hank
 williams hank...@... wrote:
 
  Lets conduct an experiment. What number are you calling (we've called 3
  times so far).
 
  On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews p...@... wrote:
 
  
  
   hank williams wrote:
   
I wrote a blog post about this today
(
 http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)
   
but to summarize, it appears that adobe customer service is
essentially totally unavailable. I tried several times to reach them
for an urgent issue, and the last time waited on hold for 3 hours
(after which point my cordless phone ran out of steam) with no
 answer,
just hold music.
   
THREE HOURS
   
They also dont respond to their support email address.
   
This can't mean good things are happening at adobe. Anyone have any
insight?
   I can't say, but to stay on hold for three hours? It's ten minutes max
   for me, then try again.
   
Hank
--
blog: whydoeseverythingsuck.com http://whydoeseverythingsuck.com
  
  
 
 
 
  --
  blog: whydoeseverythingsuck.com
 

  




-- 
blog: whydoeseverythingsuck.com


Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread hank williams
By the way, adobe admits there is a problem, so if you got that kind of
response, I promise it is not normal.

see: http://www.adobe.com/support/open_letter_to_adobe_customers/

On Fri, Sep 11, 2009 at 1:09 PM, hank williams hank...@gmail.com wrote:

 what country are you in... and if US, what number did you dial?


 On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@aol.com wrote:



 Sounds like you're not having very good luck Hank. As an interesting
 coincidence, I had to contact Adobe customer service today to resolve an
 issue. I just switched from PC to Mac and at the same time upgraded from CS3
 to CS4. My issue was that the upgrade wouldn't recognize my previous
 product's serial number, because it was on a different platform. I went to
 the Adobe site, clicked the support button, selected my country and called
 the 800 number. They answered after 5 minutes. Pretty good compared to 3
 hours. The initial rep took my info and had to transfer me to another rep to
 resolve my issue. The second time on hold took 7 minutes. The second rep was
 able to assist me ad resolve my issue. The entire call took 22 minutes;
 which for something like this is completely reasonable. Sorry that you
 didn't have the same experience. But, for me, I couldn't expect any better
 customer service.

 -TH


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, hank
 williams hank...@... wrote:
 
  Lets conduct an experiment. What number are you calling (we've called 3
  times so far).
 
  On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews p...@... wrote:
 
  
  
   hank williams wrote:
   
I wrote a blog post about this today
(
 http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)
   
but to summarize, it appears that adobe customer service is
essentially totally unavailable. I tried several times to reach them
for an urgent issue, and the last time waited on hold for 3 hours
(after which point my cordless phone ran out of steam) with no
 answer,
just hold music.
   
THREE HOURS
   
They also dont respond to their support email address.
   
This can't mean good things are happening at adobe. Anyone have any
insight?
   I can't say, but to stay on hold for three hours? It's ten minutes max
   for me, then try again.
   
Hank
--
blog: whydoeseverythingsuck.com http://whydoeseverythingsuck.com
  
  
 
 
 
  --
  blog: whydoeseverythingsuck.com
 

  




 --
 blog: whydoeseverythingsuck.com




-- 
blog: whydoeseverythingsuck.com


[flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread turbo_vb
US - 800-833-6687.

-TH

--- In flexcoders@yahoogroups.com, hank williams hank...@... wrote:

 By the way, adobe admits there is a problem, so if you got that kind of
 response, I promise it is not normal.
 
 see: http://www.adobe.com/support/open_letter_to_adobe_customers/
 
 On Fri, Sep 11, 2009 at 1:09 PM, hank williams hank...@... wrote:
 
  what country are you in... and if US, what number did you dial?
 
 
  On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@... wrote:
 
 
 
  Sounds like you're not having very good luck Hank. As an interesting
  coincidence, I had to contact Adobe customer service today to resolve an
  issue. I just switched from PC to Mac and at the same time upgraded from 
  CS3
  to CS4. My issue was that the upgrade wouldn't recognize my previous
  product's serial number, because it was on a different platform. I went to
  the Adobe site, clicked the support button, selected my country and called
  the 800 number. They answered after 5 minutes. Pretty good compared to 3
  hours. The initial rep took my info and had to transfer me to another rep 
  to
  resolve my issue. The second time on hold took 7 minutes. The second rep 
  was
  able to assist me ad resolve my issue. The entire call took 22 minutes;
  which for something like this is completely reasonable. Sorry that you
  didn't have the same experience. But, for me, I couldn't expect any better
  customer service.
 
  -TH
 
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, hank
  williams hank777@ wrote:
  
   Lets conduct an experiment. What number are you calling (we've called 3
   times so far).
  
   On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews paul@ wrote:
  
   
   
hank williams wrote:

 I wrote a blog post about this today
 (
  http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)

 but to summarize, it appears that adobe customer service is
 essentially totally unavailable. I tried several times to reach them
 for an urgent issue, and the last time waited on hold for 3 hours
 (after which point my cordless phone ran out of steam) with no
  answer,
 just hold music.

 THREE HOURS

 They also dont respond to their support email address.

 This can't mean good things are happening at adobe. Anyone have any
 insight?
I can't say, but to stay on hold for three hours? It's ten minutes max
for me, then try again.

 Hank
 --
 blog: whydoeseverythingsuck.com http://whydoeseverythingsuck.com
   
   
  
  
  
   --
   blog: whydoeseverythingsuck.com
  
 
   
 
 
 
 
  --
  blog: whydoeseverythingsuck.com
 
 
 
 
 -- 
 blog: whydoeseverythingsuck.com





[flexcoders] Re: Manually triggering creation when creationPolicy=auto?

2009-09-11 Thread dfalling
--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

 createComponentFromDescriptor
 
 Alex Harui
 Flex SDK Developer
 Adobe Systems Inc.http://www.adobe.com/
 Blog: http://blogs.adobe.com/aharui
 
 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On 
 Behalf Of dfalling
 Sent: Thursday, September 10, 2009 1:15 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Manually triggering creation when creationPolicy=auto?
 
 
 
 How can I make a viewstack create its children (or more correctly, children's 
 children) programmatically? I know about the different creation policies, I 
 am specifically asking about manually triggering a creation.
 
 Cheers


Awesome, thanks...  Is there an easy way to inspect a child to determine if 
this has been done to it yet?



Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread hank williams
Starting now. I dont have 3 hours again but lets see how far we get...

On Fri, Sep 11, 2009 at 1:19 PM, turbo_vb timh...@aol.com wrote:



 US - 800-833-6687.


 -TH

 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, hank
 williams hank...@... wrote:
 
  By the way, adobe admits there is a problem, so if you got that kind of
  response, I promise it is not normal.
 
  see: http://www.adobe.com/support/open_letter_to_adobe_customers/
 
  On Fri, Sep 11, 2009 at 1:09 PM, hank williams hank...@... wrote:
 
   what country are you in... and if US, what number did you dial?
  
  
   On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@... wrote:
  
  
  
   Sounds like you're not having very good luck Hank. As an interesting
   coincidence, I had to contact Adobe customer service today to resolve
 an
   issue. I just switched from PC to Mac and at the same time upgraded
 from CS3
   to CS4. My issue was that the upgrade wouldn't recognize my previous
   product's serial number, because it was on a different platform. I
 went to
   the Adobe site, clicked the support button, selected my country and
 called
   the 800 number. They answered after 5 minutes. Pretty good compared to
 3
   hours. The initial rep took my info and had to transfer me to another
 rep to
   resolve my issue. The second time on hold took 7 minutes. The second
 rep was
   able to assist me ad resolve my issue. The entire call took 22
 minutes;
   which for something like this is completely reasonable. Sorry that you
   didn't have the same experience. But, for me, I couldn't expect any
 better
   customer service.
  
   -TH
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com, hank
   williams hank777@ wrote:
   
Lets conduct an experiment. What number are you calling (we've
 called 3
times so far).
   
On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews paul@ wrote:
   


 hank williams wrote:
 
  I wrote a blog post about this today
  (
   http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)
 
  but to summarize, it appears that adobe customer service is
  essentially totally unavailable. I tried several times to reach
 them
  for an urgent issue, and the last time waited on hold for 3
 hours
  (after which point my cordless phone ran out of steam) with no
   answer,
  just hold music.
 
  THREE HOURS
 
  They also dont respond to their support email address.
 
  This can't mean good things are happening at adobe. Anyone have
 any
  insight?
 I can't say, but to stay on hold for three hours? It's ten minutes
 max
 for me, then try again.
 
  Hank
  --
  blog: whydoeseverythingsuck.com 
 http://whydoeseverythingsuck.com


   
   
   
--
blog: whydoeseverythingsuck.com
   
  
  
  
  
  
  
   --
   blog: whydoeseverythingsuck.com
  
 
 
 
  --
  blog: whydoeseverythingsuck.com
 

  




-- 
blog: whydoeseverythingsuck.com


[flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread turbo_vb
Sounds like you're not having very good luck Hank.  As an interesting 
coincidence, I had to contact Adobe customer service today to resolve an issue. 
 I just switched from PC to Mac and at the same time upgraded from CS3 to CS4.  
My issue was that the upgrade wouldn't recognize my previous product's serial 
number, because it was on a different platform.  I went to the Adobe site, 
clicked the support button, selected my country and called the 800 number.  
They answered after 5 minutes.  Pretty good compared to 3 hours.  The initial 
rep took my info and had to transfer me to another rep to resolve my issue.  
The second time on hold took 7 minutes.  The second rep was able to assist me 
ad resolve my issue.  The entire call took 22 minutes; which for something like 
this is completely reasonable.  Sorry that you didn't have the same experience. 
But, for me, I couldn't expect any better customer service.

-TH

--- In flexcoders@yahoogroups.com, hank williams hank...@... wrote:

 Lets conduct an experiment. What number are you calling (we've called 3
 times so far).
 
 On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews p...@... wrote:
 
 
 
  hank williams wrote:
  
   I wrote a blog post about this today
   (http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)
  
   but to summarize, it appears that adobe customer service is
   essentially totally unavailable. I tried several times to reach them
   for an urgent issue, and the last time waited on hold for 3 hours
   (after which point my cordless phone ran out of steam) with no answer,
   just hold music.
  
   THREE HOURS
  
   They also dont respond to their support email address.
  
   This can't mean good things are happening at adobe. Anyone have any
   insight?
  I can't say, but to stay on hold for three hours? It's ten minutes max
  for me, then try again.
  
   Hank
   --
   blog: whydoeseverythingsuck.com http://whydoeseverythingsuck.com
   
 
 
 
 
 -- 
 blog: whydoeseverythingsuck.com




[flexcoders] Building Multidimensional array for AdvancedDataGrid

2009-09-11 Thread fumeng5
Hi,

I'm trying to create a hierarchical collection for my AdvancedDataGrid. My 
array will be made up of DTOs. As of right now there are only two groups and I 
try to build the array like this:

var masterArray:Array = new Array([],[]);
masterArray[0] = categoryDTOColl[0];
masterArray[0][0] = gaugeDTOColl;

masterArray[1] = categoryDTOColl[1];
masterArray[1][0] = trendDTOColl;

The groups will be the 'name' property in the categoryDTOColl. The 
renderProviders will display the gaugeDTOColl and trendDTOColl info.

So, when I run the code above, I get the error message: 'Cannot create property 
0 on CategoryDTO'. Obviously, I'm creating the array incorrectly but am unsure 
how. I've searched online but haven't found much luck. 

Thanks in advance, 

Matt 



Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread Magnus Lassi
It may depend on the issue you have. You may be more successful if you reach
out to the user group manager of an Adobe group of the area you have a
problem with and see if they can get a point of contact at Adobe.

I've had nothing but great experience dealing with customer support but all
my issues have so far been more complex that requires SDK changes or
similar.

On Fri, Sep 11, 2009 at 12:28 PM, hank williams hank...@gmail.com wrote:



 Starting now. I dont have 3 hours again but lets see how far we get...


 On Fri, Sep 11, 2009 at 1:19 PM, turbo_vb timh...@aol.com wrote:



 US - 800-833-6687.


 -TH

 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, hank
 williams hank...@... wrote:
 
  By the way, adobe admits there is a problem, so if you got that kind of
  response, I promise it is not normal.
 
  see: http://www.adobe.com/support/open_letter_to_adobe_customers/
 
  On Fri, Sep 11, 2009 at 1:09 PM, hank williams hank...@... wrote:
 
   what country are you in... and if US, what number did you dial?
  
  
   On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@... wrote:
  
  
  
   Sounds like you're not having very good luck Hank. As an interesting
   coincidence, I had to contact Adobe customer service today to resolve
 an
   issue. I just switched from PC to Mac and at the same time upgraded
 from CS3
   to CS4. My issue was that the upgrade wouldn't recognize my previous
   product's serial number, because it was on a different platform. I
 went to
   the Adobe site, clicked the support button, selected my country and
 called
   the 800 number. They answered after 5 minutes. Pretty good compared
 to 3
   hours. The initial rep took my info and had to transfer me to another
 rep to
   resolve my issue. The second time on hold took 7 minutes. The second
 rep was
   able to assist me ad resolve my issue. The entire call took 22
 minutes;
   which for something like this is completely reasonable. Sorry that
 you
   didn't have the same experience. But, for me, I couldn't expect any
 better
   customer service.
  
   -TH
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com, hank
   williams hank777@ wrote:
   
Lets conduct an experiment. What number are you calling (we've
 called 3
times so far).
   
On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews paul@ wrote:
   


 hank williams wrote:
 
  I wrote a blog post about this today
  (
   http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html
 )
 
  but to summarize, it appears that adobe customer service is
  essentially totally unavailable. I tried several times to reach
 them
  for an urgent issue, and the last time waited on hold for 3
 hours
  (after which point my cordless phone ran out of steam) with no
   answer,
  just hold music.
 
  THREE HOURS
 
  They also dont respond to their support email address.
 
  This can't mean good things are happening at adobe. Anyone have
 any
  insight?
 I can't say, but to stay on hold for three hours? It's ten
 minutes max
 for me, then try again.
 
  Hank
  --
  blog: whydoeseverythingsuck.com 
 http://whydoeseverythingsuck.com


   
   
   
--
blog: whydoeseverythingsuck.com
   
  
  
  
  
  
  
   --
   blog: whydoeseverythingsuck.com
  
 
 
 
  --
  blog: whydoeseverythingsuck.com
 




 --
 blog: whydoeseverythingsuck.com
  



Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread hank williams
Whether or not you answer the phone cant be issue dependent. And we are
talking about customer service issues not support issues. Customer service
(issues like installation serial numbers and such) should be swift. After
all its like taking someone's money and then not delivering the product. Its
almost like stealing. The product is not usable without the issue being
resolved.

On Fri, Sep 11, 2009 at 1:46 PM, Magnus Lassi magnus.la...@gmail.comwrote:



 It may depend on the issue you have. You may be more successful if you
 reach out to the user group manager of an Adobe group of the area you have a
 problem with and see if they can get a point of contact at Adobe.

 I've had nothing but great experience dealing with customer support but all
 my issues have so far been more complex that requires SDK changes or
 similar.


 On Fri, Sep 11, 2009 at 12:28 PM, hank williams hank...@gmail.com wrote:



 Starting now. I dont have 3 hours again but lets see how far we get...


 On Fri, Sep 11, 2009 at 1:19 PM, turbo_vb timh...@aol.com wrote:



 US - 800-833-6687.


 -TH

 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, hank
 williams hank...@... wrote:
 
  By the way, adobe admits there is a problem, so if you got that kind of
  response, I promise it is not normal.
 
  see: http://www.adobe.com/support/open_letter_to_adobe_customers/
 
  On Fri, Sep 11, 2009 at 1:09 PM, hank williams hank...@... wrote:
 
   what country are you in... and if US, what number did you dial?
  
  
   On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@... wrote:
  
  
  
   Sounds like you're not having very good luck Hank. As an interesting
   coincidence, I had to contact Adobe customer service today to
 resolve an
   issue. I just switched from PC to Mac and at the same time upgraded
 from CS3
   to CS4. My issue was that the upgrade wouldn't recognize my previous
   product's serial number, because it was on a different platform. I
 went to
   the Adobe site, clicked the support button, selected my country and
 called
   the 800 number. They answered after 5 minutes. Pretty good compared
 to 3
   hours. The initial rep took my info and had to transfer me to
 another rep to
   resolve my issue. The second time on hold took 7 minutes. The second
 rep was
   able to assist me ad resolve my issue. The entire call took 22
 minutes;
   which for something like this is completely reasonable. Sorry that
 you
   didn't have the same experience. But, for me, I couldn't expect any
 better
   customer service.
  
   -TH
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com, hank
   williams hank777@ wrote:
   
Lets conduct an experiment. What number are you calling (we've
 called 3
times so far).
   
On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews paul@ wrote:
   


 hank williams wrote:
 
  I wrote a blog post about this today
  (
  
 http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html)
 
  but to summarize, it appears that adobe customer service is
  essentially totally unavailable. I tried several times to
 reach them
  for an urgent issue, and the last time waited on hold for 3
 hours
  (after which point my cordless phone ran out of steam) with no
   answer,
  just hold music.
 
  THREE HOURS
 
  They also dont respond to their support email address.
 
  This can't mean good things are happening at adobe. Anyone
 have any
  insight?
 I can't say, but to stay on hold for three hours? It's ten
 minutes max
 for me, then try again.
 
  Hank
  --
  blog: whydoeseverythingsuck.com 
 http://whydoeseverythingsuck.com


   
   
   
--
blog: whydoeseverythingsuck.com
   
  
  
  
  
  
  
   --
   blog: whydoeseverythingsuck.com
  
 
 
 
  --
  blog: whydoeseverythingsuck.com
 




 --
 blog: whydoeseverythingsuck.com


  




-- 
blog: whydoeseverythingsuck.com


[flexcoders] Re: HBox not sizing properly...how to kick it in the head

2009-09-11 Thread flexwdw
Thanks for the reply, Alex.

measuredWidth  measuredHeight are 0.

explicitWidth  explicitHeight are NaN.

The parameters are both 0.

The parent that this guy is getting added to is UIComponent (which happens to 
be a complex item renderer), I'm not sure if that could be playing into this?

Out of curiosity, I overrode height, explictHeight and measuredHeight in the 
component (my class that extends Hbox) and set a breakpoint in each of 
them--they never get called.  The width and height of this component is never 
explicitly set because I want it to be as big as the HBox. 

thanks!


--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

 In updateDisplayList, see if the parameters are 0.  If they are, check 
 measuredWIdth/Height and explicitWIdth/Height to see if either are 0.  It 
 sounds like explicitWIdth/Height may have gotten set to 0 somewhere




Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread hank williams
I have to go out now and so cant leave the phone off hook. But 1hr 15mins
with no response. I am sure it would have been many more hours.

On Fri, Sep 11, 2009 at 1:28 PM, hank williams hank...@gmail.com wrote:

 Starting now. I dont have 3 hours again but lets see how far we get...


 On Fri, Sep 11, 2009 at 1:19 PM, turbo_vb timh...@aol.com wrote:



 US - 800-833-6687.


 -TH

 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, hank
 williams hank...@... wrote:
 
  By the way, adobe admits there is a problem, so if you got that kind of
  response, I promise it is not normal.
 
  see: http://www.adobe.com/support/open_letter_to_adobe_customers/
 
  On Fri, Sep 11, 2009 at 1:09 PM, hank williams hank...@... wrote:
 
   what country are you in... and if US, what number did you dial?
  
  
   On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@... wrote:
  
  
  
   Sounds like you're not having very good luck Hank. As an interesting
   coincidence, I had to contact Adobe customer service today to resolve
 an
   issue. I just switched from PC to Mac and at the same time upgraded
 from CS3
   to CS4. My issue was that the upgrade wouldn't recognize my previous
   product's serial number, because it was on a different platform. I
 went to
   the Adobe site, clicked the support button, selected my country and
 called
   the 800 number. They answered after 5 minutes. Pretty good compared
 to 3
   hours. The initial rep took my info and had to transfer me to another
 rep to
   resolve my issue. The second time on hold took 7 minutes. The second
 rep was
   able to assist me ad resolve my issue. The entire call took 22
 minutes;
   which for something like this is completely reasonable. Sorry that
 you
   didn't have the same experience. But, for me, I couldn't expect any
 better
   customer service.
  
   -TH
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com, hank
   williams hank777@ wrote:
   
Lets conduct an experiment. What number are you calling (we've
 called 3
times so far).
   
On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews paul@ wrote:
   


 hank williams wrote:
 
  I wrote a blog post about this today
  (
   http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html
 )
 
  but to summarize, it appears that adobe customer service is
  essentially totally unavailable. I tried several times to reach
 them
  for an urgent issue, and the last time waited on hold for 3
 hours
  (after which point my cordless phone ran out of steam) with no
   answer,
  just hold music.
 
  THREE HOURS
 
  They also dont respond to their support email address.
 
  This can't mean good things are happening at adobe. Anyone have
 any
  insight?
 I can't say, but to stay on hold for three hours? It's ten
 minutes max
 for me, then try again.
 
  Hank
  --
  blog: whydoeseverythingsuck.com 
 http://whydoeseverythingsuck.com


   
   
   
--
blog: whydoeseverythingsuck.com
   
  
  
  
  
  
  
   --
   blog: whydoeseverythingsuck.com
  
 
 
 
  --
  blog: whydoeseverythingsuck.com
 

  




 --
 blog: whydoeseverythingsuck.com




-- 
blog: whydoeseverythingsuck.com


Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-11 Thread Matt Chotin
Hi Hank,

Please mail adbec...@adobe.com and let them know what's been going  
on.  As you pointed out, we're having some transition issues, but this  
hold time is unacceptable as far as I'm concerned.

Matt

On Sep 11, 2009, at 11:43 AM, hank williams wrote:

 I have to go out now and so cant leave the phone off hook. But 1hr  
 15mins with no response. I am sure it would have been many more hours.


 On Fri, Sep 11, 2009 at 1:28 PM, hank williams hank...@gmail.com  
 wrote:
 Starting now. I dont have 3 hours again but lets see how far we get...


 On Fri, Sep 11, 2009 at 1:19 PM, turbo_vb timh...@aol.com wrote:

 US - 800-833-6687.



 -TH

 --- In flexcoders@yahoogroups.com, hank williams hank...@... wrote:
 
  By the way, adobe admits there is a problem, so if you got that  
 kind of
  response, I promise it is not normal.
 
  see: http://www.adobe.com/support/open_letter_to_adobe_customers/
 
  On Fri, Sep 11, 2009 at 1:09 PM, hank williams hank...@... wrote:
 
   what country are you in... and if US, what number did you dial?
  
  
   On Fri, Sep 11, 2009 at 1:06 PM, turbo_vb timh...@... wrote:
  
  
  
   Sounds like you're not having very good luck Hank. As an  
 interesting
   coincidence, I had to contact Adobe customer service today to  
 resolve an
   issue. I just switched from PC to Mac and at the same time  
 upgraded from CS3
   to CS4. My issue was that the upgrade wouldn't recognize my  
 previous
   product's serial number, because it was on a different  
 platform. I went to
   the Adobe site, clicked the support button, selected my country  
 and called
   the 800 number. They answered after 5 minutes. Pretty good  
 compared to 3
   hours. The initial rep took my info and had to transfer me to  
 another rep to
   resolve my issue. The second time on hold took 7 minutes. The  
 second rep was
   able to assist me ad resolve my issue. The entire call took 22  
 minutes;
   which for something like this is completely reasonable. Sorry  
 that you
   didn't have the same experience. But, for me, I couldn't expect  
 any better
   customer service.
  
   -TH
  
  
   --- In flexcoders@yahoogroups.com flexcoders 
 %40yahoogroups.com, hank

   williams hank777@ wrote:
   
Lets conduct an experiment. What number are you calling  
 (we've called 3
times so far).
   
On Fri, Sep 11, 2009 at 12:00 PM, Paul Andrews paul@ wrote:
   


 hank williams wrote:
 
  I wrote a blog post about this today
  (
   http://whydoeseverythingsuck.com/2009/09/is-adobe-falling-apart.html 
 )
 
  but to summarize, it appears that adobe customer service is
  essentially totally unavailable. I tried several times to  
 reach them
  for an urgent issue, and the last time waited on hold for  
 3 hours
  (after which point my cordless phone ran out of steam)  
 with no
   answer,
  just hold music.
 
  THREE HOURS
 
  They also dont respond to their support email address.
 
  This can't mean good things are happening at adobe.  
 Anyone have any
  insight?
 I can't say, but to stay on hold for three hours? It's ten  
 minutes max
 for me, then try again.
 
  Hank
  --
  blog: whydoeseverythingsuck.com http://whydoeseverythingsuck.com 
 


   
   
   
--
blog: whydoeseverythingsuck.com
   
  
  
  
  
  
  
   --

   blog: whydoeseverythingsuck.com
  
 
 
 
  --
  blog: whydoeseverythingsuck.com
 




 -- 
 blog: whydoeseverythingsuck.com



 -- 
 blog: whydoeseverythingsuck.com

 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:flexcoders-dig...@yahoogroups.com 
mailto:flexcoders-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
flexcoders-unsubscr...@yahoogroups.com

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



Re: [flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-11 Thread Wesley Acheson
Thanks I'll give that a shot.

On Fri, Sep 11, 2009 at 4:51 PM, Tom Chiverton tom.chiver...@halliwells.com
 wrote:



 On Friday 11 Sep 2009, Nick Collins wrote:
  You might put something like the following code in a preinitialize event
  handler:

 You could just but both a secure and non-secure channel in the Channels
 list... it's what we do.
 The connection should 'fall down' the list.

 --
 Helping to assertively monetize proactive magnetic cross-media portals as
 part
 of the IT team of the year, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list
 of members is available for inspection at the registered office together
 with a list of those non members who are referred to as partners. We use the
 word ?partner? to refer to a member of the LLP, or an employee or consultant
 with equivalent standing and qualifications. Regulated by the Solicitors
 Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged. If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents. If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.Halliwells.com.


 



[flexcoders] AdvancedDataGrid virtual/pivot column creation?

2009-09-11 Thread chigwell23
Not sure whether virtual or pivot is the right word, but the columns do not 
exist as columns in the returned result set, but as data.

MGR  PROD  SOLD
mgr1 beer  100.99
mgr1 rice  200.55
mgr1 soap  400.33
mgr2 beer  123.50
mgr2 rice  428.88
mgr2 soap  555.55

I wish to turn this into

MGR  BEER   RICE   SOAP
mgr1 100.99 200.55 400.33 etc.

I have the adg doing hierarchical trees, groupings and summaries etc but cannot 
work out how to do what I think might be a pivot? Have learned a lot with a 
google on flex adg pivot and flex adg dynamic column but have not found the 
above yet. TIA,

Mic.



[flexcoders] Re: AdvancedDataGrid virtual/pivot column creation?

2009-09-11 Thread chigwell23
Aha can I use the OLAPDataGrid for this? I had thought that its dataprovider 
had to be in a cubespeak format, but I think I am reading that I can take my 
SQLServer2005 stored procedure XML result set and massage it into cubespeak 
with mx:OLAPDimension/ etc. Is this correct?

--- In flexcoders@yahoogroups.com, chigwell23 chigwel...@... wrote:

 Not sure whether virtual or pivot is the right word, but the columns do not 
 exist as columns in the returned result set, but as data.
 
 MGR  PROD  SOLD
 mgr1 beer  100.99
 mgr1 rice  200.55
 mgr1 soap  400.33
 mgr2 beer  123.50
 mgr2 rice  428.88
 mgr2 soap  555.55
 
 I wish to turn this into
 
 MGR  BEER   RICE   SOAP
 mgr1 100.99 200.55 400.33 etc.
 
 I have the adg doing hierarchical trees, groupings and summaries etc but 
 cannot work out how to do what I think might be a pivot? Have learned a lot 
 with a google on flex adg pivot and flex adg dynamic column but have not 
 found the above yet. TIA,
 
 Mic.





[flexcoders] Custom Menu class with a Mask

2009-09-11 Thread thinkblue146
Hello,

I'm trying to create a menu that has rounded corners similar to the
following example:

http://blog.flexmonkeypatches.com/2007/10/08/flex-rounded-menues-using-m\
asking/comment-page-1/
../../../Hello,%20%20I%20trying%20to%20create%20a%20menu%20that%20has%2\
0rounded%20corners%20similar%20to%20the%20following%20example:%20%20http\
://blog.flexmonkeypatches.com/2007/10/08/flex-rounded-menues-using-maski\
ng/comment-page-1/

The only difference is that I'm showing the Menu with a PopUpButton.  So
far this is what I have for my custom Menu:

package {

 import flash.display.Sprite;

 import mx.controls.Menu;
 import mx.events.MenuEvent;

 public class MyMenu extends Menu {

 public function MyMenu() {
 super();
 addEventListener(menuShow, onMenuShow);
 }

 private function onMenuShow(e:MenuEvent):void {
 callLater(maskRoundedCorners,[e]);
 }


  private function maskRoundedCorners(e:MenuEvent):void {

 var menu:Menu = e.menu as Menu;
 menu.cacheAsBitmap=false;

 if (!menu.mask){
 var maskx:uint = menu.x;
 var masky:uint = menu.y;
 var maskw:uint = menu.getExplicitOrMeasuredWidth();
 var maskh:uint = menu.getExplicitOrMeasuredHeight();
 var rad:int = menu.getStyle(cornerRadius) * 2;

 var roundRect:Sprite = new Sprite();
 roundRect.graphics.beginFill(0xFF);

roundRect.graphics.drawRoundRect(maskx,masky,maskw,maskh,rad);
 roundRect.graphics.endFill();
 menu.mask = roundRect;
 }
 }
 }
}

Can anyone help me out with what I'm missing...I'm not sure if i need to
override any of the Menu classes functions.

When I load my example the:

addEventListener(menuShow, onMenuShow);

gets fire but when i click the PopUpButton to show the menu the
onMenuShow function is not being fired and the regular menu is being
display with out the rounded corners.

Any help on this is appreciated.

Thank you,

Blue


[flexcoders] Expand/Collapse on OLAPDatagrid?

2009-09-11 Thread chigwell23
Is there anyway to get the first hierarchical column of the OLAPDataGrid to 
display node icons and expand/collapse a la ADG? TIA,

Mic.



[flexcoders] SOLVED: Building Multidimensional array for AdvancedDataGrid

2009-09-11 Thread fumeng5
This is how you create a multidimensional array for an AdvancedDataGrid:

masterArray = [{category: 
categoryDTOColl[0].name,chartData:[{caption:gaugeCaptionDTOColl,gauge:gaugeDTOColl}]},
{category: 
categoryDTOColl[1].name,chartData:[{caption:trendCaptionDTOColl,gauge:trendDTOColl}]}];

I was doing it completely wrong before. Hope this helps somebody. 

The odd thing with using mx:hierarchicalData instead of converting flat data 
with a Grouping Collection is that you can't style the grouped row. 

With a grouping collection you can extend the AdvancedDataGridGroupItemRenderer 
and re-position the disclosureIcon, etc..but when using hierchical data, you 
can't...or at least I haven't figured it out. It's because you can't extend 
AdvancedDataGridItemRenderer with any styling. 

Matt
--- In flexcoders@yahoogroups.com, fumeng5 fume...@... wrote:

 Hi,
 
 I'm trying to create a hierarchical collection for my AdvancedDataGrid. My 
 array will be made up of DTOs. As of right now there are only two groups and 
 I try to build the array like this:
 
 var masterArray:Array = new Array([],[]);
 masterArray[0] = categoryDTOColl[0];
 masterArray[0][0] = gaugeDTOColl;
   
 masterArray[1] = categoryDTOColl[1];
 masterArray[1][0] = trendDTOColl;
 
 The groups will be the 'name' property in the categoryDTOColl. The 
 renderProviders will display the gaugeDTOColl and trendDTOColl info.
 
 So, when I run the code above, I get the error message: 'Cannot create 
 property 0 on CategoryDTO'. Obviously, I'm creating the array incorrectly but 
 am unsure how. I've searched online but haven't found much luck. 
 
 Thanks in advance, 
 
 Matt





RE: [flexcoders] Re: Java/Flex questions answered by James Ward

2009-09-11 Thread James Ward
This would be a great question to ask on StackOverflow.com  :)

-James


From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of ilikeflex
Sent: Friday, September 11, 2009 11:03 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Java/Flex questions answered by James Ward



what i am expecting that as soon as i run my flex application i should
see

System.out.println(getIndexList Executing);
System.out.println(getIndexProfileList Executing);
System.out.println(getIndexTradingDatesList Executing);
System.out.println(getIndexValues Executing);

but i see

System.out.println(getIndexList Executing);
System.out.println(getIndexList End Executing);

System.out.println(getIndexProfileList Executing);
System.out.println(getIndexProfileList End Executing);

System.out.println(getIndexTradingDatesList Executing);
System.out.println(getIndexTradingDatesList End Executing);

System.out.println(getIndexValues Executing);
System.out.println(getIndexValues End Executing);

I should see all the method executing simultaneously.

Any help...

--- In flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, 
ilikeflex ilikef...@... wrote:


 I am doing something like this:

 if( indexListRemoteObject == null)
 {
 indexListRemoteObject = new RemoteObject(indexMasterDAO);
 indexListRemoteObject.addEventListener( ResultEvent.RESULT,
 indexListHandler );
 indexListRemoteObject.addEventListener( FaultEvent.FAULT, faultHandler
 );
 indexListRemoteObject.getIndexList();
 }

 if( indexProfileListRemoteObject == null )
 {
 indexProfileListRemoteObject = new RemoteObject(indexMasterDAO);
 indexProfileListRemoteObject.addEventListener( ResultEvent.RESULT,
 indexProfileListHandler );
 indexProfileListRemoteObject.addEventListener( FaultEvent.FAULT,
 faultHandler );
 indexProfileListRemoteObject.getIndexProfileList();
 }


 if( indexTradingDatesListRemoteObject == null )
 {
 indexTradingDatesListRemoteObject = new
RemoteObject(indexMasterDAO);
 indexTradingDatesListRemoteObject.addEventListener(
ResultEvent.RESULT,
 indexTradingDatesListHandler );
 indexTradingDatesListRemoteObject.addEventListener( FaultEvent.FAULT,
 faultHandler );
 indexTradingDatesListRemoteObject.getIndexTradingDatesList();
 }

 if( indexValuesListRemoteObject == null )
 {
 indexValuesListRemoteObject = new RemoteObject(indexMasterDAO);
 indexValuesListRemoteObject.addEventListener( ResultEvent.RESULT,
 indexValuesListHandler );
 indexValuesListRemoteObject.addEventListener( FaultEvent.FAULT,
 faultHandler );
 indexValuesListRemoteObject.getIndexValues();
 }

 but if i put the System.out.println in different Java Methods.. i see
 the same sequence of order in which they are called. I am 100% sure
that
 my first method(getIndexList) takes lot of time. So while getIndexList
 is executing then i should also see that atleast one of the other
 methods are being executed simulataneously. But this is not happening
as
 expected. None of the other methods is able to recieve the request
while
 getIndexList is processing.

 All my java methods are static. I don't think this should cause any
 issue.

 thanks
 ilikeflex


















 --- In flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, 
 fotis.chatzinikos
 fotis.chatzinikos@ wrote:
 
  make a remote call implementation in java that fills a hashmap or
 related object with all the info you want:
 
  init()
  {
  people = getPeople() ;
  towns = getTowns() ;
  etc...
  }
 
  if you want them 1-by-1 call them in sequence:
 
  getPeople() on responce getTowns and so on...
 
  --- In flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, 
  valdhor valdhorlists@ wrote:
  
   I don't understand. Each call _IS_ a separate request. Even though
 Flex batches them up together, each remoteObject call hits the server
as
 a separate request. They will return asynchronously. This is what you
 want so that you get the data back as fast as possible.
  
  
   --- In flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, 
   ilikeflex ilikeflex@ wrote:
   
HI
   
I am using Blazeds. At the start of my application i am making
 couple of request to get the data from the backend. I am tracking my
 request through Charles Debugger. I see that all my initial request
are
 put together in one POST request. I want that each service call to
 backend be a different POST request. So that i can get the data fast.
   
Please have a look at the screen

shot.(http://4.bp.blogspot.com/_v7fXKpvsYl0/SoW5_0lZl6I/APg/caJ1\
\
http://4.bp.blogspot.com/_v7fXKpvsYl0/SoW5_0lZl6I/APg/caJ1 
-RzjZAE/s1600-h/Query.png)
   
How can i achieve this?
I am using the Remote Objec to make the calls
   
indexProfileListRemoteObject = new
RemoteObject(indexMasterDAO);
indexProfileListRemoteObject.addEventListener(
ResultEvent.RESULT,
 indexProfileListHandler );
   
indexListRemoteObject = new RemoteObject(indexMasterDAO);

[flexcoders] filtering advanced datagrid

2009-09-11 Thread kaushal.shah05
how do you filter an advanced datagrid?   I've tried myself with no luck.  I 
can only get filter the fist node in the tree.

there are not too many resources out there for the Flex adv datagrid.  Adobe 
should really focus on it as it's always a requirement in the corporate world.

(This is the modified code copied from Sameer's site.)


?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute
applicationComplete=init()
mx:Script
![CDATA[
import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn;
import mx.collections.GroupingField;
import mx.collections.Grouping;
import mx.collections.ArrayCollection ;
import mx.collections.GroupingCollection;


public function init() : void {
flatData.filterFunction = myFilter;
}
public function myFilter(item:Object) : Boolean {
var pattern:String = '.*' + search.text + '.*';

if (item.hasOwnProperty('Territory')) {
 if (item.Territory.match(pattern)) {
return true;
} else {
return false;
}
}
return true;
}

public function updateFilter() : void { 
groupedData.refresh();
}

[Bindable] private var flatData:ArrayCollection = new
ArrayCollection(
[

{ Territory:Nevada, Territory_Rep:Barbara Jennings,Estimate:4 , 
Actual:38865 },
{ Territory:Nevada, Territory_Rep:Dana Binn ,Estimate:3 , 
Actual:29885 },
{ Territory:Nevada, Territory_Rep:Joe Schmoe ,Estimate:3 , 
Actual:29134 },
{ Territory:Northern California , Territory_Rep:Lauren Ipsum , 
Estimate:4 , Actual:38805 },
{ Territory:Northern California , Territory_Rep: T.R.Smith , 
Estimate:4 , Actual:55498 },
{ Territory:Southern California , Territory_Rep:Jane Grove, 
Estimate:45000 , Actual:44913 },
{ Territory:Southern California , Territory_Rep:Alice Treu, 
Estimate:45000 , Actual:44985 },
{ Territory:Nevada , Territory_Rep:Bethany Pittman ,Estimate:45000 
, Actual:52888 } 
]);

]]
/mx:Script
mx:HBox
mx:Label text=Territory /
mx:TextInput id=search text= change=updateFilter()/
/mx:HBox

mx:AdvancedDataGrid id=adg
creationComplete=groupedData.refresh() x= 29.5 y=26 width=555
height=377
mx:dataProvider
mx:GroupingCollection id=groupedData source={flatData} 

mx:Grouping
mx:GroupingField name=Territory 
mx:summaries
mx:SummaryRow summaryPlacement=group
mx:fields
mx:SummaryField
dataField=Estimate operation=SUM label=Budget/
mx:SummaryField
dataField=Actual operation=SUM /
/mx:fields
/mx:SummaryRow
/mx:summaries
/mx:GroupingField
/mx:Grouping
/mx:GroupingCollection
/mx:dataProvider
mx:columns
mx:AdvancedDataGridColumn width=200 headerText =
Territory Rep dataField=Territory_Rep/
mx:AdvancedDataGridColumn headerText=Budget dataField=Budget/
mx:AdvancedDataGridColumn headerText = Actual
dataField=Actual/
/mx:columns
/mx:AdvancedDataGrid

/mx:Application






[flexcoders] vert scroll fix for Satish T J's PivotComponent?

2009-09-11 Thread chigwell23
Found exactly what I need in this amazing component, which is basically 
unusable as there is no vertical scroll of the grid when the rows increase. Has 
anybody figured out a fix for this? The author actually works for Adobe, and I 
find it hard to believe that there have been no fixes to it for 18 months, and 
that Adobe has not taken this component and run with it . a useable version 
would make great presentation to the corporate world. TIA,

Mic. 

I am going through the source now to see where the problem is, but wonder if 
someone has already found it?



RE: [flexcoders] Re: HBox not sizing properly...how to kick it in the head

2009-09-11 Thread Alex Harui
When are you looking at those properties?  measuredWidth/Height don't get set 
until the measure() method is called.  If they stay at 0, then the component 
will not have any size.  Did you set %width/height instead?  Maybe we need to 
see the code.

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of flexwdw
Sent: Friday, September 11, 2009 10:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: HBox not sizing properly...how to kick it in the head



Thanks for the reply, Alex.

measuredWidth  measuredHeight are 0.

explicitWidth  explicitHeight are NaN.

The parameters are both 0.

The parent that this guy is getting added to is UIComponent (which happens to 
be a complex item renderer), I'm not sure if that could be playing into this?

Out of curiosity, I overrode height, explictHeight and measuredHeight in the 
component (my class that extends Hbox) and set a breakpoint in each of 
them--they never get called. The width and height of this component is never 
explicitly set because I want it to be as big as the HBox.

thanks!

--- In flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, Alex 
Harui aha...@... wrote:

 In updateDisplayList, see if the parameters are 0. If they are, check 
 measuredWIdth/Height and explicitWIdth/Height to see if either are 0. It 
 sounds like explicitWIdth/Height may have gotten set to 0 somewhere



[flexcoders] Re: vert scroll fix for Satish T J's PivotComponent?

2009-09-11 Thread chigwell23
Fixed it by editing OLAPDataGridEx.as.

public function OLAPDataGridEx() needs a

this.enabled = true; added to it.

This is serious component :-)

--- In flexcoders@yahoogroups.com, chigwell23 chigwel...@... wrote:

 Found exactly what I need in this amazing component, which is basically 
 unusable as there is no vertical scroll of the grid when the rows increase. 
 Has anybody figured out a fix for this? The author actually works for Adobe, 
 and I find it hard to believe that there have been no fixes to it for 18 
 months, and that Adobe has not taken this component and run with it . a 
 useable version would make great presentation to the corporate world. TIA,
 
 Mic. 
 
 I am going through the source now to see where the problem is, but wonder if 
 someone has already found it?