RE: [flexcoders] LCDS and Hibernate - how to setup bidirectional relationship

2008-07-10 Thread Jeff Vroom
You do not have cascade delete set in hibernate do you? I don’t think LC DS would delete items if you are just removing an item from a collection or set an association to null. In general, just calling “deleteItem” on the child should remove it from the parent’s child property automatically.

Re: [flexcoders] (TabNavigator component )Error #1009Cannot access a property or method of a null object reference

2008-07-10 Thread Manu Dhanda
Although I could not exactly understand like how you are proceeding with your application. But as about this error, it is coming because you haven't initialized something before you are trying to use it. as in this case, this.day.title = day schedule; You might haven't initialized this.day to

Re: [flexcoders] (TabNavigator component )Error #1009Cannot access a property or method of a null object reference

2008-07-10 Thread Ray Zhang
thank u very much . - Original Message From: Manu Dhanda [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 10, 2008 3:53:11 PM Subject: Re: [flexcoders] (TabNavigator component )Error #1009Cannot access a property or method of a null object reference Although I

[flexcoders] Can I change the DateField Component 's header content

2008-07-10 Thread Ray Zhang
DateField 's header content normally is the following format June 2008 can i change it to 2008 06?? does anyone know  ,thank u

[flexcoders] Datagrid Column resize problem

2008-07-10 Thread Parkash
Is it possible to set up a datagrid with columns of absolute width AND columns of relative width? I have a datagrid that will resize with the browser window and some columns widths can be resized by the user, but the itemRenderer buttons need to always be the same width(resizable='false'). i

[flexcoders] Re: AIR Features

2008-07-10 Thread mvbaffa
Thanks Jim, It worked Ok --- In flexcoders@yahoogroups.com, Jim Hayes [EMAIL PROTECTED] wrote: Not in AIR natively. Have a look at http://aperture.fluorinefx.com/ though (Windows only). -Original Message- From: flexcoders@yahoogroups.com on behalf of Dimitrios Gianninas

Re: [flexcoders] Automatically granting local trust in Flex Builder 3

2008-07-10 Thread Tom Chiverton
On Tuesday 08 Jul 2008, Rick Winscot wrote: than placing 'some' responsibility with the customer. The simple answer for a clear path... is to introduce the client to Flash security and let _them_ manage it. You obviously have much more savey customers than me :-) -- Tom Chiverton

[flexcoders] Flex SEO

2008-07-10 Thread litesh_b321
hi guys, how we can get index of google for a web site which is developed in adobe flex? Is there any special technique to optimise the search engine for flex developed web site? ThanX

[flexcoders] Embedded XML

2008-07-10 Thread David Gironella
Anybody have an example how to embed an XML, and read it on XML object? Thanks. Giro

[flexcoders] save/view

2008-07-10 Thread rodeored54
The is something that has always driven my absolutely batty in Flwx 3 and I wonder if there is any way around it. I hit run to view the run the movie and the browser opens a new window. When I hit run again, it opens another new window. I end up with 10 windows, which and then I have to sit

[flexcoders] how can I get the Java Session 's data from Flex cilent side

2008-07-10 Thread Ray Zhang
Our system uses java/jsp to do the login  function, but I want to get the login user 's information at the  Flex side ,how can I realize it? Can anyone give me some advice? thank u !

[flexcoders] Copied project gives security sandbox violation

2008-07-10 Thread valdhor
I have a completed project that is working fine. As a shortcut to building a new project I thought I would copy and paste the entire project and give it a new name. Once this was complete and compiled it gives me a security sandbox violation for every remote call. Cleaning the project has no

[flexcoders] Cairngorm concepts

2008-07-10 Thread oscar.12321
I have the past few days reading about Cairngorm and, at all, i don't understand the concept behind de events and commands. The people says that a event-command pair corresponds to a user gesture or system event: clicks, app init, etc. But when i browse the Cairngorm store app i found things like

[flexcoders] Re: Convert Text to Bitmap using ActionScript-3 .

2008-07-10 Thread Joy
Hey, thanks a lot. To elaborate on what's suggested, the solution I got was: var tf:TextField = new TextField(); tf.text = bitmap text; var myBitmapData:BitmapData = new BitmapData(80, 20); myBitmapData.draw(tf); var bmp:Bitmap = new Bitmap(myBitmapData); this.addChild(bmp); Thinks this will

[flexcoders] Flex components to Flash CS3

2008-07-10 Thread Balaji
Hi All I had created one small component in Flex, and builded with SWC format, I need to call that SWC component to the Flash CS3. Let me know how to do this,, or send me the link to how to do this application Regards Balaji

[flexcoders] Re: Air and Blazeds?

2008-07-10 Thread stephen.smithstone
To get an AIR app to communicate with remote blasze server you need to specify the endpoint on the remote object to go to the gateway of the blazeds / LCDS mx:RemoteObject id=heartbeat destination=heartbeat endpoint=http://ip:port/application/messagebroker/amf /mx:RemoteObject

[flexcoders] Re: As3Crypto - Can't read RSA Public Key

2008-07-10 Thread Jim Boone
Alright, I think the mystery is solved. I did indeed download the latest source created a Flex project and imported the source directory of that project into the project where my test file was. Unfortunately, I forgot to REMOVE the downloaded swc file from the lib directory so FB picked up

Re: [flexcoders] Copied project gives security sandbox violation

2008-07-10 Thread Jon Bradley
On Jul 10, 2008, at 8:36 AM, valdhor wrote: Once this was complete and compiled it gives me a security sandbox violation for every remote call. Cleaning the project has no effect. Did you per chance modify the compiler options for the first project? I might've seen this before, but make

[flexcoders] Re: Newbie Nested Remote Object Question

2008-07-10 Thread valdhor
Yes, basically this is how it is done. You create a class on your server and one in ActionScript. You tell the ActionScript class what to map to on the remote end (The RemoteClass). Now Flex knows when it receives that kind of object via AMF to cast it to the local class. I have not seen a code

[flexcoders] Re: TextInput Reskin = runtime Error! ??

2008-07-10 Thread valdhor
We will need to see what assets.css looks like before we can venture an opinion. --- In flexcoders@yahoogroups.com, nathanpdaniel [EMAIL PROTECTED] wrote: I'm working on an app that's been reskinned. When I use a TextInput inside an Accordian, it causes the app to act funny. I've posted

Re: [flexcoders] Cairngorm concepts

2008-07-10 Thread Douglas Knudsen
have a go at this http://www.cairngormdocs.org/tools/CairngormDiagramExplorer.swf DK On Thu, Jul 10, 2008 at 7:37 AM, oscar.12321 [EMAIL PROTECTED] wrote: I have the past few days reading about Cairngorm and, at all, i don't understand the concept behind de events and commands. The people

Re: [flexcoders] Cairngorm concepts

2008-07-10 Thread shaun
Douglas Knudsen wrote: have a go at this http://www.cairngormdocs.org/tools/CairngormDiagramExplorer.swf Very nice indeed. - shaun

[flexcoders] Re: Cairngorm concepts

2008-07-10 Thread oscar.12321
Yes. I know this diagram and, as i said, i have been browsing and reading all over Internet, including forums, articles, tutorials, etc. My questions remain unsolved. For example, i see no arrows from view to model like the Cairgorm Store sample does. Anyway, thank you. --- In

Re: [flexcoders] Flex SEO

2008-07-10 Thread Cole Joplin
I recommend reading AdvancED Flex Applifcation Development (http://www.amazon.com/AdvancED-Flex-Application-Development-Building/dp/1590598962/ref=pd_bbs_sr_1?ie=UTF8s=booksqid=1202745879sr=8-1). Chapter 17 is all about about SEO and Flex, and has some great details. I strongly recommend using

[flexcoders] Re: Copied project gives security sandbox violation

2008-07-10 Thread valdhor
No, the compiler options are the same for both projects (-locale en_US -services services-config.xml). Adding -use-network=true to the compiler options makes no difference. Any other ideas? Anyone else? BTW. I am re-reading the Adobe documents on policy files...

Re: [flexcoders] Embedded XML

2008-07-10 Thread Christophe Jolif
Hi David, The following: mx:XML id=xmlSource source=data.xml / Should do the trick? David Gironella wrote: Anybody have an example how to embed an XML, and read it on XML object? Thanks. Giro -- Christophe

[flexcoders] Generate dynamic flash using other flash app?

2008-07-10 Thread mariovandeneynde
Greetings! I was wondering: Imagine having a swf or fla with a dynamic textfield. is it possible to build an application that 1) opens the swf or fla 2) fills in the dynamic textfield 3) regenerates the swf so that in the new swf, the textfield is filled in. Is this possible if so...how

[flexcoders] Re: Cairngorm concepts

2008-07-10 Thread oscar.12321
Thanks a lot for your response. I continue inserting comments in your message bellow... please let me know your thoughts. --- In flexcoders@yahoogroups.com, Daniel Gold [EMAIL PROTECTED] wrote: Cairngorm as a framework is pretty loose in that it allows you to shortcut parts that may not feel

Re: [flexcoders] Re: AdvancedDataGridRendererProvider.renderer

2008-07-10 Thread Brandon Krakowsky
Thanks Amy. This helped. It actually ends up looking like this: iconRendererProvider.renderer = new ClassFactory(myClass); The other issue I'm having is displaying images since AdvancedDataGridItemRenderer extends UITextField. Do I have to extend AdvancedDataGridGroupItemRenderer in order to

[flexcoders] Re: AdvancedDataGridRendererProvider.renderer

2008-07-10 Thread Amy
--- In flexcoders@yahoogroups.com, Brandon Krakowsky [EMAIL PROTECTED] wrote: Thanks Amy. This helped. It actually ends up looking like this: iconRendererProvider.renderer = new ClassFactory(myClass); The other issue I'm having is displaying images since AdvancedDataGridItemRenderer

RE: [flexcoders] ComboBox ItemRenderer Custom Events only go to SystemManager - WHY?????

2008-07-10 Thread Battershall, Jeff
Thanks Alex - that does it. I noticed some interesting behavior in all this - if my custom event did not have its own clone method override I'd get a type coercion error when dispatching the custom event from the CB when using event metadata. But now I've got it working right. Jeff

Re: [flexcoders] Re: Cairngorm concepts

2008-07-10 Thread Jon Bradley
On Jul 10, 2008, at 11:33 AM, oscar.12321 wrote: I seems to me that commands are not user gestures, nor clicks or backend queries. The only posible explanation to me is as use cases are abstract (What kind of things can the the user do?) so there is no a fixed rule. In my experience, use

[flexcoders] Re: Cairngorm concepts

2008-07-10 Thread oscar.12321
Thanks Jon, your comments are very helpful to me. - Oscar --- In flexcoders@yahoogroups.com, Jon Bradley [EMAIL PROTECTED] wrote: On Jul 10, 2008, at 11:33 AM, oscar.12321 wrote: I seems to me that commands are not user gestures, nor clicks or backend queries. The only posible

RE: [flexcoders] Re: Copied project gives security sandbox violation

2008-07-10 Thread Tracy Spratt
Are you passing in any paths via flashvars in the wrapper? If so, did you adjust them? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Thursday, July 10, 2008 11:00 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Help with Module Loader [Flex Builder 3 Bug?]

2008-07-10 Thread cox.blair
I have a module which contains a datagrid that connects to the database. It works, no issues. The problem comes when the Flex Builder 3 in design mode access the swf reference in the module loader and displays a popup saying there is an http access error, obviously because the design view cannot

[flexcoders] flex components in pure as3 app - possible?

2008-07-10 Thread jack_freud
Is it absurd to try to code a simple app in pure as3 that uses flex components like Button and Scrollbar? I've been trying and ran into problems with a bug in the Flex framework having to do with resources (http://bugs.adobe.com/jira/browse/SDK-12205), used Rob Jellinghaus's workaround, and came

RE: [flexcoders] Re: Putting returned xml data into ArrayCollection using Cairngorm framwork (Command Class/Delegate Class/IResponder)

2008-07-10 Thread Tracy Spratt
You have found one reason not to use resultFormat=object. That result format causes flex to convert your result data, which is xml, into a tree of dynamic objects. You have no control over this process(, and it has some issues, particularly that values that look like numbers are converted to

[flexcoders] Re: Copied project gives security sandbox violation

2008-07-10 Thread sdl1326
I had this issue when copying a project. Try the following: -locale en_US -use-network=false It worked for me. --- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: No, the compiler options are the same for both projects (-locale en_US -services services-config.xml). Adding

[flexcoders] Re: Help with Module Loader [Flex Builder 3 Bug?]

2008-07-10 Thread cox.blair
I place the module loader inside an according navigator, but I tried it inside tab navigator and got the same result. How do I tell display view to ignore doing anything with the swf file?

RE: [flexcoders] Refresh issues

2008-07-10 Thread Tracy Spratt
If history is enabled, then the back button should work. I personally have never used this. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Thursday, July 10, 2008 12:44 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Copied project gives security sandbox violation

2008-07-10 Thread valdhor
All this does is change the sandbox to local-with-filesystem. This is no use to me as I need access to remoteobjects on the server. --- In flexcoders@yahoogroups.com, sdl1326 [EMAIL PROTECTED] wrote: I had this issue when copying a project. Try the following: -locale en_US

[flexcoders] Re: Copied project gives security sandbox violation

2008-07-10 Thread valdhor
Nope - no FlashVar's. Just a standard wrapper. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Are you passing in any paths via flashvars in the wrapper? If so, did you adjust them? Tracy From: flexcoders@yahoogroups.com

[flexcoders] Re: [Flex Builder 3 Bug] Module Loader

2008-07-10 Thread cox.blair
This does appear to be a bug. Checked online, nothing I'm doing is out of the ordinary. Adobe lists examples very close to what I'm doing except my module connects to a db - http://livedocs.adobe.com/flex/3/html/help.html?content=modular_5.html I went through the preferences and changed some

[flexcoders] Launching Flex Builder Help

2008-07-10 Thread Amy
Is there any way to launch the Help for Flex Builder without opening Flex Builder itself? TIA; Amy

RE: [flexcoders] Re: Copied project gives security sandbox violation

2008-07-10 Thread Tracy Spratt
So you did a manual copy, paste, did you copy the entire project folder? Then how did you get it into Flex Builder? When I copy a project, I use the File, Import. This seems to work fine. Try that. Tracy From: flexcoders@yahoogroups.com

[flexcoders] Component creation - Data Binding

2008-07-10 Thread ron_mori
Think: master-detail implemented in an Accordion container. When user either selects an item from a dataGrid listing -OR- User clicks a link to initiate a new item - ActionScript code then.. 1. A SelectItem var in a detail form is set to either a. the selectedItem from the dataGrid b. new

RE: [flexcoders] Component creation - Data Binding

2008-07-10 Thread Tracy Spratt
Sounds like the deferred instantiation behavior of Accordion and other nav components. Search the archives/google for that term and for creationPolicy To establish if that is the issue, for testing purposes only, set creationPolicy=all on the accordion. If that fixes it, reverse that and

[flexcoders] Re: Putting returned xml data into ArrayCollection using Cairngorm framwork (Command Class/Delegate Class/IResponder)

2008-07-10 Thread sdl1326
Here's a sample xml that's getting loaded in via http service: images duration=3000 effect=Fade startDelay=2000 image name=image.jpg url=http://www.cnn.com/ image name=image1.jpg url=http://www.usatoday.com; / image name=image2.jpg url=http://www.msnbc.com; / image

[flexcoders] Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread calisza
I have the following scenario, I have a tilelist displaying images, each of which is being created via a custom ItemRenderer. So far so good. Now, I have an upload button, which when clicked, pops-up a TitleWindow and allows the user to add files for upload. They click upload and everything

RE: [flexcoders] Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread Tracy Spratt
Are you using the dataPrvoider API to update the dataProvider? What is the dataProvider? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of calisza Sent: Thursday, July 10, 2008 2:56 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] TextInputs - no cursor

2008-07-10 Thread markgoldin_2000
I have this simple form: ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=150 verticalScrollPolicy=off height=128 verticalCenter=true horizontalCenter=true horizontalScrollPolicy=off mx:Form verticalGap=1 paddingLeft=-1 fontSize=9

[flexcoders] Re: Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread calisza
The dataProvider is a property of a Cairngorm VO. So, I have a productVO, of which images is a property (Array), so the dataProvider is product.VO - the thing is, the dataProvider IS being updated, its just the display that's not being displayed. As soon as I select another product, and then

[flexcoders] Re: Setting Up a Global Constants File

2008-07-10 Thread Sid Maskit
I believe that using singletons is the traditional design pattern way to do this although I have seen some people arguing that singletons conflict with unit testing. I don't know enough to comment on that debate. I would suggest using a getter for your instance so that, at least, your call could

Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Dennis Falling
I don't know of a way to give a link button a transparent mouse over background. On Jul 7, 2008, at 2:11 PM, nathanpdaniel [EMAIL PROTECTED] wrote: I'm not sure but what's the difference between a link button and what you're trying to accomplish? It seems to me what you're looking for would

[flexcoders] Re: Copied project gives security sandbox violation

2008-07-10 Thread valdhor
Yes, I right clicked on the project and Copy'ed. Then I right clicked in the project panel and Paste'd. Flex Builder asks you then for a new name which I gave it and it duly creates a new project. I tried importing the project and it does exactly the same thing. The only workaround I have at the

[flexcoders] Re: Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread jack_freud
Could it be that you need to use an ArrayCollection rather than an array? I think binding to Array only shows changes if the array itself is replaced, not its items. Jack --- In flexcoders@yahoogroups.com, calisza [EMAIL PROTECTED] wrote: The dataProvider is a property of a Cairngorm VO. So,

[flexcoders] Re: Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread calisza
I've been wondering about that and am in the process of testing this. Will let you know what happens :). Just noticed a typo in my previous post - should read product.images and not product.VO --- In flexcoders@yahoogroups.com, jack_freud [EMAIL PROTECTED] wrote: Could it be that you need to

Re: [flexcoders] Re: AdvancedDataGridRendererProvider.renderer

2008-07-10 Thread Brandon Krakowsky
Thanks Amy. I'll check this out! - Original Message From: Amy [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 10, 2008 11:58:54 AM Subject: [flexcoders] Re: AdvancedDataGridRendererProvider.renderer --- In [EMAIL PROTECTED] ups.com, Brandon Krakowsky krakowskyb@

[flexcoders] Re: how can I get the Java Session 's data from Flex cilent side

2008-07-10 Thread meteatamel
Expose a Java method that gets this info and your Flex application can use a RemoteObject to call that method. -Mete --- In flexcoders@yahoogroups.com, Ray Zhang [EMAIL PROTECTED] wrote: Our system uses java/jsp to do the login  function, but I want to get the login user 's information at the

[flexcoders] Component ClickEvent weirdness

2008-07-10 Thread Jason
So I have a simple component which is a help button, (the component is mainly just an image.) I wrote a custom event (extends Event) for use all over my app when a help event occurs, like a request to launch help. I want to just dispatch this custom event when my custom help button is

[flexcoders] Re: Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread calisza
Ok excellent, changing from Array to ArrayCollection has solved the problem. Lesson learned :) thanks for the help. --- In flexcoders@yahoogroups.com, calisza [EMAIL PROTECTED] wrote: I've been wondering about that and am in the process of testing this. Will let you know what happens :).

[flexcoders] Re: Launching Flex Builder Help

2008-07-10 Thread valdhor
I don't think so. It looks like the help is an eclipse plugin that uses a java front end. The actual help files (HTML) are in a zipped archive. You can find them at... C:\Program Files\Adobe\Flex Builder 3\plugins\com.adobe.flexbuilder.help_3.0.194161\doc.zip --- In

RE: [flexcoders] Launching Flex Builder Help

2008-07-10 Thread Stephen Gilson
Not really - the help requires an internal web server that is part of Eclipse. However, all of the help content is available online on livedocs at: http://livedocs.adobe.com/flex/3/html/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Re: Component ClickEvent weirdness

2008-07-10 Thread valdhor
When you click a button, you generate a mouseEvent, so your function should look like... private function onHelpClicked(event:MouseEvent):void and your button should take this into account... help:HelpButton click=onHelpClicked(event) / event is one of those keywords that Flex automatically

[flexcoders] Re: Component ClickEvent weirdness

2008-07-10 Thread Jason
--- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: When you click a button, you generate a mouseEvent, so your function should look like... private function onHelpClicked(event:MouseEvent):void and your button should take this into account... help:HelpButton

[flexcoders] Multiple File Uploads... question

2008-07-10 Thread jason_graves2003
I'm trying to figure out the best Flex/Air solution for uploading multiple files via drag drop. I understand the overall concept on how to do this via the front-end, but what's the most efficient way for handling the files on the back-end? We're running CF8, and I'd really like to get away

[flexcoders] Re: TextInputs - no cursor

2008-07-10 Thread Sid Maskit
After copying and pasting your code, I initially got error messages for things like / where there cannot be a space between the two characters. However, once I fixed all of those, it seemed to work fine in terms of being able to type into each of the text input fields. I got the same results

[flexcoders] Re: Component ClickEvent weirdness

2008-07-10 Thread Jason
and if it helps any, this is what the custom event class looks like: package com.venice.event { import flash.events.Event; /** * ... * @author Jason Merrill */ public class HelpEvent extends Event {

[flexcoders] Re: Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread Amy
--- In flexcoders@yahoogroups.com, calisza [EMAIL PROTECTED] wrote: The dataProvider is a property of a Cairngorm VO. So, I have a productVO, of which images is a property (Array), so the dataProvider is product.VO - the thing is, the dataProvider IS being updated, its just the display that's

[flexcoders] Re: TextInputs - no cursor

2008-07-10 Thread markgoldin_2000
My code does not have / anywhere as far as I can see. Can you please post your code as well? Thanks --- In flexcoders@yahoogroups.com, Sid Maskit [EMAIL PROTECTED] wrote: After copying and pasting your code, I initially got error messages for things like / where there cannot be a space

[flexcoders] Re: Putting returned xml data into ArrayCollection using Cairngorm framwork (Command Class/Delegate Class/IResponder)

2008-07-10 Thread sdl1326
Tracy, thanks for the very detailed reply. I changed the resultFormat= 'e4x'. So, I want to put the xml data into an arraycollection and am trying the following code: var xmlResult:XML = new XML(event.result); xmlImages_ac = new ArrayCollection();

[flexcoders] PopUpButton and States Problem

2008-07-10 Thread Simon Bailey
Hi all, Just a behavior that is perplexing and maybe someone could shed a light to the true core of the matter. I have a PopUpButton which on itemClick changes to a different state, the following is thrown: Error #1009: Cannot access a property or method of a null object reference I

[flexcoders] Re: Component ClickEvent weirdness

2008-07-10 Thread Sid Maskit
Given that your compiler error concerns converting a HelpEvent to a MouseEvent,my guess would be that the problem is that the listener which is receiving your HelpEvent event expects to receive a MouseEvent. This is a piece of code which you have not yet shown us: i.e. the listener function for

[flexcoders] mx:Binding actionscript equiv

2008-07-10 Thread ron_lepine
Is there an actionscript equivalent for mx:Binding other than bindProperty. I have a actionscript class for my data model that I bind to a datagrid using mx:Binding source={Events(list.selectedItem)} destination=model / bindProperty requies and object and property for the target. I don't want

Re: [flexcoders] Customizing TreeItemRenderer

2008-07-10 Thread Troy Gilbert
So, is TreeItemRenderer really that much of a black art? Has no one done any interesting modifications of that component? Maybe a good indicator that it's a hard to customize component? Maybe this would be a good opportunity for a solid Adobe tut on the subject... Troy.

[flexcoders] Re: TextInputs - no cursor

2008-07-10 Thread Sid Maskit
I have been noticing extra spaces in a lot of posts. I'm suspecting this is a feature of Yahoo groups, or maybe just of the Yahoo mail reader that I am using to read the group. Anyway, here is the flex/web version I used (perhaps with a whole bunch of extra spaces inserted by the time you see it):

[flexcoders] Cairngorm login

2008-07-10 Thread abdiel.ferreira
Someone used in the session screencast login (using cairngorm) by author David tucker? I'm having difficulties in implementing the session created when the user accesses with username and password. The method getSessionUser () returns true or false. If true returns the welcome screen or false

[flexcoders] Flash Player 10 and RTMFP

2008-07-10 Thread Steve Mathews
I was reading this FAQ located here: http://download.macromedia.com/pub/labs/flashplayer10/flashplayer10_rtmfp_faq_070208.pdf Something doesn't click for me. It lists three examples of what solutions can be built, one of which is multi-player games. But near the bottom under limitations it states

[flexcoders] Re: Component ClickEvent weirdness

2008-07-10 Thread Jason
_venice.addEventListener(HelpEvent.HELP_INITIALIZED, onHelpInitialized); Where _venice is a reference to the main MXML application. Works fine with MouseEvent.CLICK FWIW.

Re: [flexcoders] Re: Putting returned xml data into ArrayCollection using Cairngorm framwork (Command Class/Delegate Class/IResponder)

2008-07-10 Thread Josh McDonald
That's right, because when you trace the ArrayCollection it converts its children to String, and your nodes have no inner text, so they toString() as . Instead of addItem(item), try addItem([EMAIL PROTECTED]) -Josh On Fri, Jul 11, 2008 at 6:57 AM, sdl1326 [EMAIL PROTECTED] wrote: Tracy,

[flexcoders] Re: Component ClickEvent weirdness

2008-07-10 Thread Jason
--- In flexcoders@yahoogroups.com, Jason [EMAIL PROTECTED] wrote: _venice.addEventListener(HelpEvent.HELP_INITIALIZED, onHelpInitialized); Where _venice is a reference to the main MXML application. Works fine with MouseEvent.CLICK FWIW. Hey, that helped me track it down, the

[flexcoders] Re: TextInputs - no cursor

2008-07-10 Thread nathanpdaniel
Are you by chance reskinning the TextInput control? I had a similar issue tied to that... --- In flexcoders@yahoogroups.com, Sid Maskit [EMAIL PROTECTED] wrote: I have been noticing extra spaces in a lot of posts. I'm suspecting this is a feature of Yahoo groups, or maybe just of the Yahoo

[flexcoders] Re: Putting returned xml data into ArrayCollection using Cairngorm framwork (Command Class/Delegate Class/IResponder)

2008-07-10 Thread sdl1326
Ok, thanks. So, looking at the original xml file ( below) if I want to add both the name and url (data) to the array collection, is this the most efficient way to accomplish this? var xmlResult:XML = new XML(event.result); xmlImages_ac = new ArrayCollection(); // push XML to

RE: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Alex Harui
Maybe setStyle(overSkin, getStyle(upSkin)) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Falling Sent: Thursday, July 10, 2008 12:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Trick button into rendering

RE: [flexcoders] flex components in pure as3 app - possible?

2008-07-10 Thread Alex Harui
Flex components must live inside an Application. You can subclass Application and get everything to work via AS3, but it's a lot of work, and you won't save any SWF size From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jack_freud Sent:

RE: [flexcoders] ComboBox ItemRenderer Custom Events only go to SystemManager - WHY?????

2008-07-10 Thread Alex Harui
If you re-dispatch events, you must propertly implement clone(). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Thursday, July 10, 2008 9:00 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ComboBox

RE: [flexcoders] Flex components to Flash CS3

2008-07-10 Thread Alex Harui
It is usually easier to go the other way From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Balaji Sent: Thursday, July 10, 2008 1:48 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex components to Flash CS3 Hi All I had

RE: [flexcoders] Datagrid Column resize problem

2008-07-10 Thread Alex Harui
If horizontalScrollPolicy=off, if you get too small, even resize=false columns will get resized. If you allow horizontalScrolling, you should be able to mix From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Parkash Sent: Thursday, July

[flexcoders] Cairngorm login

2008-07-10 Thread abdiel.ferreira
Someone used in the session screencast login (using cairngorm) by author David tucker? I'm having difficulties in implementing the session created when the user accesses with username and password. The method getSessionUser () returns true or false. If true returns the welcome screen or false

[flexcoders] Re: TextInputs - no cursor

2008-07-10 Thread markgoldin_2000
Yes, running it as a stand alone app. works fine, but in the way I am using this code it does not work properly. I have a cursor for the SKU field only. I cannot imagine that there is an error in this code. All text fields are declared in exactly same way. Strange. --- In

RE: [flexcoders] Re: Putting returned xml data into ArrayCollection using Cairngorm framwork (Command Class/Delegate Class/IResponder)

2008-07-10 Thread Tracy Spratt
If you are going to do this, make an ArrayCollection, you should build a class(value object, VO) with strongly typed public properties. In the loop, new that class, then assign the xml node property values to the appropriate value object properties. Push that VO onto a temporary array. When

RE: [flexcoders] Customizing TreeItemRenderer

2008-07-10 Thread Tracy Spratt
I have an example on www.cflex.net http://www.cflex.net/ that is pretty good, not too complex, not braindead simple, that uses good practice and shows overriding commitProperties and updateDisplayList. It draws lines between sibling nodes. Wish I could claim it all as my work.

[flexcoders] RTMP and Spring Security(Acegi) Issues

2008-07-10 Thread Geoffrey
I'm wondering if anyone out there has implemented LiveCycle Data Services using Spring Security as their security layer? I'm having issues with RTMP communications between server/client, meaning I'm not getting any. I've modified our existing Java delegate to ast as the Assembler for a managed

Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Dennis Falling
So no way that's purely CSS? Is there a reason for me to not use my current hack (invisible PNG skins)? Visually and functionally it's what I want. On Jul 10, 2008, at 5:30 PM, Alex Harui [EMAIL PROTECTED] wrote: Maybe setStyle(“overSkin”, getStyle(“upSkin”)) From:

[flexcoders] Re: Putting returned xml data into ArrayCollection using Cairngorm framwork (Command Class/Delegate Class/IResponder)

2008-07-10 Thread sdl1326
Makes sense, thank you for the assistance. So, the steps suggested by yourself and others in this thread are ultimately a better/preferred way to work with and handle xml data when it's retrieved from an http service? --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: If

RE: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Alex Harui
Copy the LinkButton CSS and assign whatever was in upSkin to overSkin From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Falling Sent: Thursday, July 10, 2008 4:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re:

[flexcoders] Getting at itemRenderers from list

2008-07-10 Thread djhatrick
what trick is there, other than an event to get at the itemRenderers in a list? I need them... I thought of dispatching events back, but man, that seems really cheesy.. Any suggestions?

[flexcoders] Issue executing Debug in Flex Builder 3 as Eclipse Plugin with PHP

2008-07-10 Thread danielholmes85
Having an issue with Debug for Flex projects in eclipse. When i debug my project I get a popup asking if i want to debug it with one of the following options: Run on Server PHP Script PHP Web Page I have PDT installed. I'm positive there's a setting somewhere to always debug the flex project as

[flexcoders] Re: Component ClickEvent weirdness

2008-07-10 Thread Amy
--- In flexcoders@yahoogroups.com, Jason [EMAIL PROTECTED] wrote: and if it helps any, this is what the custom event class looks like: package com.venice.event { import flash.events.Event; /** * ... * @author Jason Merrill */ public class

[flexcoders] Re: Launching Flex Builder Help

2008-07-10 Thread Amy
--- In flexcoders@yahoogroups.com, Stephen Gilson [EMAIL PROTECTED] wrote: Not really - the help requires an internal web server that is part of Eclipse. However, all of the help content is available online on livedocs at: http://livedocs.adobe.com/flex/3/html/ Yes, but with the built in

  1   2   >