[flexcoders] Declaring webservices??

2006-07-17 Thread Ken Bromberger
smime.p7m Description: S/MIME encrypted message

[flexcoders] Bind label to class attributes

2006-07-17 Thread Jonas Windey
Hi, I use the following code: [Bindable] public var currentUser:FtpUser; In my titlewindow, I have: title=User settings ({currentUser.name}) This is working perfect, I fill the currentUser from inside the caller of the titlewindow, and it's setting the correct result. However, I get a warning

Re: [flexcoders] Re: Spring Enable Flex

2006-07-17 Thread Tom Chiverton
On Friday 14 July 2006 18:32, Allen Riddle wrote: Mule, and Flex DS all have their own config formats, however, XFire and Mule, are Spring enabled, so you can configure them with the dependencies using Spring, and configuration at that point becomes much much easier. I don't think there is

[flexcoders] Re: Dumb Newbie Question - Underlined Hyperlinks

2006-07-17 Thread olivierdejonge
... no flippin way to specify the links in a TextArea to be blue. I have the same problem with external stylesheets. In Flex 1.5 there was a way to attach a:hover, a:link style from an external stylesheet to a TextField (this is not a TextArea!) with: var textField:TextField; var styles = new

[flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Sergey Kovalyov
Hi All! In Flex 1.5 there was popUp boolean property in UIObject class. It was set to true if UIObject instance is popup and false otherwise. How to examine this now? Sergey. Yahoo! Groups Sponsor ~-- Check out the new improvements in Yahoo! Groups

Re: [flexcoders] RPC Vs. FDS and FDS Express

2006-07-17 Thread Tom Chiverton
On Sunday 16 July 2006 10:03, David wrote: After reading through a few messages on this site i noticed this comment in one of the posts: 'If your server-side data requirements are intense, you might want FDS, Flex Data Services. For normal data access, the RPC functionality is sufficient, and

RE: [flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Dirk Eismann
In Flex 2 this property is called isPopUp and is defined in mx.core.UIComponent Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Monday, July 17, 2006 10:33 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Bind label to class attributes

2006-07-17 Thread Dirk Eismann
You'll have to either make the name property of your FtpUser class [Bindable] as well or set [Bindable] on the FtpUser class level. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonas Windey Sent: Monday, July 17, 2006 10:07 AM To:

RE: [flexcoders] Declaring webservices??

2006-07-17 Thread Dirk Eismann
It's not out-of-the-box in Flex 2 but you can easily write a singleton-alike class that stores the references to your WebService instances and access it from anywhere in your application. The Cairngorm framework uses this approach for its ServiceLocator class. Dirk. From:

[flexcoders] Re: Faces of Flex

2006-07-17 Thread Tom Chiverton
On Saturday 15 July 2006 06:33, Tariq Ahmed wrote: On the lighter side of things... http://www.cflex.net/FacesOfFlex/ That's a funny noise. Oh - it's my Apache banging into it's hard resource limit :-) So, sorry to everyone trying to read my blog - have to hope it calms down during today,

Re: [flexcoders] OT: average cost for an SDK?

2006-07-17 Thread Tom Chiverton
On Saturday 15 July 2006 02:09, Paul Andrews wrote: What's the point Well, yeah :-) Generally the more niche a project, the more expensive. Intel will sell you their own C compiler, for instance, for silly money, where as Flex is free :-) -- Tom Chiverton

[flexcoders] Re: RPC Vs. FDS and FDS Express

2006-07-17 Thread David
Nick, Thanks for your comments! I was thinking the same thing, but as of this time, I only have a handful of clients that all like having their own hosting plans. Also, if what you say is true, then you really do have to have FDS installed in order to us the Flash Remoting functionality in

[flexcoders] How To Use DataServices In Flex Builder???

2006-07-17 Thread Mr.Unlimited
Hi FrensMines a basic question n i believe anybody can help me out.. i wanna know how to use DataServices in Flexbuilder.. is there any configuration settings to be made or somethin??i have installed DS n then Builder too.. but i am not able to work with data services in my builder.

Re: [flexcoders] Dashboard Sample: problems

2006-07-17 Thread JesterXL
If you go look at mx.core.SimpleApplication, you'll see it makes a 2 frame movie. Init code on frame 1, the app stuff on frame 2. There are actually potentials to make a 3 frame movie (Roger described it in the past as to that's where it shoves RSL's I think). It's sort of the same setup,

[flexcoders] FDS question

2006-07-17 Thread jeremiah johnson
I read about FDS dozens of times per day on this list, but I can't quite work out exactly what it is. It seems clear that for real-time or highly dynamic data, FDS reigns supreme, but why? What makes FDS better than dynamically generated XML, for example? CLEARLY I'm missing something about

[flexcoders] Button mouseUpOutside?

2006-07-17 Thread Jonas Windey
Hi, I need to trigger a function when you release the mouse button outside the button (e.g you click on it, drag outside the button, and release the mouse) Any way to catch that? Jonas __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: need solution/best practice regarding VO's

2006-07-17 Thread Tom Chiverton
On Friday 14 July 2006 21:40, Tim Hoff wrote: a labelFunction would be sufficient in this case. Probably, yes. I would be tempted to make it an item renderer, just so that in the future if it becomes a flag graphic or something it's less work to do (and code to touch). -- Tom Chiverton

[flexcoders] Re: Cell Renderer and component life cycle

2006-07-17 Thread Tim Hoff
Hi Matti, Every cell uses a seperate instance of the itemRenderer. However, to improve performance, some classes recycle the itemRenderer's DisplayObject. As you traverse the class hierachy, some base classes also reference the itemRenderer for various reasons. When you trace it behind the

Re: [flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Sergey Kovalyov
Okay, thank you. But still. Every DisplayObject, not only UIComponent, could be popUp. How to deal with them? I found that popUpChildren : IChildList exists in SystemManager class description. But how to get correct instance of that SystemManager and whether it's what I'm looking for? On 7/17/06,

[flexcoders] No way to removeItem()

2006-07-17 Thread Sergey Kovalyov
Hi All! I found that there is no method removeItem() in ArrayCollection class. You need to call yourArrayCollection.removeItemAt(yourArrayCollection.getItemIndex(item)) each time you want just to remove item. I wonder why? Adobe even created class ArrayList in FlexUnit utils package with such

[flexcoders] Re: Cell Renderer and component life cycle

2006-07-17 Thread Tim Hoff
Can't confirm with 1.5, but it's sensible to think that it follows a similar approach. Since every cell is a unique object, an instance of the itemRenderer is used to create the DisplyObject. I'm not sure exactly what you are asking. When the individual cell has finished rendering?

[flexcoders] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread olivierdejonge
How do I connect an external stylesheet to a textfield so the htmlText gets the right styles? In Flex 1.5 that was easy: var styles:TextField.StyleSheet = new TextField.StyleSheet(); styles.load('myStyles.css'); ... function onLoad(ok){ if(ok){ myText.htmlText = hello a

Re: [flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Ralf Bokelberg
Isn't it, that popups are not children of application? Maybe you can check this? Cheers, Ralf. On 7/17/06, Dirk Eismann [EMAIL PROTECTED] wrote: I see what you mean. Unless your application has been loaded into another application then Application.application.systemManager should give you the

RE: [flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Dirk Eismann
Yes, that's true. But e.g. ToolTips also aren't children of the application but live in a different IChildList of the SystemManager :) Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Bokelberg Sent: Monday, July 17, 2006 2:06 PM

[flexcoders] DateChooser Scrool Events

2006-07-17 Thread grant.straker
I'm trying to handle a DateChooser scroll event to run function when the month is changed in a datechooser and Im not having too much luck. If this works for a change event change =filterByDay(DateChooser(event.target).selectedDate); What do I pass for a scroll event? and what type

Re: [flexcoders] SWFLoader Issues

2006-07-17 Thread milan kosir
Thank you for example. I have another question.I'd like to change some properties on loaded swf when it is loaded. I can do it manualy, once it is loaded. But, is it possible to access host application functions/variables from loaded swf? For example in creationComplete event ? Any help

RE: [flexcoders] DateChooser Scrool Events

2006-07-17 Thread Stacey Mulcahy
mx:DateChooser scroll=getItems();/ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of grant.straker Sent: Monday, July 17, 2006 5:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DateChooser Scrool Events I'm trying to

[flexcoders] Urgent! Problem using ArrayUtil.toArray for a http result ( Flex 2 SDK release)

2006-07-17 Thread jmorpher03
I used to convert the result of a httpservice request , using the ArrayUtil.toArray() in Flex 2 Beta 3 and assign it to an ArrayCollection ( as a source to a ComboBox), it used to work, but now in the latest release version, its just giving an Object with comma separated values. What could be

[flexcoders] Re: Urgent! Problem using ArrayUtil.toArray for a http result ( Flex 2 SDK release)

2006-07-17 Thread Tim Hoff
Hi, Since it's urgent, add: makeObjectsBindable=false, to the HTTPService tag. -TH --- In flexcoders@yahoogroups.com, jmorpher03 [EMAIL PROTECTED] wrote: I used to convert the result of a httpservice request , using the ArrayUtil.toArray() in Flex 2 Beta 3 and assign it to an

Re: [flexcoders] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread Tom Chiverton
On Monday 17 July 2006 13:02, olivierdejonge wrote: How do I connect an external stylesheet to a textfield so the htmlText gets the right styles? . But how to do this in Flex 2.0, when function 'load()' doesn't exist You can't apply styles at runtime in Flex 2 using a stylesheet (yet - there

[flexcoders] flex1.5 custom component create problem

2006-07-17 Thread aoi_zip
Because swc inherit from uicomponent, it doesn't support attachMoive or duplicate like a movieclip. If I use similar way to attachMoive, I know that I should use a createObject and then I want to know the way how to use it in detail. At now, nothing is exposured in createObject.

Re: [flexcoders] flex1.5 custom component create problem

2006-07-17 Thread JesterXL
Old, but still relevant to Flex 1.5's API. Basically: - define symbolName, symbolOwner, and className - use createClassObject http://dev.jessewarden.com/captivate/flashcomponents/main.html - Original Message - From: aoi_zip [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday,

Re: [flexcoders] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread JesterXL
He meants the Flash Player 6' ability to load StyleSheets into TextFields, not Flex' CSS. I know it's confusing sounding, but they are two different things. - Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 17, 2006 8:47 AM

Re: [flexcoders] Re: RPC Vs. FDS and FDS Express

2006-07-17 Thread Nick Collins
I didn't say anything about FDS needing to be there to use remoting... for that all you need is the coldfusion update. I merely said that I had installed express... that way it's available should I need it. Thusfar I have not. Also, truth be known, I'll likely never purchase a license of FDS,

Re: [flexcoders] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread Jean-Luc ESSER
I didn't tried it, but from help, this should work : package { import flash.display.Sprite; import flash.text.StyleSheet; import flash.text.TextField; import flash.text.TextFieldAutoSize; public class StyleSheetExample extends Sprite { public function StyleSheetExample() { var

[flexcoders] addressing individual chartItems

2006-07-17 Thread sp0rarb3jd3r
Working with the linechart component is there any way of addressing the individual chartItems? One by one. Let's say you want at certain significant ChartItem to turn red is there an index that you could traverse. Something along the lines: for (i - lineseries.ItemArray)

[flexcoders] Re: HTTPService in components

2006-07-17 Thread mcmcbrianfarrell
--- In flexcoders@yahoogroups.com, Carson Hager [EMAIL PROTECTED] wrote: Can you include the errors here? Without them, it's a bit hard to figure out what might be going on. Carson, My code is: ?xml version=1.0 encoding=utf-8? mx:HTTPService id=usrRequest url=usr.xml useProxy=false /

RE: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Andrew Trice
Is that all of your code? If so, you need to include the namespace on the root node of the component. mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml id=usrRequest url="" useProxy=false / _ Andrew Trice Cynergy Systems, Inc.

[flexcoders] Font mysteries

2006-07-17 Thread Tom Fitzpatrick
Fonts are exhibiting some wacky behavior for me. I have a VBox that contains two simple label elements. I'm trying to add a filter to the VBox and have the fonts in the labels display properly. Before the filter is applied, the Label fonts display fine. When I add a glow filter to the VBox,

Re: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Tom Chiverton
On Monday 17 July 2006 14:19, mcmcbrianfarrell wrote: My code is: ?xml version=1.0 encoding=utf-8? The prefix mx for element mx:HTTPService is not bound. You haven't got the namespace (xmlns:...) declared. -- Tom Chiverton This email

RE: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Carson Hager
Technically you need to have quotes around the attribute value, but that's basically right. :) mx:HTTPService xmlns:mx="http://www.adobe.com/2006/mxml"id="usrRequest" url="" useProxy="false" / Carson Carson HagerCynergy Systems,

Re: [flexcoders] Font mysteries

2006-07-17 Thread JesterXL
David Colletta mentioned to me on the Flexcomponents list that Microsoft Windows' ClearType sometimes gets turned off during component redraws. I've experienced this exact same thing you have. If you turn ClearType off (desktop, right click properties, appearence tab, effects button) you can

Re: [flexcoders] Re: HTTPService in components

2006-07-17 Thread JesterXL
$10 says its his email client. Everytime I try to manually create xmlns, it forces them to hyperlinks. - Original Message - From: Carson Hager To: flexcoders@yahoogroups.com Sent: Monday, July 17, 2006 10:11 AM Subject: RE: [flexcoders] Re: HTTPService in components Technically

RE: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Carson Hager
Yeah I was just giving a coworker a hard time. :) Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Totaling Items

2006-07-17 Thread s_hernandez01
Hey Flexers I am having trouble creating a function that would total all the items added to my shopping cart. If anybody can help me out with my code, I'd appreciate it. I am still new to flex and don't know much of actionscript 3 so any advice would help me out alot. Below is a link to the

[flexcoders] problem of script execution with flex and flash player

2006-07-17 Thread khaled zaghdoud
hello,I'm trying to draw a curve, that represent a sound recorded, by detecting a samples of the actvitylevel of the micro when it recording the sound and drawing it using the chart class.I got a problem 'Cos it seems that the script that sample the micro activity slow down the flash player,

Re: [flexcoders] Panel Problems

2006-07-17 Thread juan sanchez
something like this happened to me when i had an application with multiple states. in one of those states i had a component with multiple states. and in one of those states i had a tab nav with a view stack. when i switched to the state with the view stack my app froze. in fact, it happened

Re: [flexcoders] Best $$$ Price on Flex?

2006-07-17 Thread Greg Hamer
Academic licenses for Flex 2 w/Components are $79. Of course you have to be a student, teacher, professor, etc. One source here: www.academicsuperstore.com/market/marketdisp.html?PartNo=760814 For standard licenses, it looks like CDW.com has discounted down to $593.99. Link here:

Re: [flexcoders] Best $$$ Price on Flex?

2006-07-17 Thread Douglas Knudsen
only if your a big corp working with a vendor :)DKOn 7/17/06, Greg Hamer [EMAIL PROTECTED] wrote: Academic licenses for Flex 2 w/Components are $79. Of course you have to be a student, teacher, professor, etc. One source here:

[flexcoders] Dump object to Console

2006-07-17 Thread Lisa Nelson
Dear All, More debugging woes. I have some other cause of the debugger not working in subcomponents - just blows by the breakpoints. But I have a question that could maybe bypass 90% of the reason I tend to use the debugger anyway. Does anyone have a way of just dumping an object to the

[flexcoders] mx:List and displaying images

2006-07-17 Thread arnold_charming
Hi! I'm using XML to get the required data for mx:List component. Every node has an attribute called myIcon which stores the name of the image. Now I just want to read the name of image which is stored in myIcon attribute and display thta image in mx:List. And hint would be great. thank you.

Re: [flexcoders] Dump object to Console

2006-07-17 Thread JesterXL
For a shallow copy, use a for in / for each loop. var s:String = ; for ( var p:* in o) { s += p + : + o[p] + \n; } trace(s); For something more, like a tree, use mx.utils.ObjectUtils.toString. I have a DebugWindow I use here so you don't have to toggle to FlexBuilder to see your traces.

RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Kevin Mulvihill
Are there any limitations on academic licenses, like limited functionality or ugly splash screens? Just so happens I'm taking some courses this summer... thanks. Kevin From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg HamerSent: Monday, July 17,

[flexcoders] problem with secure RTMP

2006-07-17 Thread Dimitrios Gianninas
Hi, Has anyone setup secure RTMP successfully? I have created my keystore and specified it in the services-config.xml and it just doesn't work. Port is open as well, I verified that with my network admins. The only error I see in my flex log is below. After waiting 20 secs for a get()

RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Shannon Hicks
The traditional limitations are that you must be in education, and you must only use it for educational purposes. I.E. if you want to release an application that you got paid to build, you need to buy the full version. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] Font mysteries

2006-07-17 Thread Tom Fitzpatrick
Thanks for the suggestions. Since the filter is being applied to a VBox, my only option was to try a custom setting for the cacheAsBitmap attribute. Resetting both the cacheAsBitmap and cachePolicy attributes for both the VBox and the Labels didn't solve the problem. The mystery remains... -

RE: [flexcoders] selecting a child node on a tree

2006-07-17 Thread Tracy Spratt
My 2.0 and e4x is still a bit poor but first you will need to find a reference to the node you want to expand.  You can use the e4x xpath-like expressions to find the node with the specified label. Then pass that node into expandItem() method. Iltt try to find an example.

[flexcoders] URLLoader compile error

2006-07-17 Thread flexnewbie06
Hi I am trying to load an xml doc to the loader...i get a compile error 1120 on the xml_loader variable. onComplete is a function I wrote to list the xml data into a list. Any suggestions on what I'm doing wrong? var xml_loader:URLLoader = new URLLoader; var xml_request:URLRequest = new

RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread David Mendels
Hello, I have not reviewed the EULA recently and so others could comment in more detail, but Shannon is correct below. There are no functional limits on the product, however you must have a valid education ID to purchase and use it in that context. You can purchase an educational license

[flexcoders] Adobe Resources

2006-07-17 Thread flexnewbie06
I just need to say it seems that every page I need to access on the Adobe livedocs is missing...this is very frustrating. Sorry folks, needed to see if others are experiencing this also. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Org Chart

2006-07-17 Thread hitch_nj
Hi, I want to create an organisation chart, want to know if there are any samples available. Actually I am new to Flex and would like to know where to start. Thanks h -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Adobe Resources

2006-07-17 Thread Carson Hager
I'm getting problems all over many of their sites, not just that one. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com

[flexcoders] calculation fields in datagrid

2006-07-17 Thread hank williams
I want to create a column in a datagrid that doesnt actually exist in the underlying dataProvider but that is calculated based on several values in the dataProvider. I would imagine that somehow I could do this with a custom itemRenderer, but it seems to me an itemRenderer only has access to

Re: [flexcoders] Adobe Resources

2006-07-17 Thread JesterXL
This one works for me: http://livedocs.macromedia.com/flex/2/langref/index.html Not you? - Original Message - From: flexnewbie06 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 17, 2006 2:26 PM Subject: [flexcoders] Adobe Resources I just need to say it seems that

[flexcoders] Re: tryin to extend the Button (flex1.5)

2006-07-17 Thread Doug Lowder
You can set the useHandCursor and onRelease properties in a mouse over handler, like so: class myComponents.myButton extends mx.controls.Button { public function myButton(){ extraSpacing = 50; this.btnOffset = 1; label = NO LABEL; addEventListener(mouseOver,

RE: [Junk E-Mail - LOW] RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Shannon Hicks
I'm pretty sure he meant to say: "You CANNOT purchase an educational license and then use it commercially." Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David MendelsSent: Monday, July 17, 2006 1:17 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail -

Re: [flexcoders] Org Chart

2006-07-17 Thread Douglas Knudsen
I have one I created. Staye tuned tohttp://www.cubicleman.com/I have to find time to update it to the Flex 2 GR code and make it purtier. It will be open source and all. http://www.cubicleman.com/2006/05/11/cmorgchart-is-here/ is the orginal post...works with FlashPlayer 9 beta 3DK On 7/17/06,

[flexcoders] Re: binding ViewStack.selectedChild to the data model

2006-07-17 Thread Doug Lowder
Yes I believe you're right, that would be a one-time assignment and not a binding. Since you'd have to create that binding in AS code, it's possible there isn't an easy solution. Sorry I don't have a better answer at the moment. --- In flexcoders@yahoogroups.com, jrjazzman23 [EMAIL

[flexcoders] State vars: good, bad, ugly?

2006-07-17 Thread ben.clinkinbeard
As I perused the great sample app Jesse put together (http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html), I came across his simultaneous implementation and criticism of state vars inside ModelLocator. // only do this if you have a 4 hour deadline; // some people think state vars

Re: [flexcoders] State vars: good, bad, ugly?

2006-07-17 Thread JesterXL
'cause ya' gotta keep track of 'em. I'd much rather have state encapsulated away, and it just magically knows when to change. One way in Flex 2 is to: - put a set of state variables on ModelLocator like the below - bind your View's currentState to the ModelLocator's

[flexcoders] Flex and .NET Objects

2006-07-17 Thread ajackbr
Hi! I'd like to know if someone is working or has some reference to the integration between Flex and Microsoft .NET. I did read in some place that the Flex Data Services would do that dealing with .NET Remoting, but I'm not sure about that. Best regards. Jack Yahoo!

RE: [Junk E-Mail - LOW] RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Matt Chotin
Correct, educational cannot be used for commercial. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shannon Hicks Sent: Monday, July 17, 2006 12:01 PM To: flexcoders@yahoogroups.com Subject: RE: [Junk E-Mail - LOW] RE: [Junk E-Mail - LOW] RE:

[flexcoders] Issue with DragEvents

2006-07-17 Thread Joshua Garnett
I'm trying to capture the dragEnter event in a VBox container, but the event will only fire if the mouse is placed over an empty area of the Vbox. If the mouse is placed over an area that is filled (label, etc..) it doesn't want to fire. Is there a way to enable bubbling of DragEvents? or

[flexcoders] Flex and CF

2006-07-17 Thread Brian Holmes
Hi everyone, Can anyone point me in the right direction of getting CF and FDS up on the same server, as it would be on production server. A deployment guide or old thread would be nice. Specifically I'm trying to load flex applications and widgets in our already established CF framewok.

Re: [flexcoders] Adobe Resources

2006-07-17 Thread Darron J. Schall
When the Flex 2 product line was released, the livedocs pages that were on labs were migrated to the official livedocs site. Because there was such a long beta period, you'll find that a lot of web sites linked to the labs livedocs, and now those links are no longer valid. You can correct

RE: [flexcoders] Flex and CF

2006-07-17 Thread João Fernandes
Do you plan to deploy it together (sharing the same context-root) or different context-root / server instances? João Fernandes -Original Message- From: flexcoders@yahoogroups.com on behalf of Brian Holmes Sent: Mon 17-Jul-06 8:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] Re: Flex and .NET Objects

2006-07-17 Thread Harris Reynolds
Hi Jack. At this point the easiest way to integrate Flex with .Net is to use WebORB. Here's the link: http://www.themidnightcoders.com/weborb/dotnetweborb.htm Hope that helps, ~harris --- In flexcoders@yahoogroups.com, ajackbr [EMAIL PROTECTED] wrote: Hi! I'd like to know if someone is

[flexcoders] Re: Flex and .NET Objects

2006-07-17 Thread Tim Hoff
Hi Jack, Just to be fair to Adobe, you can integrate Flex2 and .Net natively with Flex's built-in WebService and HTTPService functionality. For some this is sufficient; depending on the need. However, I do agree that, for high-end applications that rely on performance, WebORB is a good

RE: [flexcoders] Dump object to Console

2006-07-17 Thread Lisa Nelson
Beautiful in it's simplicity. Thanks. --L -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, July 17, 2006 10:17 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Dump object to Console For a shallow copy, use a for

RE: [flexcoders] Flex and CF

2006-07-17 Thread Brian Holmes
Sorry João, I don't understand the differences. We already have a CF server running through IIS and I just want to be able to load Flex applications and widgets that have access to FDS. So I guess the same context root. -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Re: DateChooser Scrool Events

2006-07-17 Thread grant.straker
I finally figured out the answer to this. You need to pass scroll=scrollEventHandler(event.detail); event.detail is a string if (event == previous Month){ iMonth = iCurrentMonth = iCurrentMonth - 1; } if (event == next Month){ iMonth = iCurrentMonth = iCurrentMonth +

[flexcoders] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Tom Jordahl
--- In flexcoders@yahoogroups.com, Kevin Mulvihill [EMAIL PROTECTED] wrote: Hi all, What do you all recommend for backend server-side technology to work with Flex? I'm planning on some work with MySQL and not particularly interested in .NET. Hi Kevin, I would say that you should look at

[flexcoders] Change graphical skin of a button control at runtime?

2006-07-17 Thread user_abcxyz
Is it possible? I want to allow the user at runtime can change the existent graphical skin of a button, however I am not sure if it's possible in Flex. Please help and give me some snippet code to demonstrate. Thank you. Yahoo! Groups Sponsor

RE: [flexcoders] Flex and CF

2006-07-17 Thread João Fernandes
take a look here, http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d when they say to merge both web.xml keep the MessageBrokerServlet from the ColdFusion web.xml and disregard the one from the extracted web.xml file. Are you running multiserver or J2EE version? if yes, I'd

Re: **SL-JUNK** Re: [flexcoders] Adobe Resources

2006-07-17 Thread Sreejith Unnikrishnan
Or download all the docs in the ZIP format available. - Original Message - From: Darron J. Schall To: flexcoders@yahoogroups.com Sent: Tuesday, July 18, 2006 12:30 AM Subject: **SL-JUNK** Re: [flexcoders] Adobe Resources When the Flex 2 product line

[flexcoders] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Tim Hoff
Hi Tom, Thanks for the info. This is more of a CF question, but the CF-Flex connection should afford a little bit of room here. Does CF support what is called, distributed partitioned views like SQL Server? This allows you to create several small databases with the same structure that can

RE: [flexcoders] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Andrew Trice
Just want to make sure everyone is on the same wavelength here ColdFusion is an application server, not a database. You can have ColdFusion running with SQL Server, MySQL, Oracle, etc ColdFusion can take advantage of this feature if you database will handle it. Although Im not on

[flexcoders] Debugging Java remote Objects in Eclipse

2006-07-17 Thread thunderstumpgesatwork
Hi guys, The following URL used to point to a WIKI page that described the steps for setting up Eclipse to launch the integrated JRun flex server in debug mode so that it is able to debug server-side java code. http://labs.adobe.com/wiki/index.php/Flex_Enterprise_Services:Debugging Where is

[flexcoders] Re: Issue with DragEvents

2006-07-17 Thread Joshua Garnett
I've found the source of my problem. The component is working properly. The issue had to do with hidden TitleWindow pop ups I had. This brings up another issue though. Why are PopUps that have their visibility set to false capturing dragEvents? Is there some way to keep the pop ups from

[flexcoders] Style Inheritance

2006-07-17 Thread JesterXL
How do you ensure itemRenderers, inline and not, inherit styles? For example, I'm using haloSilver for my Application, but the TileList and List aren't listening because of their itemRenderers. --JesterXL Yahoo! Groups Sponsor ~-- See what's

Re: [flexcoders] Re: Issue with DragEvents

2006-07-17 Thread JesterXL
Maybe remove 'em from the displaylist? You can either do it with a state, such as RemoveChild, or remove it from the parentDocument. - Original Message - From: Joshua Garnett To: flexcoders@yahoogroups.com Sent: Monday, July 17, 2006 4:48 PM Subject: [flexcoders] Re: Issue with

[flexcoders] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Tim Hoff
Thanks Andy, So CF would replace ASP.Net as the middle tier. I have no exposure to CF, so that clears things up a bit. But, no native databases in CF? -TH --- In flexcoders@yahoogroups.com, Andrew Trice [EMAIL PROTECTED] wrote: Just want to make sure everyone is on the same wavelength

Re: [flexcoders] State vars: good, bad, ugly?

2006-07-17 Thread Ralf Bokelberg
There are certainly other methods to achieve the same effect, but this MVC approach fits best with frameworks like cairngorm, which already leverage MVC to great extend. Why would we want to introduce another mechanism? This just complicates things. To me, state is something only View's care

RE: [flexcoders] Change graphical skin of a button control at runtime?

2006-07-17 Thread Lance Linder
I have been looking into this exact same thing for the last couple of days and I havent found a way to do it yet either. Seems like this isnt possible but maybe there is some obscure way of doing it that I havent tried yet? From: flexcoders@yahoogroups.com

[flexcoders] Re: Change graphical skin of a button control at runtime?

2006-07-17 Thread Tim Hoff
Hi Guys, You can change styles at run-time by changing the styleName property, or by using setStyle(). Styles can be mxml tags or declared in CSS.mx:Style .myCustomButton1 { overIcon:Embed("overIconImage1.gif"); upIcon:Embed(source="upIconImage1.gif");

Re: [flexcoders] calculation fields in datagrid

2006-07-17 Thread Ralf Bokelberg
Hi Hank, can't you add a getter to your data object?Cheers,Ralf. On 7/17/06, hank williams [EMAIL PROTECTED] wrote: I want to create a column in a datagrid that doesnt actually exist in the underlying dataProvider but that is calculated based on several values in the dataProvider. I would

Re: [flexcoders] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Marcelo de Moraes Serpa
What about CakePHP alongside with CakeAMFPHP? It´s AMF0, but I´m very happy with that.On 7/17/06, Tim Hoff [EMAIL PROTECTED] wrote: Thanks Andy, So CF would replace ASP.Net as the middle tier. I have no exposure to CF, so that clears things up a bit. But,

[flexcoders] DataGrid component cell data

2006-07-17 Thread Tim Hoff
Hi all, I've been struggling with this problem for a couple days, so I'm hoping that someone here can help. I'm extending DataGrid as a new component. The new DataGrid needs to inspect the data in each of the cells to perform a compare function. Being new at this, I just need a push in the

Re: [flexcoders] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Marcelo de Moraes Serpa
Here´s a relevant link: http://blogs.adobe.com/mikepotter/2006/02/flex_and_php_us.htmlOn 7/17/06, Marcelo de Moraes Serpa [EMAIL PROTECTED] wrote: What about CakePHP alongside with CakeAMFPHP? It´s AMF0, but I´m very happy with that.On 7/17/06, Tim Hoff [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: printing/zooming bugs

2006-07-17 Thread Pan Troglodytes
I know this was asked a long time ago, but somehow I must have missed it. Either that or I learned how to do it later. In any case, do this: import flash.ui.ContextMenu; var menu:ContextMenu = new ContextMenu(); menu.hideBuiltInItems(); contextMenu = menu;On 6/30/06, Daniel Tuppeny [EMAIL

  1   2   >