[flexcoders] FlexUnit error while using stage

2008-06-26 Thread Vinoth Babu
Hi, FlexUnit is showing error in my test class for stage.showDefaultContextMenu = false; Please let me know, if you experienced this kind of error Thanks in advance, Vinoth

[flexcoders] Setting unique ID with repeater and custom component

2008-06-26 Thread sdl1326
I am using the Tile Component along with a repeater and then a custom component (image control). Is it possible to give the custom component a unique id/name? I have tried to use a variable associated with the current repeater item ({repeater.currentItem.name}), however, it does not seem that this

Re: [flexcoders] triggering a function (when an argument is a bindable value)?

2008-06-26 Thread nwebb
Hi Joe, thanks. Yep, I considered that along with bindSetter, although I like to keep setters as free of logic (and other method calls) as possible - but I think that's the only way to do it using mxml. On Wed, Jun 25, 2008 at 10:48 PM, Joseph Balderson <[EMAIL PROTECTED]> wrote: > > What I'm

RE: [flexcoders] AS3 interface question

2008-06-26 Thread Rick Winscot
By the way. there is an open issue in the Adobe bug-base regarding this. Vote for it! NOW! http://bugs.adobe.com/jira/browse/ASC-3442 Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Bokelberg Sent: Thursday, June 26, 2008 9:22 AM To: flexcode

[flexcoders] Best Practice Data Binding

2008-06-26 Thread securenetfreedom
In an DataModel class what is the best way to bind data. 1) Make the Setter Bindable, or 2) Make the Getter Bindable and dispatch an event on the Setter? What are the advantages and disadvantages of each? /* *Binding #1 * */ [Bindable] public function set foo(val:String):void{ _fo

RE: [flexcoders] AS3 interface question

2008-06-26 Thread Rick Winscot
This is the monkey Ralf. and it can be a nasty one. It is possible to nerf return types and arguments by using an indeterminate type. Public function get foo():* .and. Public function set foo( bar:* ):void Which will leave you switching a lot to keep things straight. The 'generics'

Re: [flexcoders] RadioButton change event not firing in Flex 3 when button in group is deselected

2008-06-26 Thread Josh McDonald
The problem's in RadioButtonGroup, I've posted the details to the bug. Alex, I've got Contrib permission, but the "submit a patch" document just talks about TortoiseSVN. Is the patch file I need to submit simply: diff /path/to/checkout/foo.as /path/to/new/foo.as > mypatch.diff Just using standa

RE: [flexcoders] Re: Right click context menus

2008-06-26 Thread Rick Winscot
The mechanism for adding a custom context menu item to a standard context menu is the same as adding it to a text sensitive context menu. 1. Create a context menu 2. Create a context menu item 3. Add the custom menu item to the context menu 4. Associate the context menu with the control (in this

[flexcoders] Re: how to make coldfusion working with LCDS?

2008-06-26 Thread markflex2007
I did the selection but I do not know how to make it work so I install seperate one now. Mark --- In flexcoders@yahoogroups.com, "Douglas Knudsen" <[EMAIL PROTECTED]> wrote: > > pay attention during the install of ColdFusion...you get asked to > install a integrated LCDS, eh? > > DK > > On

RE: [flexcoders] RadioButton change event not firing in Flex 3 when button in group is deselected

2008-06-26 Thread Alex Harui
It looks like it was done to prevent events for programmatic changes to .selected which would be correct, but the RBG programmatically unselects an RB and this code now prevents an event which probably should fire. From: flexcoders@yahoogroups.com [mailto:[EMAI

RE: [flexcoders] Re: Right click context menus

2008-06-26 Thread Alex Harui
You might have to make sure the context menu is set on the internal TextField. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sbx33 Sent: Thursday, June 26, 2008 4:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Right cli

Re: [flexcoders] how to make coldfusion working with LCDS?

2008-06-26 Thread Douglas Knudsen
pay attention during the install of ColdFusion...you get asked to install a integrated LCDS, eh? DK On Thu, Jun 26, 2008 at 11:47 PM, markflex2007 <[EMAIL PROTECTED]> wrote: > Hi > > I install LCDS 251.and I see the web root is > C:\lcds\jrun4\servers\default\, > > May I change the web root path

[flexcoders] how to make coldfusion working with LCDS?

2008-06-26 Thread markflex2007
Hi I install LCDS 251.and I see the web root is C:\lcds\jrun4\servers\default\, May I change the web root path (like c:\sites\)? I put *.jsp file in the web root,it works? but I put *.cfm,it doesn't work. How to make coldfusion file working in LCDS web root. Thanks. Mark

Re: [flexcoders] How to Position a Popup relative to the control that invoked the popup?

2008-06-26 Thread Josh McDonald
Keeping in mind that scrollbars can mess up localToGlobal(), it's a known bug. Actually I haven't tested that in Flex 3 release, maybe it's fixed but I don't think so :) -Josh On Fri, Jun 27, 2008 at 12:14 PM, Dimitrios Gianninas < [EMAIL PROTECTED]> wrote: > I think what you what is this: > > 1

RE: [flexcoders] How to Position a Popup relative to the control that invoked the popup?

2008-06-26 Thread Dimitrios Gianninas
I think what you what is this: 1)from the click event get the ref to the button: var btn:Button = event.target as Button; 2) then get its coordinates: var point:Point = new Point(0, 0); point = btn.globalToLocal( point ); 3) now use it to position your pop up mypop.x = point.x; mypop.y = poin

[flexcoders] Re: itemRender Debug Warnings

2008-06-26 Thread jmfillman
Thank you Doug! That fixed it. --- In flexcoders@yahoogroups.com, "Doug McCune" <[EMAIL PROTECTED]> wrote: > > The issue is that you are creating Objects and adding these Objects to your > dataprovider. Objects are not bindable. For a quick fix just do this: > > var objDG:Object = {itemID: myI

[flexcoders] Re: Flex HCI and or design expertise

2008-06-26 Thread nathanpdaniel
Try the Flex Interface Guide - seems to be inline with what you're looking for: http://www.adobe.com/devnet/flex/?navID=fig :D Nathan D. --- In flexcoders@yahoogroups.com, Geoji George <[EMAIL PROTECTED]> wrote: > > Hello- > We have decided to build our new U/I application in Adobe Flex. We

[flexcoders] Re: Flex HCI and or design expertise

2008-06-26 Thread nathanpdaniel
Try the Flex Interface Guide - seems to be inline with what you're looking for: http://www.adobe.com/devnet/flex/?navID=fig :D Nathan D. --- In flexcoders@yahoogroups.com, Geoji George <[EMAIL PROTECTED]> wrote: > > Hello- > We have decided to build our new U/I application in Adobe Flex. We

Re: [flexcoders] Re: How to Position a Popup relative to the control that invoked the popup?

2008-06-26 Thread Josh McDonald
If you're creating a popup on a button click, you must already have an event listener. Can you post the code that creates your popup? -Josh On Fri, Jun 27, 2008 at 11:00 AM, pbrendanc <[EMAIL PROTECTED]> wrote: > Sorry, while I don't mean to be obtuse - however I need some > clarification on how

RE: [flexcoders] Re: How to Position a Popup relative to the control that invoked the popup?

2008-06-26 Thread Tracy Spratt
How far have you actually gotten? Do you have your buttons invoking the pop-up yet? Or is that part of your question? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pbrendanc Sent: Thursday, June 26, 2008 9:00 PM To: flex

[flexcoders] Re: No of Lines of Code

2008-06-26 Thread jer_ela
Simpleist case, use extended search in FlexBuilder and search for \n that will give you number of literal lines of text in your project. To get a little more complex you can search for \)$|\):\w+$|;$ as a regex and get most logical lines in .as code. If you consider each tag to be a line of code

[flexcoders] Re: How to Position a Popup relative to the control that invoked the popup?

2008-06-26 Thread pbrendanc
Sorry, while I don't mean to be obtuse - however I need some clarification on how/where to get a reference to that event object - that's really what I having a problem with. In my scenario please note: 1) The controls are dynamic, so how to addEventListener to run time controls is unclear to me.

Re: [flexcoders] How to Position a Popup relative to the control that invoked the popup?

2008-06-26 Thread Josh McDonald
You should be able to get the button which triggered the click event from event.target -Josh On Fri, Jun 27, 2008 at 9:55 AM, pbrendanc <[EMAIL PROTECTED]> wrote: > I have a grid with an array of buttons that when clicked, will display > a popup window that collects user info. > What I'd like to

[flexcoders] Re: Unique values on the CategoryAxis

2008-06-26 Thread Tim Hoff
Hey Vijay, For some reason, I don't have the com.adobe.utils.ArrayUtil class; so I can't compile your app. But, instead of using an array for the CategoryAxis's dataProvider, you may want to switch to an ArrayCollection. Binding doesn't play nice with arrays. If that doesn't help, you could ch

[flexcoders] How to Position a Popup relative to the control that invoked the popup?

2008-06-26 Thread pbrendanc
I have a grid with an array of buttons that when clicked, will display a popup window that collects user info. What I'd like to do is position the popup relative (immediately below) the button that the user clicked within the grid - not necessarily centered on the current window. How can I get a

[flexcoders] Re: Right click context menus

2008-06-26 Thread sbx33
Unfortunately, I'm not sure what to even try. If anyone else has any ideas, please let me know. Thanks! --- In flexcoders@yahoogroups.com, "Daniel Freiman" <[EMAIL PROTECTED]> wrote: > > I can't find where in my code I am doing it, but I am. I don't remember > caring about the distinction between

Re: [flexcoders] Re: itemRender Debug Warnings

2008-06-26 Thread Doug McCune
The issue is that you are creating Objects and adding these Objects to your dataprovider. Objects are not bindable. For a quick fix just do this: var objDG:Object = {itemID: myID, index: myAC[myID].id, display: gridDisplay, toolTip: tipText}; myList.dataProvider.addItem( new ObjectProxy(objDG) );

Re: [flexcoders] Re: itemRender Debug Warnings

2008-06-26 Thread Enjoy Jake
I'm not sure I understand what the problem is here, but if you're just looking to get rid of the warning you can do text="{Object(data).display}" - Original Message From: Tracy Spratt <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, June 26, 2008 4:21:46 PM Subject:

[flexcoders] Re: Unique values on the CategoryAxis

2008-06-26 Thread Vijay Anand Mareddy
Thanks Tim, the hardcoded uniqueArr as dataprovider works but it doesnt work when i try to use it as a derived function as follows. http://www.adobe.com/2006/mxml"; layout="absolute"> -VM --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > >

RE: [flexcoders] Re: itemRender Debug Warnings

2008-06-26 Thread Tracy Spratt
Dynamic objects, like that in the "data" property are not bindable. I know how to handle that when I am dealing with XML, but I think you have dynamic objects as items in your AC. No warranty, but try: text="{String(data.display)}" Tracy From: flexcoders@yaho

[flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, "Doug McCune" <[EMAIL PROTECTED]> wrote: > > As a very general word of warning, I'd advise you to be more careful and > expect more pain when working with the following classes (and all associated > base classes, etc): AdvancedDataGrid, OLAPDataGrid, GroupingCo

[flexcoders] Re: itemRender Debug Warnings

2008-06-26 Thread jmfillman
I totally missed the last post or two on this topic, but I still need to resolve this. The full warning message looks like this, each time the itemRenderer is used: warning: unable to bind to property 'display' on class 'Object' (class is not an IEventDispatcher) warning: unable to bind to pr

Re: [flexcoders] RadioButton change event not firing in Flex 3 when button in group is deselected

2008-06-26 Thread Josh McDonald
It makes more sense to me to be for Radiobutton than Checkbox. Why on earth would you not want to get a change event when a checkbox is unchecked? -Josh On Fri, Jun 27, 2008 at 2:48 AM, Samuel Neff <[EMAIL PROTECTED]> wrote: > Thanks for confirming. Bug filed. > > https://bugs.adobe.com/jira/b

Re: [flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Doug McCune
As a very general word of warning, I'd advise you to be more careful and expect more pain when working with the following classes (and all associated base classes, etc): AdvancedDataGrid, OLAPDataGrid, GroupingCollection. I'll try to be extremely politically correct here, but I assume you'll catch

[flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, "Amy" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "Jonathan Branam" > wrote: > > > > There are a bunch of comments below, but to sum up, it seems like > extending > > AdvancedDataGridGroupItemRenderer and drawing a background with the >

Re: [flexcoders] scrollbar in HBox wont go away

2008-06-26 Thread Luke Vanderfluit
Hi. Michael Schmalle wrote: > Hi, > > I have seen this before, your styles need to be of the correct type > value IE Number, unit > > This is correct; > > hbs.setStyle("backgroundColor",0xEE); > hbs.setStyle("paddingBottom",10); > hbs.setStyle("paddingTop",10); > > You were using strings,

[flexcoders] DateTimeAxis week is weak

2008-06-26 Thread Richard Rodseth
Sorry, I couldn't resist. It appears that to get a DateTimeAxis to display labels correctly for weekly data, I have to explicitly set the dataUnits and labelUnits to "week" rather than let it figure things out for itself. The same is not true for days or months. Just sharing/wondering if anyone els

[flexcoders] Re: image snapshot in flex

2008-06-26 Thread netdeep
Can the data not be passed simply as a ByteArray instead of a base64 string? This is from the Adobe documentation for URLRequest: - dataproperty An object containing data to be transmitted with the URL request. This property is used with the method property.

[flexcoders] Re: Profiler problems

2008-06-26 Thread mauricen
Answering my own question: I've installed another instance of FB on a virtual machine and set it to profile the application both importing the project and also remotely, with no difficulties. So the problem is not the project but a screwed-up installation. Obviously the next step is to reinsta

[flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, "Jonathan Branam" <[EMAIL PROTECTED]> wrote: > > There are a bunch of comments below, but to sum up, it seems like extending > AdvancedDataGridGroupItemRenderer and drawing a background with the graphics > property will meet all of your needs. I missed the requ

[flexcoders] Re: DateFormatter gives weird results

2008-06-26 Thread Doug Lowder
Hi Chris, It seems like you are located in a GMT -0500 timezone, and what looks like 19 hours being added to your time is actually 5 hours being subtracted (24 - 5 = 19) so you end up seeing 19 hundred hours from the previous day. This is because the Date() constructor with a single argument

[flexcoders] Re: lcds sample does't work

2008-06-26 Thread markflex2007
The code is simple but why the error happens. Thanks Mark --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > Hi, > > I install lcds 2.5 and I try web service demo.I get following > error.but I get following error.other demos work fine for me. > > Do you have a ide

[flexcoders] Populating Column Chart with PHP and MYSQL

2008-06-26 Thread ghus32
Hello, I have done this with many datagrids and had success but cant seem to get it to work with the column charts. I have several different queries in php where I get the data from but I dont know the format. an example of the php code below I would like to have $num_signage and $num_website as

[flexcoders] Re: Weird Validate & Binding problem

2008-06-26 Thread hardaur55
That was how it was originally (same error). Thought I might be having a type issue so added the Date.parse(). You can actually do it if it's specified in the braces ({}). From http://www.adobe.com/devnet/flex/quickstart/using_data_binding/ : Note: The source property of an tag can contain

[flexcoders] Flex HCI and or design expertise

2008-06-26 Thread Geoji George
Hello- We have decided to build our new U/I application in Adobe Flex. We are looking for someone to give some guidance in terms of HCI and U/I design, who has experience in Flex. This is to help get correct navigation, structure and guidance of certain Flex principals that would be good to i

[flexcoders] DateTimeAxis hours AND date

2008-06-26 Thread Richard Rodseth
Has anyone figured out a simple way to get a DateTimeAxis to display dates and hours when the number of hours shown spans more than one day?

[flexcoders] Re: LCDS Wwith Jrun4

2008-06-26 Thread markflex2007
Hi, I have figured it out. http://localhost:8700 works well. Mark --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > This is my jrun log file: > > eated by JRun on 06/26 10:15:24 > 06/26 10:15:24 info No JDBC data sources have been configured for this > server (se

[flexcoders] lcds sample does't work

2008-06-26 Thread markflex2007
Hi, I install lcds 2.5 and I try web service demo.I get following error.but I get following error.other demos work fine for me. Do you have a idea to fix it?Please help. Mark error message: RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDetail="Des

Re: [flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Jonathan Branam
There are a bunch of comments below, but to sum up, it seems like extending AdvancedDataGridGroupItemRenderer and drawing a background with the graphics property will meet all of your needs. I missed the requirement to preserve leaf icons and such. Is there a reason this doesn't meet your needs, be

RE: [flexcoders] Re: selecting a pre-determined row in a datagrid

2008-06-26 Thread Tracy Spratt
Note, the item instance you pass to selectedItem must be a reference to an item in the dataProvider. selectedItem will not compare property values of different instances. If you need to set the selectedIndex based on the value of a property, you must loop over the dataProvider items and do

RE: [flexcoders] Re: Sleep or Wait command

2008-06-26 Thread Tracy Spratt
Yes, do not use Timer for this, use the "result" event. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Thursday, June 26, 2008 1:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Sleep or Wait command

Re: [flexcoders] Re: Sleep or Wait command

2008-06-26 Thread Paul Andrews
- Original Message - From: "Chris" <[EMAIL PROTECTED]> To: Sent: Thursday, June 26, 2008 6:38 PM Subject: [flexcoders] Re: Sleep or Wait command > See the Timer class. It's the wrong solution to this problem. Flex and Flash is event based, so it's always better to pick up a completion

RE: [flexcoders] Repeater not repeating

2008-06-26 Thread Tracy Spratt
As Jonathan points out, if you use the ArrayCollection API to modify the AC, then the correct events are dispatched. If you use lower level api's, like directly assigning a property aarray.push. those events are not dispatched. Tracy From: flexcoders@yahoo

Re: [flexcoders] Repeater not repeating

2008-06-26 Thread Tom McNeer
Jonathan, Thanks very much for your clear and thorough explanation. One of the major difficulties of discussing matters like this, of course, is semantics. Many common words we might use to describe apparent actions - like "update" or "refresh" -- have such specific meanings within the context of

[flexcoders] null values in Complex Objects From Web Service Generated Proxy Classes

2008-06-26 Thread kbunk79
Hi FlexCoders, I'm getting null values in properties of strongly typed transfer objects, when using the proxy classes generated from the Web Service Introspection wizard in Flex Builder 3. I'm wondering if anyone can help me to resolve this problem? I have used ServiceCapture to verify that th

Re: [flexcoders] Repeater not repeating

2008-06-26 Thread Jonathan Branam
Tom, Sure. It is confusing. I think the concept of the AC being "updated" and "refreshed" is the problem. I'd like to help you understand, because it will prevent future frustration! Your quote: "I assumed (obviously incorrectly) that if the source of the AC was updated, and the contents of the A

[flexcoders] Re: How to set the registration point for a UIComponent

2008-06-26 Thread Eric Cooper
How does one control (or even determine) the registration point? I am drawing a circle and it seems like the center of the circle is being used as the registration point - which means that when I display the center point and radius point (having subtracted topLeft from their "real" positions)

[flexcoders] Re: Unique values on the CategoryAxis

2008-06-26 Thread Tim Hoff
Hi Vijay, This will get rid of your duplicate Apple. Although you have the uniqueArr hardcoded, you can derive that from the data. -TH --- In flexcoders@yahoogroups.com, "Vijay Anand Mareddy" <[EMAIL PROTECTED]> wrote: > > How do i make the CategoryAxis show only unique values > > In my exam

[flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, "Jonathan Branam" <[EMAIL PROTECTED]> wrote: > > Hi Amy, > > I'm trying to follow along, but you've asked several questions now! > > Setting the alpha property should work based on a simple test that I did. As > I look at your code, though, I think you have so

[flexcoders] Re: Sleep or Wait command

2008-06-26 Thread valdhor
As Flex is event based you should never have to use a wait/sleep. All you need to do is add an eventlistener to your HTTPService request. When the request returns the event fires and calls the appropriate function. --- In flexcoders@yahoogroups.com, "timgerr" <[EMAIL PROTECTED]> wrote: > > I am

[flexcoders] Re: Weird Validate & Binding problem

2008-06-26 Thread valdhor
I may be wrong but I didn't think you could use a binding with a function. Try removing the Date.parse function from your binding tag... --- In flexcoders@yahoogroups.com, "hardaur55" <[EMAIL PROTECTED]> wrote: > > Hello all! > > I have a TextInput field that is to accept a date. There is a

Re: [flexcoders] Repeater not repeating

2008-06-26 Thread Tom McNeer
First, Amy, thanks for your suggestion. I had already done this, although it wasn't clear from my note. Jonathan, Thanks for your explanation, and for the solution. Calling refresh() correctly alerts the Repeater. What I guess I don't understand is that the ArrayCollection was always correctly b

[flexcoders] Re: Sleep or Wait command

2008-06-26 Thread Chris
See the Timer class. -Christopher Keeler --- In flexcoders@yahoogroups.com, "timgerr" <[EMAIL PROTECTED]> wrote: > > I am in need of a wait or sleep command that will not stop the whole > applications, just do a wait/sleep in a while loop. Here is what I am > talking about. > > I have this whil

[flexcoders] Re: DateFormatter gives weird results

2008-06-26 Thread Chris
Bump... --- In flexcoders@yahoogroups.com, "Chris" <[EMAIL PROTECTED]> wrote: > > So I have some code which formats milliseconds (for a video player) > in > to NN:SS format. When I try to add the hours (JJ:NN:SS), > DateFormatter adds 19 hours to the result. WTF? Code Below: > > priv

[flexcoders] Sleep or Wait command

2008-06-26 Thread timgerr
I am in need of a wait or sleep command that will not stop the whole applications, just do a wait/sleep in a while loop. Here is what I am talking about. I have this while loop that waits for a string variable to populate from a HTTPService request. When the string is populated I want to break o

[flexcoders] Unique values on the CategoryAxis

2008-06-26 Thread Vijay Anand Mareddy
How do i make the CategoryAxis show only unique values In my example, I dont want the Apple to apear twice on the vertical axis. http://www.adobe.com/2006/mxml"; layout="absolute">

RES: [flexcoders] Server to client calls

2008-06-26 Thread Luciano Manerich Junior
Hi Seth, thank you, and all those answers that i've received. In that sample app, every client receive an event, there is an way that i may filter some clients in server code, instead of ignoring it on the cliente side? Ive seen that there is a property on consumer class that i'ld put an expres

Re: [flexcoders] Repeater not repeating

2008-06-26 Thread Jonathan Branam
Right. The data is there, that's not exactly the problem. The problem is that, although the data is there, the Repeater wasn't told that new data was available. It already looped through the data once when it was empty and it needs to be told that the data has changed. It listens to CollectionEvent

Re: [flexcoders] Best way to submit requests and receive responses to AMF server from non-flash?

2008-06-26 Thread Samuel Neff
Wriitng a client for AMF is not quite as easy as reusing the serializers present in the numerous AMF providers out there. A full AMF request includes more than just what you typically associate with as the AMF message--it has a wrapper, headers, and bodies (typically we think of AMF as just the bo

Re: [flexcoders] RadioButton change event not firing in Flex 3 when button in group is deselected

2008-06-26 Thread Samuel Neff
Thanks for confirming. Bug filed. https://bugs.adobe.com/jira/browse/SDK-15918 Best regards, Sam - We're Hiring! Seeking passionate Flex, C#, or C++ (RTSP, H264) developer in the Washington D.C. Contact [EMAIL PROTECTED] On Thu,

RE: [flexcoders] Server to client calls

2008-06-26 Thread Seth Hodgson
Hi Luciano, Take a look through the sample apps. One of them is a stock ticker sample, and tick updates (messages) that are pushed/dispatched to subscribed Consumers are generated directly by Java code on the server. You could follow the same approach, and generate messages on the server that

[flexcoders] Re: canvas with styles and clickable? how to??

2008-06-26 Thread ben.clinkinbeard
Actually I did. 1 - It definitely is, what styles are you trying to set on it? 2 - Sure does. Are you sure your Canvas has a width and height? I didn't include that in my example tag but it definitely has to be bigger than 0 x 0. Ben --- In flexcoders@yahoogroups.com, David Pariente <[EMAIL

RE: [flexcoders] Re: ANYONE? LCDS Bug? Return from overriden ServiceAdapter manage() disregarded

2008-06-26 Thread Seth Hodgson
Hi Steven, Definitely let me know if you run into trouble with this on LCDS 2.6 beta. Best, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steven Toth Sent: Monday, June 23, 2008 10:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ANYONE? LCDS Bug? Re

[flexcoders] Re: Repeater not repeating

2008-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, "Tom McNeer" <[EMAIL PROTECTED]> wrote: > > I need to have a repeater iterate over an array, displaying an instance of a > custom component for each iteration. > > However, for testing, I am simply attempting to output a button with a > static label within the

[flexcoders] Re: keyCode decremented by 64 when Control key down on Mac

2008-06-26 Thread ben.clinkinbeard
http://bugs.adobe.com/jira/browse/FP-375 --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > File a bug. > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of ben.clinkinbeard > Sent: Thursday, June 2

Re: [flexcoders] Re: canvas with styles and clickable? how to??

2008-06-26 Thread David Pariente
funny, did u ever try that? :) cause i did... 1st.- seems canvas is not stilable, or at least, doesn't show correctly. 2nd.- doesn't respond to clicks. thnx anyway - Mensaje original De: ben.clinkinbeard <[EMAIL PROTECTED]> Para: flexcoders@yahoogroups.com Enviado: jueves, 26 de junio,

RE: [flexcoders] How do I add an swf/image in meta data in my setter

2008-06-26 Thread Alex Harui
Public function set icon(iconClass:Class):void @Embed returns a class. If you want to handle external content as well, look at SWFLoader.source From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djhatrick Sent: Wednesday, June 25, 2

RE: [flexcoders] canvas with styles and clickable? how to??

2008-06-26 Thread Alex Harui
A canvas has no skin, only border and background. You can subclass and add to it if you want. Or you can consider its skin to be its content like the image and canvas. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Pariente S

RE: [flexcoders] RadioButton change event not firing in Flex 3 when button in group is deselected

2008-06-26 Thread Alex Harui
That's what I figured, just wanted to confirm. I still think the change (which was for CheckBox) had unintended consequences in RadioButton, so file a bug. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Samuel Neff Sent: Thursday, June

Re: [flexcoders] Repeater not repeating

2008-06-26 Thread Tom McNeer
Jonathan, Thanks for the reply. The ArrayCollection will not notice if you manipulate the underlying Array > after the ArrayCollection has been created > Thanks. I understand that. But in debugging, I have confirmed that the ArrayCollection does contain the correct contents of the Array -- that

RE: [flexcoders] keyCode decremented by 64 when Control key down on Mac

2008-06-26 Thread Alex Harui
File a bug. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, June 26, 2008 7:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] keyCode decremented by 64 when Control key down on Mac Title pret

Re: [flexcoders] Repeater not repeating

2008-06-26 Thread Jonathan Branam
Tom, It sounds like you are changing the contents of configArray? The ArrayCollection will not notice if you manipulate the underlying Array after the ArrayCollection has been created. You can either manipulate the ArrayCollection directly, or reset the source property on the ArrayCollection after

Re: [flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Jonathan Branam
Hi Amy, I'm trying to follow along, but you've asked several questions now! Setting the alpha property should work based on a simple test that I did. As I look at your code, though, I think you have some confusion between the alpha *property* and an alpha *style*. The alpha property is from Flash

Re: [flexcoders] SWF library asset base class problem

2008-06-26 Thread Michael Schmalle
Hi, Are you trying to use 'is' to test a Class definition OR class instance? You can't use is with a class definition. I for get the right way to do this but for a test, you could instantiate the; var test:Object = new assetClass() if (test is BitmapData) { ... Mike -- Teoti Graphix,

[flexcoders] Re: Best way to submit requests and receive responses to AMF server from non-flash?

2008-06-26 Thread valdhor
I have never seen this done but you could probably download WebORB and use its classes to serialize the data and then send a GET request to weborb.php. You would need to delve into the WebORB classes to figure out how it de/serializes data it receives and returns and then implement that in your ow

[flexcoders] SWF library asset base class problem

2008-06-26 Thread daniel.langh
Hi there. I'm currently developing my asset loader and came across this issue. I googled around, but found nothing specific. I have an asset swf, with couple of png/s and MovieClips in the library. Everything is exported for actionscript, at the image assets it says the base class is flash.display

[flexcoders] Re: LCDS Wwith Jrun4

2008-06-26 Thread markflex2007
This is my jrun log file: eated by JRun on 06/26 10:15:24 06/26 10:15:24 info No JDBC data sources have been configured for this server (see jrun-resources.xml) 06/26 10:15:24 info JRun Web Server listening on *:8700 06/26 10:15:24 info Deploying enterprise application "JRun 4.0 Internal J2EE Comp

[flexcoders] Repeater not repeating

2008-06-26 Thread Tom McNeer
I need to have a repeater iterate over an array, displaying an instance of a custom component for each iteration. However, for testing, I am simply attempting to output a button with a static label within the repeater. Here's the basic code on the repeater:

[flexcoders] LCDS Wwith Jrun4

2008-06-26 Thread markflex2007
Hi, I install LDCS with Jun4,but I can not see the demo page with http://localhost:8400 after I start LCDS. Please help me which url I can use to see the demo. I am not familiar with Jrun.Please help me. Thanks a lot Mark

[flexcoders] keyCode decremented by 64 when Control key down on Mac

2008-06-26 Thread ben.clinkinbeard
Title pretty well covers it but as an example, the keyCode for f/F is 70. If you press Control + F on Mac keyCode returns 6. I tested for 10+ keys and they are all -64 when Control is added. This happens on Mac only. What gives? Thanks, Ben

[flexcoders] Re: canvas with styles and clickable? how to??

2008-06-26 Thread ben.clinkinbeard
--- In flexcoders@yahoogroups.com, David Pariente <[EMAIL PROTECTED]> wrote: > > i will check it later...im interested in components... > > but actually i saw what i mean in plenty of sites, so i guess is just so difficult to achieve. Maybe canvas should be inside another component... > > thnx

Re: [flexcoders] RadioButton change event not firing in Flex 3 when button in group is deselected

2008-06-26 Thread Samuel Neff
Alex, We're listening to the button and not the group because we can easily bind our button to our datamodel but listening to the group requires more manual work on our part. So we go from a simple binding expression to a more complex loop which simply redoes the same work that RadioButtonGroup a

Re: [flexcoders] canvas with styles and clickable? how to??

2008-06-26 Thread David Pariente
i will check it later...im interested in components... but actually i saw what i mean in plenty of sites, so i guess is just so difficult to achieve. Maybe canvas should be inside another component... thnx - Mensaje original De: Mark Doberenz <[EMAIL PROTECTED]> Para: flexcoders@yahoo

[flexcoders] crossdomain with picasa

2008-06-26 Thread David Pariente
Hello, I did a website that gets xml data from picasa website. Locally worked perfect, but it complains about security when i upload the site to my server. I heard something about the crossdomain.xml file...but...i just read that the file should be in the destiny server, not mine, so does that

[flexcoders] Weird Validate & Binding problem

2008-06-26 Thread hardaur55
Hello all! I have a TextInput field that is to accept a date. There is a date validator attached to the field and the text property of the date field is bound to a property in another field. Here's the code: mxml: Actionscript: formIsValid = formIsValid && validate(validateBirthday

[flexcoders] Re: LCDS and LCDS Express?

2008-06-26 Thread Steven Toth
Here's a link to the LCDS FAQ... http://www.adobe.com/products/livecycle/dataservices/faq.html It explains it in a little more detail, but the jist is the difference is the licensing costs... LCDS Express is free, but limited to 1 application on 1 CPU (including in a production environment).

Re: [flexcoders] Re: selecting a pre-determined row in a datagrid

2008-06-26 Thread Daniel Gold
list's have a selectedItem property that does the comparison for you to find the index and select it, so according to your description you could set grid.selectedItem = selectedItem(the var you're keeping) On Thu, Jun 26, 2008 at 7:04 AM, bray_6 <[EMAIL PROTECTED]> wrote: > You can use arraycol

[flexcoders] Re: Connecting to flexbuilder debugger from flash player without launching a new

2008-06-26 Thread Mike Morearty
The about:blank trick is the best you can do. - Mike Morearty, Adobe Flex Builder team --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: > > (Resending since the first mail never showed up, sorry for > any duplicates that may appear) > > > Hello list, > > Is there a way to configure

Re: [flexcoders] Universal Mind Cairngorm Extensions - Examples?

2008-06-26 Thread Jeffry Houser
Although not a substitute for code, we did interview Thomas Burleson about the UM Cairngorm Extensions on The Flex Show: http://www.theflexshow.com/blog/index.cfm/2008/4/9/The-Flex-Show--Episode-41-Universal-Mind-Cairngorm-Extensions-w-Thomas-Burleson It is pretty technical for an audio inter

[flexcoders] Re: Styling AdvancedDataGridItemRenderer

2008-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, "Amy" <[EMAIL PROTECTED]> wrote: > > I'm trying to extend AdvancedDataGridItemRenderer to allow the > styleFunction to set both the backgroundColor and the alpha of the > item in. I've used a combination of the custom style example in the > docs and the examp

  1   2   >