[flexcoders] Reducing padding / margin between UI items

2006-06-20 Thread polestar11
Hi there Does anyone know how to control the padding / margin amounts between UI items, some kind of a container command equivallent to childPaddingLeft/Right. I have a TileList that contians a item-rendered component that contians 2 labels. I am struggling to shift the 1 label closer to the

[flexcoders] Re: Reducing padding / margin between UI items

2006-06-20 Thread Tim Hoff
That would be HorizontalGap for an HBox (VerticalGap for VBox). You can go negative here if needed. -TH --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi there Does anyone know how to control the padding / margin amounts between UI items, some kind of a

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-20 Thread Tom Chiverton
On Monday 19 June 2006 16:57, Pan Troglodytes wrote: Charts, for one. See the thread changing out pieSeries.itemRenderer at runtime. What happens if you just assign to the property rather than using setStyle ? Maybe Ely Greenfield can shed light on why there is an inconsistency here (might be

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-20 Thread Tom Chiverton
On Monday 19 June 2006 17:02, Pan Troglodytes wrote: In fact, I couldn't find a single example in the help that explained using setStyle for itemRenderers. Maybe that's because you're not meant to do it :-) -- Tom Chiverton This email is

[flexcoders] Re: Flex2B2 - cut off any gui controls that appear outside of parent container

2006-06-20 Thread bhaq1972
hi Jason How can I keep this effect if i modify your example to become mx:HBox width=100% height=100 backgroundColor=yellow mx:Button label=number1 width=75%/ mx:Canvas width=25% horizontalScrollPolicy=off mx:Button width=100 label=number2/ /mx:Canvas /mx:HBox thanks

[flexcoders] FYI - this email address has been abused and is no longer an acceptable email address

2006-06-20 Thread phlux
Hi there, If you are getting this message it is probably because you tried to email me at [EMAIL PROTECTED] Unfortunately, this email generates too much spam, which renders it quite useless. The best way to reach me is through my myspace account. This way I can be sure I do not get followed

[flexcoders] Flex XML dataislands

2006-06-20 Thread Daniel Tuppeny
Is it possible to get at the document object model from within flex, or at least, xml data islands in the page? Eg., something like this: body xml id="#chartData" mydata name="1" value="15" / mydata name="2" value="1" / mydata name="3" value="45" / /xml object flex-blah here

RE: [flexcoders] Flex XML dataislands

2006-06-20 Thread Jason Hawryluk
A little _javascript_ and the external interface will do it i think if i understand correctly. jason -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Daniel TuppenyEnvoy: mardi 20 juin 2006 13:24:

Re: [flexcoders] How to capture/handle runtime errors?

2006-06-20 Thread Michael Schmalle
Just guessing but, additional compiler arguments? Peace, MikeOn 6/20/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: Is this configurable, so we can still find bugs when we upgrade to the release player? From: flexcoders@yahoogroups.com

[flexcoders] Re: Getting a DataGrid item renderer instance

2006-06-20 Thread Bruce Denham
Very nice! Thank you Jeremy and Tim for putting this together for me! Now I just need to go read more in the Flex docs about the item renderer interfaces and the eventing magic that's going on behind the scenes. Again, much thanks. Bruce --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL

[flexcoders] dragging constraints

2006-06-20 Thread Rajesh Deshmukh
Hello friends, I am having an application just like multiple choice. Also iam having feedback window(an instance of TitleWindow) to show . I can drag and drop this window but after dropping the feedback window gets disappeared can anybody please let me know How to fix that

[flexcoders] info abt companies using Flex

2006-06-20 Thread vicky
can anyone give information abt the companies in india who r using flex .i hv recently completed one project in flex 1.5 and java. any location in india is welcome but delhi ncr will bepreferred. with regards vinay sharma Yahoo! Groups Sponsor

[flexcoders] mxmlc - context root - any root

2006-06-20 Thread ssundke
Hi, I have a framework product for which im using flex. I would like to distribute as a compiled swf. In my mxml I need to make an HTTP Service call to the same server on which this swf is used i.e the context root can vary on deployment but I always want to reach the same url given a

[flexcoders] Converting Java objects to ActionScript

2006-06-20 Thread hans73it
I'm trying to call a remote object that returns a List of String. After I've invoked the method Flex throws this Error: ArgumentError: Error #2004: One of the parameters is invalid. myFault: (mx.messaging.messages::ErrorMessage)#0 body = (Object)#1 clientId = (null) correlationId =

RE: [flexcoders] Flex XML dataislands

2006-06-20 Thread Daniel Tuppeny
I'd never seen any external interface, but I just looked it up in Google, and it looks pretty wicked - that'll certainly be able to do what we need! Thanks! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason HawrylukSent: 20 June 2006 13:02To:

[flexcoders] Re: Getting rid of rectangle on axis (FB2.3 charts)

2006-06-20 Thread sp0rarb3jd3r
On the axis there is a different coloured underlying rectangle (to contrast the individual individual tick lines, I think). I would like for there to be only one straight line. To exemplify: http://www.itu.dk/people/urlgrey/example1.gif. Y! Do you mean the axis itself? I'm not sure what

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
This is currently a limitation in the Flash Player ( all versions ). SOAP faults require HTTP 500 to returned. When the FP sees a 500, it stops reading data from the socket. The current workaround is to use the proxy or to use some other mechanism to change the HTTP status code to 200

RE: [flexcoders] Flex XML dataislands

2006-06-20 Thread Jason Hawryluk
import flash.external.*; It works well. Good luck Jason -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Daniel TuppenyEnvoyé: mardi 20 juin 2006 14:10À: flexcoders@yahoogroups.comObjet: RE: [flexcoders] Flex XML

Re: [flexcoders] Re: Getting rid of rectangle on axis (FB2.3 charts)

2006-06-20 Thread Sreejith Unnikrishnan
mx:verticalAxisRenderermx:AxisRenderermx:axisStrokemx:Stroke color="#33" weight="1" //mx:axisStroke/mx:AxisRenderer/mx:verticalAxisRenderer - Original Message - From: sp0rarb3jd3r To: flexcoders@yahoogroups.com Sent: Tuesday, June 20, 2006 1:54 PM Subject:

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
This sounds pretty worrying. We're using SOAP without any server/proxy.So wewon't be able to get theSOAP exceptions at all? That sounds like rather a fundamental flaw. It means we're unable to give the user any sensible messages, because we don't have the exception type. Is this not

[flexcoders] Re: toolTip for dataGrid headers?

2006-06-20 Thread djbrown_rotonews
I'm discovered that I need to implement my own headerRenderer as part of each DataGridColumn, but how do I go about accessing what column I'm currently looking at. I'm wanting to add a generic headerRenderer for all 22 columns of my DataGrid, displaying a tool tip based on the id of the

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
Preaching to the choir. :) Believe me...we feel the same way. From everything we have heard from Adobe, this will not be addressed within the player within this release. That being said, does CF support anything like filters in J2EE that allow you to do things like alter the contents

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
We're using .NET web services, no cold fusion. Looks like we'll have to wrap all responses in try/catch, and return an object with an error property, and the actual data as another property. Disgusting :-( From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
Sorry. I got you mixed up with the original poster. I'd be really surprised if you couldn't do this in .NET more generically than that. I'd hate to see you have to change all of your implementations. We made this very clear to Adobe that this was not acceptable but that didn't seem

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
Clarification...significant experience in web services development. Carson From: flexcoders@yahoogroups.com on behalf of Carson HagerSent: Tue 6/20/2006 9:21 AMTo: flexcoders@yahoogroups.com; flexcoders@yahoogroups.comSubject: RE: [flexcoders] Access SOAP fault code Sorry.

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Dirk Eismann
If you can get hold of the pure HTTP response in .NET (which I doubt) then you could set the HTTP status code to 200. This way the exception will be handled correctly by Flash Player (and that's how the Flex WS proxy handle this, too) Another way would be to use servlet/ISAPI filters for

[flexcoders] Debugging RTMP

2006-06-20 Thread David Clark
Is there any tool that can debug (monitor) RTMP traffic from flex2b3 to FMS2?I am still trying to figure out what is going on with NetConnection.connect arguments missing, but now I realise that there is no longer any way to see what is being passed in connect or call requests. There used to be

[flexcoders] Tabbing through items in a container

2006-06-20 Thread polestar11
Hi there I am trying to build a custom list that allows the same type of cursor tabbing though child items as a list / datagrid. I have created a custom class that extends HBox. I have chosen a container rather than a list to extend from, because I do not want a fixed column width for items. I

RE: [flexcoders] Converting Java objects to ActionScript

2006-06-20 Thread Peter Farland
Roberto, in flex-enterprise-services.xml, can you go to the logging section, set the level to Debug and then make sure the only logging pattern is Endpoint.*. Restart the server and then rerun your application and look on the console (if you started the server using the command line) or in

RE: [flexcoders] Debugging RTMP

2006-06-20 Thread Peter Farland
David, we've forward your email to Flash QA. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David ClarkSent: Tuesday, June 20, 2006 9:36 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Debugging RTMP Is there any tool that can debug (monitor) RTMP

[flexcoders] Re: RTE htmlText img tags

2006-06-20 Thread Suzy Lawson
Here's a blog that allows you to display html within a browser. I was able to combine this with an embedded iframe which I can hide and display...to the user, it looks like a normal TextArea within Flash. http://ebaggg.blogspot.com/ --- In flexcoders@yahoogroups.com, stefan_schmalhaus [EMAIL

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
We've not got many implementations so far, so there's not a great deal to change, it's the fact that it's messy thatI don't like, rather than there's more work involved. Having real exceptions sent back to the client is way more convenient than try/catch'ing everything and returning a

[flexcoders] cant find flex.bootstrap.BootstrapServlet

2006-06-20 Thread hank williams
I am just getting fds setup, and I am having a problem setting up my own project.Everything worked fine when I was using the sample, but somehow when I setup my own project I must not have set some parameter properly or copied some necessary file into my project. Any clues. Hank[EMAIL

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
We can add HttpHandlers and HttpModules that would allow us to intercept what's going out. It'll have an impact on performance, but it might be worth it! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk EismannSent: 20 June 2006 14:33To:

[flexcoders] Design Pattern books for AS3 and Flex 2

2006-06-20 Thread judah
Are there any design pattern books coming out in the near future that talk about design patterns with ActionScript 3 or Flex 2? Best Regards, Judah Frangipane -- Always bear in mind that your own resolution to succeed is more important than any one thing. You can have anything you want - if

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Carson Hager
You can definitely do this so that only the flex app gets the affected response. The FP has a unique user agent name that you can look at to determine if you need to change the http status code or not. That's how we've done this. Carson From: flexcoders@yahoogroups.com on behalf

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Daniel Tuppeny
Cool, I thought it just copied the one from IE! In any case, I guess the WinForms onewould be different. Thanks :-) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: 20 June 2006 15:01To: flexcoders@yahoogroups.com;

[flexcoders] FLV can't load in to videoDisplay component from remote machine

2006-06-20 Thread Bhavin Padhiyar
hi all,Strange!!!I am making one prototype of online television application in flex. In that I use video display component. I change source property to load different movies this method works fine when I am working in to development environment when I put data on server this method

[flexcoders] [FileReference] change title on file chooser

2006-06-20 Thread keishichi2001
Following code will pop os-native file chooser up. FileReference.browse(); However, I couldn't find any property to change title on the file chooser. Any clue? K Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make over. See the new email design.

[flexcoders] Re: Getting rid of rectangle on axis (FB2.3 charts)

2006-06-20 Thread sp0rarb3jd3r
THANK YOU PROFOOUNDLY! yes, I had to shout!!! Y! mx:verticalAxisRenderer mx:AxisRenderer mx:axisStroke mx:Stroke color=#33 weight=1 / /mx:axisStroke /mx:AxisRenderer /mx:verticalAxisRenderer - Original Message - From: sp0rarb3jd3r To:

RE: [flexcoders] Design Pattern books for AS3 and Flex 2

2006-06-20 Thread Mark Lapasa
Design Patterns (and the design principles they are grounded upon) are very much language neutral. A couple of pages of Head First Design Patterns can go a long way. The implementation language is Java but it's easy to pick up if you've done a fair amount of ActionScripting v2.0 or higher.

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-20 Thread Pan Troglodytes
There is no property itemRenderer on charts. What happens is you get a syntax error.On 6/20/06, Tom Chiverton [EMAIL PROTECTED] wrote:On Monday 19 June 2006 16:57, Pan Troglodytes wrote: Charts, for one.See the thread changing out pieSeries.itemRenderer at runtime.What happens if you just

[flexcoders] Error: Flex Builder could not publish the project source: null

2006-06-20 Thread Pan Troglodytes
I get this error when trying to publish some applications. The publish fine, though. Just thought I'd make it known that there seems to be some kind of bug in it.-- Jason __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Problem with displaying exactly one item in a DataGrid.

2006-06-20 Thread sreedhar reddy
Hi, This is Sreedhar. I am working with Flex Builder 2Beta 3, Java Server Pages, and SQL Server 2005. Currently, I am working on "Search based on Keyword". When I execute the search through the JSP, I am able to see the proper results. I am having a problem when displaying these results in

Re: [flexcoders] Design Pattern books for AS3 and Flex 2

2006-06-20 Thread Phil Marston
don't know about flex as 3 specifically, but worth checking out O'Reilly's Head First Design Patterns http://www.amazon.com/gp/product/0596007124/ref=sr_11_1/002-8231286-1107262?%5Fencoding=UTF8 HTH Phil judah wrote: Are there any design pattern books coming out in the near future that

Re: [flexcoders] Re: Flex2B2 - cut off any gui controls that appear outside of parent container

2006-06-20 Thread Jason Y. Kwong
I'm not sure exactly what effect you want. Do you always want a part of button2 to be clipped off the right? If so, by how much?What's happening in my example is that the nested Canvas gives button2 only 25% of the available horizontal space. When the HBox was 300 pixels wide, that gave it 75

[flexcoders] Aligning the control bar of a RichTextEditor

2006-06-20 Thread Suzy Lawson
I feel silly asking this question b/c it seems like something too easy...but I can't get the control bar of a rich text editor to be ABOVE the text field (by default it sits below the text box). I've tried everything including adding a style for controlBarStyleName with vertical-align:top but

[flexcoders] Re: cant find flex.bootstrap.BootstrapServlet

2006-06-20 Thread hank williams
Problem solved. I had just not copied some files in the samples lib directory.HankOn 6/20/06, hank williams [EMAIL PROTECTED] wrote:I am just getting fds setup, and I am having a problem setting up my own project. Everything worked fine when I was using the sample, but somehow when I setup my

[flexcoders] Flash Video Crash Frequency Becoming Alarming

2006-06-20 Thread Dave Carabetta
I posted this in the FP 9 forums, but it doesn't look like anybody really pays attention to it, so I thought I'd re-post this to more eyeballs to see what your experience has been: I know that there is a final push to get FP 9 out the door by the end of the month. However, I have to say that the

Re: [flexcoders] Design Pattern books for AS3 and Flex 2

2006-06-20 Thread Michael Schmalle
Patterns are language neutral; yes But, this is a double edge sword. Maybe he meant, A book about how to implement those neutral patterns in Flex that is not neutral; That's like saying in all foreign languages a sentence has the pattern signature of blah blah... When some go from left to

Re: [flexcoders] adding zoom effect to datagrid row

2006-06-20 Thread Pan Troglodytes
Thanks for the info, Jason and Tim. I'm actually going to give up on this for now to move onto other things. But here's what I was REALLY wanting. When rolling over any part of the row, I wanted the whole row to zoom. I haven't been able to figure out how to do that because of the scoping

RE: [flexcoders] Converting Java objects to ActionScript

2006-06-20 Thread Peter Farland
Thanks Roberto, I tried your sample and it worked. Now that I see the error message again I know what the issue is you don't have a reference to mx.collections.ArrayCollection so this class definition isn't linked into the SWF during compilation... Typically if a typed object's class

[flexcoders] [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-20 Thread Thomas Rühl -akitogo-
Hello list, I just tried to set up the FlexMessaging gateway instance in the Coldfusion administrator. Everything fine during the setup, but when I try to start up the instance, it returns a blank page with 500 null on it. Any idea what to do? I already checked the jre version, but that

[flexcoders] Re: Flex2B2 - cut off any gui controls that appear outside of parent container

2006-06-20 Thread bhaq1972
sorry, the width of button2 should have been 100% (i only want to specify percentage widths). I'm not sure exactly what effect you want. Do you always want a part of button2 to be clipped off the right? If so, by how much? Thats correct. i want to have part of the button clipped off to

Re: [flexcoders] Flash Video Crash Frequency Becoming Alarming

2006-06-20 Thread Tom Bray
On 6/20/06, Dave Carabetta [EMAIL PROTECTED] wrote: Are others experiences stability issues? Yes. I have exactly the same setup. FP9 crashes Firefox for me very frequently, usually on Engadget.com. I don't use IE much and haven't seen it crash. I, too, submitted a bug and I assume it's

Re: [flexcoders] Re: Flex2B2 - cut off any gui controls that appear outside of parent container

2006-06-20 Thread Jason Y. Kwong
Ah, ok. So if you want to clip 20 pixels, then you need to make sure that button2 is always 20 pixels wider than the enclosing canvas. You can make use of binding:mx:HBox width=100% height=100% backgroundColor=yellow mx:Button label=number1 width=75%/ mx:Canvas id=mycanvas width=25%

RE: [flexcoders] Debugging RTMP

2006-06-20 Thread Peter Farland
As for getting functionality akin to NetConnection Debugger for RTMP communicatons... hmm, this might be an interesting hack... could you change the RTMP endpoint of your NetConnection connect statement to point to an Flex Data Services 2 (FDS)RTMPChannel endpoint and ensure that

Re: [flexcoders] FLV can't load in to videoDisplay component from remote machine

2006-06-20 Thread Tom Chiverton
On Tuesday 20 June 2006 15:16, Bhavin Padhiyar wrote: I try out with some other examples that also give same kind of error even in flexstore example of adobe having same error. What error is that then ? -- Tom Chiverton This email is

[flexcoders] Re: Design Pattern books for AS3 and Flex 2

2006-06-20 Thread ben.clinkinbeard
Just wanted to add another vote for Head First Design Patterns. Its a great way to approach the topic that I think could be helpful for anyone from absolute beginner up to a pretty experienced 'patterner'. In my limited reading on it, it also seems like the Cairngorm framework has some pretty

[flexcoders] Reusing Cairngorm views

2006-06-20 Thread Tom Chiverton
If I try and reuse a view (say on two different tabs, each using a different dataProvider in the model), I get an error like: Error: View names must be unique. A view has already been registered with filesAndCheckoutControlBarViewHelper at

Re: [flexcoders] Re: Design Pattern books for AS3 and Flex 2

2006-06-20 Thread Michael Schmalle
Head First Design Patterns It's on my shelf also, btw, check out the Kiwi project at adobe. There are very good examples of Abstract Factories, Singleton managers and a bunch of interface tricks. Peace, MikeOn 6/20/06, ben.clinkinbeard [EMAIL PROTECTED] wrote:

[flexcoders] F2B3 bug in serialization of XML in AMF0

2006-06-20 Thread Xavi Beumala
Hi there,I'm trying to receive an org.w3c.dom.Document Object from OpenAMF using AMF0 in F2B3. It works great on Flash8 but on F2B3 it's not receiving anything. It seems like the XML serialization is not working correctly. Couls someone confirm it please?BestX. __._,_.___ -- Flexcoders

Re: [flexcoders] Flash Video Crash Frequency Becoming Alarming

2006-06-20 Thread Tom Chiverton
On Tuesday 20 June 2006 15:56, Dave Carabetta wrote: Major commercial sites where the browser tends to crash: CNN.com ESPN.com I spent 5 minutes clicking on each site, and it didn't crash. Mind you, ESPN claims I needed Flash 8 most of the time, so their in a world of hurt already :-) --

Re: [flexcoders] New to Flex 2.0 Help please

2006-06-20 Thread Tom Chiverton
On Monday 19 June 2006 02:45, Silpa sirivella wrote: I may have to develop some RIA application using Flex2.0. I'm using Weblogic as my application server. When try to . I've got Flex 1.5 jars(flex-bootstrap.jar). do i need to update any jars for flex 2.0? if so where can i get new jar files.

Re: [flexcoders] Flash Video Crash Frequency Becoming Alarming

2006-06-20 Thread Dave Carabetta
On 6/20/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 20 June 2006 15:56, Dave Carabetta wrote: Major commercial sites where the browser tends to crash: CNN.com ESPN.com I spent 5 minutes clicking on each site, and it didn't crash. Mind you, ESPN claims I needed Flash 8 most of

RE: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-20 Thread Ely Greenfield
Well, there is no itemRenderer property on the chart classes, just the style, so trying to assign it will result in either a compiler error or a runtime error (depending on whether the compiler can determine if it's illegal...i.e., depending on whether the reference is strongly typed or not).

RE: [flexcoders] Re: Getting rid of rectangle on axis (FB2.3 charts)

2006-06-20 Thread Ely Greenfield
Your link seems to be broken. Still hard to undestand what you're describing, but it sounds like you may be misinterpreting what's on screen. By default, most of the charts' axes draw a thick axis line, and then white minor tick marks on top of it. if you set the minorTickPlacement

[flexcoders] Garbage collection and removeChild [Flex 2 beta 3]?

2006-06-20 Thread sourcecoderia
From the documents when using removeChild the removed display item is added to the garbage collection for later removal. However I'm reusing component instances and creating new instance of the same (a sort of tabbed interface where children are created and removed at will. The listeners for

RE: [flexcoders] Flash Video Crash Frequency Becoming Alarming

2006-06-20 Thread Daniel Tuppeny
You should be able to find the swf in your temp internet files folder. (Might be an idea to clear it, then visit the site, so there's less to search through). If you can find it, and it happens every time, you've got something to send to Adobe or get others try. On XP, it's usually at:

[flexcoders] Re: How to integrate Flash and Flex well done ?

2006-06-20 Thread rbn
Hey Roberto, maybe these links could be of help... http://lists.motion-twin.com/pipermail/mtasc/2005-October/028565.html http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=2940.html cheers, rbn --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Design Pattern books for AS3 and Flex 2

2006-06-20 Thread Alan Shaw
Danny Patterson and Joey Lott have an AS3 design patterns book coming out this summer from Adobe. They presented parts of it at FlashBelt last week, and it's going to be a must buy. -A On 6/20/06, Phil Marston [EMAIL PROTECTED] wrote: don't know about flex as 3 specifically, but worth

[flexcoders] Is it possible to replace UI controls in mxml at runtime?

2006-06-20 Thread Dong Lee
Hi, I'mcreating a generic Search componentthat contains few buttons, a form, say 'formSearch'to capture the search parameters. Using the component I need to serach on persons, accounts, transactions etc. and have separate PersonSearch, AccountSearch, TransactionSerach 1. Is it possible

[flexcoders] Flex 2 Consultant Wanted

2006-06-20 Thread bchirgwin
We would like a consultant to help us with the design and maybe code a Flex product currently under development. The development is in Flex 2b3. Preferably the candidate would be located near Orlando or Washington DC. After inital contact we would like the person available on occasion to

Re: [flexcoders] Is it possible to replace UI controls in mxml at runtime?

2006-06-20 Thread Jeremy Lu
Sure you can, try view state or viewstack, they are built for this :-) Jeremy. On 6/20/06, Dong Lee [EMAIL PROTECTED] wrote: Hi, I'mcreating a generic Search componentthat contains few buttons, a form, say 'formSearch'to capture the search parameters.

Re: [flexcoders] Design Pattern books for AS3 and Flex 2

2006-06-20 Thread Jeremy Lu
well, seems it's a bit too late to add my vote for Head First Design Patterns. Personally I think this is a *MUST* read (over and over again and port those java code to AS3) for every serious engineer :-) Recently I've be thinking about implement Memento and Command Pattern in Flex 2 so the

[flexcoders] remoteObject send failing

2006-06-20 Thread hank williams
I am trying to get remoteObjects up and running, talking to a FDS. I use mxml binding, and when I actually make the send() call to my remote object it generates an error send failed. It does not appear that the message is ever getting to the server because there is no traffic on the java console.

[flexcoders] Anyone has UML of BusinessDelegate, ServiceLocator, EventBroadcaster

2006-06-20 Thread junhufr
Does anyone have the UML diagrams of BusinessDelegate ServiceLocator EventBroadcaster FrontController etc., which mentioned in the book Developing rich clients with Macromedia Flex Thanks in advance. Yahoo! Groups Sponsor ~-- Check out the new

[flexcoders] Re: Access SOAP fault code

2006-06-20 Thread kellyb723
I'm using .NET 2.0 WebService from Flex 2.0. If my web service throws an exception I do receive the exception message in the FaultEvent.fault.faultString in Flex. - Kelly --- In flexcoders@yahoogroups.com, Daniel Tuppeny [EMAIL PROTECTED] wrote: Cool, I thought it just copied the one from IE!

[flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-20 Thread Bill Sahlas
Are you attempting the Sample app called SessionTracker? Can you give me more details? Bill Sahlas ColdFusion QA Adobe Systems Inc. 275 Grove Street Newton MA 02246 p: 617.219.2167 [EMAIL

RE: [flexcoders] Re: Access SOAP fault code

2006-06-20 Thread Carson Hager
That is very surprising. That really should not happen. Are your web services not sending back an HTTP 500? Per the spec, they are required to. Carson From: flexcoders@yahoogroups.com on behalf of kellyb723Sent: Tue 6/20/2006 1:44 PMTo: flexcoders@yahoogroups.comSubject:

[flexcoders] Re: Access SOAP fault code

2006-06-20 Thread kellyb723
I have to appologize for my own stupidity. I'm actaully wrapping my WebServices in a try/catch that return a failure status. The fault event only tell me an HTTP Error occured. - Kelly --- In flexcoders@yahoogroups.com, kellyb723 [EMAIL PROTECTED] wrote: I'm using .NET 2.0 WebService from

[flexcoders] remove all content of RichtextEditor

2006-06-20 Thread Jesús Iglesias
Title: Mensaje Hi, I have a richtexteditor in wich I load some html with embeded images, ie: ptext text text img src=""/ more text more text /p At one moment I need to change the content of the richtexteditor and load other diferent text. This is partially done, the text is changed

[flexcoders] Re: Anyone has UML of BusinessDelegate, ServiceLocator, EventBroadcaster

2006-06-20 Thread Tim Hoff
Don't have the UML diagrams, but there is a good Cairngorm Flow Chart pdf here: http://www.corbell.com.au/docs/Cairngorm%20flow%20chart.pdf Cheers,-TH--- In flexcoders@yahoogroups.com, "junhufr" [EMAIL PROTECTED] wrote: Does anyone have the UML diagrams of BusinessDelegate ServiceLocator

RE: [flexcoders] Tabbing through items in a container

2006-06-20 Thread Deepa Subramaniam
Currently in the framework, you cannot tab through components like Label, Text and Image. They will not respond with a focus highlight which other controls, like a Button, do. Try your same test case with a Button and you'll see that the controls respond to tabbing in the order specified by

RE: [flexcoders] Re: How to integrate Flash and Flex well done ?

2006-06-20 Thread David Mendels
Hi, Future yes; present--requires some hoops. Background: the new Flash Player contains both the old Actionscript Virtual Machine (AVM0) the executes AS1 and AS2 and the new AVM2 that executes AS3. This allows us to have the new VM, language and performance and keep backward compatibility with

[flexcoders] Re: remoteObject send failing

2006-06-20 Thread Doug Lowder
Hi Hank, You should be able to call your RemoteObject method directly. See if the following works: mx:Button label=get chart data click=chartTemplate.findCharts(1) / - Doug --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: I am trying to get remoteObjects up

Re: [flexcoders] Re: remoteObject send failing

2006-06-20 Thread hank williams
Well, that is a much cleaner call, but it still does the same thing :(HankOn 6/20/06, Doug Lowder [EMAIL PROTECTED] wrote:Hi Hank,You should be able to call your RemoteObject method directly.See if the following works:mx:Button label=get chart dataclick=chartTemplate.findCharts(1) /- Doug---

RE: [flexcoders] Re: remoteObject send failing

2006-06-20 Thread Peter Farland
Hank: 1. Are you compiling with a reference to the services configuration file? Either through a --services command line option to mxmlc (or a compiler services element in flex-config.xml)? 2. Do any of your channel endpoints use a {context.root} token? If so, have you specified a

Re: [flexcoders] Re: remoteObject send failing

2006-06-20 Thread hank williams
On 6/20/06, Peter Farland [EMAIL PROTECTED] wrote: Hank: 1. Are you compiling with a reference to the services configuration file? Either through a --services command line option to mxmlc (or a compiler services element in flex-config.xml)?This is what is in the properties flex

Re: [flexcoders] Re: Accordion state change?

2006-06-20 Thread Impudent1
Tim Hoff wrote: Instead of states, you can use a little binding, like: mx:Text x=10 y=10 text={ScriptsAccordion.selectedChild.label} Page Text width=218 id=text1/ Or, create an Array that contains the text that you want to display, in the same order as the Accordion children. You would

RE: [flexcoders] Please Help With MXMLC Compile Error

2006-06-20 Thread Tobias Patton
Hi Lance; I had a similar problem and the solution was to remove all the comments from the mxml file that was failing in the compiler. Yes. Thats right. Remove all the comments. It made no sense to me either. Ive been assured by Adobe that this is a known bug that will be fixed

Re: [flexcoders] F2B3 bug in serialization of XML in AMF0

2006-06-20 Thread Carlos Rovira
Xavi, the same here,Yesterday I was trying the same and notice the same issue. It's very strange because if Adobe maintains AMF0 for backward compatibility, we should expect to work with XML the same as before and we should be able to send as expected in any version of the flash player. The

RE: [flexcoders] High Level: Actionscript Components vs. Importing Actionscript Classes

2006-06-20 Thread Jim Robson
Evan: Good question! I think that the primary difference between a component and a class is how you use it. You import a class using the ActionScript import statement and then access the properties and methods of that class in your ActionScript code, whereas a component is declared using

Re: [flexcoders] Re: remoteObject send failing

2006-06-20 Thread hank williams
Oh also, in my flex-config.xml I do define the context root like this:context-root/uploadSever/context-rootagain, that is the name of the web app.Hank On 6/20/06, hank williams [EMAIL PROTECTED] wrote: On 6/20/06, Peter Farland [EMAIL PROTECTED] wrote: Hank: 1. Are you compiling with a

[flexcoders] How do I get around having 1 or 0 items when bound to a grid?

2006-06-20 Thread richardhughes260
How do I get around having 1 or 0 items when bound to a grid? In the Data Grid, Retreiving Data example on http://flexapps.macromedia.com/flex2beta3/explorer/explorer.html It breaks when you have less than two items in the XML data. :( How do I get around this? ?xml version=1.0

[flexcoders] LoadVars problem

2006-06-20 Thread Mehdi, Agha
Title: LoadVars problem Hi all, I have any application that submits data to a coldfusion page using LoadVars. When I run it from 1 server it works fine but doesn't work from the other server. The page that accepts submission is the same in both cases. Scenario: Server 1 submits to a page

[flexcoders] FlexPrintJob and large DataGrids?

2006-06-20 Thread djbrown_rotonews
I've got a large DataGrid that the user needs to scroll (vertically) through to view completely. When I go to print this, I only get the portion that is currently displayed to print out (I'm using the dataGrid itself as the UI component to print, so that's not the issue). Any ideas? Here's

[flexcoders] Flex Custom Security W/Jboss

2006-06-20 Thread jfournet
We are using flex 1.5 custom security w/jobss. Jboss appears to be caching security data. When we delete a user it seems that we can still log in as that user for a short period of time. Does anyone know if jboss caches this and if so how to purget this from the cache so users that don't

[flexcoders] Re: FlexPrintJob and large DataGrids?

2006-06-20 Thread Tim Hoff
Hi, The docs recommend that, for print jobs, you create a seperate custom component that contans the DataGrid in it's full size (no scroll bars). The print DataGrid is bound to the same dataProvider as the view DataGrid. -TH --- In flexcoders@yahoogroups.com, djbrown_rotonews [EMAIL

Re: [flexcoders] Re: remoteObject send failing

2006-06-20 Thread hank williams
Just as a test I changed the definiton of the my-amf endpoint in flex-enterprise-services.xml to http://localhost:8080/uploadServer/messagebrokersilly/amfjust to see if this would effect what the flex debugger says I am looking for.It still says it thinks the channel definition is:channel

  1   2   >