RE: [flexcoders] Re: detect activity on audio stream

2006-12-20 Thread Jesús Iglesias
Hi Derrick, I have'nt tried, what I need is activity on incoming netStream, microphone was only an example of activity method. JEsus _ De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de Derrick Grigg Enviado el: miércoles, 20 de diciembre de 2006 2:32 Para:

Re: Fw: [flexcoders] how to make my own keyboard shortcuts in flexbuilder/eclips

2006-12-20 Thread shemeshkale
sorry to bring it up again. someone have an idea? --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: i have seen this, but this not what i meant. it is a list of predefined shortcuts that come with Eclipse. i want to know how can i make my own. like i said: i want

Re: [flexcoders] Re: FlexPrintJob PrintJob

2006-12-20 Thread Samuel Reuben
I'll leave it at that then. Thanks, -sam On 12/19/06, Mike Weiland [EMAIL PROTECTED] wrote: Orientation is read only, it can't set the orientation, it's still up to the user to change it in the print dialog. Mike Weiland Original Message --- I'll file an enhancement

Re: [flexcoders] Re: An architectural blueprint for Flex applications

2006-12-20 Thread Oliver Lietz
Am Dienstag, 19. Dezember 2006 15:18 schrieb Paul Andrews: [...] Yes, but Advanced ActionScript 3 with Design Patterns by Joey Lott is pretty darn good.. http://www.amazon.com/Advanced-ActionScript-3-Design-Patterns/dp/0321426568

[flexcoders] Adding a new button to a Tabbar without altering the dataprovider.

2006-12-20 Thread Dan
Hi, I want to implement a tabBar that with the last tab labeled new so that when ever the user click that new tab, a new tab is added to the dataprovider. However, I don't want to add a new object in that dataprovider for that labeled new tab at the tail, since it will complicated that other

Re: [flexcoders] Re: Newbie help: model bindings work with some but not all

2006-12-20 Thread Lachlan Cotter
Hi Tim, What kind of control is myTags bound to? Cheers, Lach On 20/12/2006, at 7:50 AM, Tim Garver wrote: Hi All, here is some snippets from my project that is not working. i have included some of the code, let me know if you need all of it. it quite large. The myTags data field is

Re: [flexcoders] Checkbox MenuBar

2006-12-20 Thread Lachlan Cotter
Hi Jeremy, Let me see if I understand you correctly: you want to have a horizontal menu bar where each item will drop down a list of checkbox controls when selected? Cheers, Lach On 20/12/2006, at 10:37 AM, Jeremy Rottman wrote: I'm having trouble thinking of a way to accomplish the

[flexcoders] Re: Load swc instead of swf

2006-12-20 Thread ssundke
Ok.. so what do I do for this problem. I need to write some help files for my project and I need my swf to be standalone since it can be used. I didnt want to hardcode the html in one as file or mxml file, so I thought I would make a separate file for it and let it be loaded when it was needed.

Re: [flexcoders] Populating Multiple Levels of Branches

2006-12-20 Thread Lachlan Cotter
Hi Kyle, Listen on your tree control for the itemOpen event. Retrieve the tree node from the event, pull from it what information you need for your next query. When the query returns, append the results as children of that node. Bindings should update the tree control. Is that what you

Re: [flexcoders] Re: SEO Compatibility

2006-12-20 Thread hank williams
Thank Claus, I wah hoping you would pipe in on this! Hank On 12/20/06, Claus Wahlers [EMAIL PROTECTED] wrote: I dont think google needs to do much here. If we can get the server product to easily allow XML to enhance the HTML response then googles indexing will just work. I'd love

[flexcoders] Tree view / ICollectionView

2006-12-20 Thread Giles Roadnight
Hi all I have a Tree that I am using to display a tree of my Category class. The Category class has an array of categories called children and has a public property label so it does for the most part work with the tree view. One problem is that all of the categories are listed as

Re: [flexcoders] SequenceCommands ... is there a point to their existence?

2006-12-20 Thread Lachlan Cotter
I came up against just this problem today and decided that the sequence command wasn't appropriate for reasons similar to what you've outlined below. The sequence is intrinsic in the actual command classes which obviously makes them less reusable. In my app, I wanted the idea of the

[flexcoders] faultCode=Client.Error.MessageSend

2006-12-20 Thread quantum.tech
Hi All, I am new to Flex/Action Script. I am trying to run a sample application that would call a Java Service, but am unsucessful in doing so, i think i have done all the stuff i am supposed to do, but don't know where i am wrong here. All the time i get is the following exception: PS: I

[flexcoders] Flex/FMS videoDisplay tricks

2006-12-20 Thread Boosalic
Hi, All: Noob is trying to build a very rudimentary flex / fms video player with a selectable combobox (xml-driven is next). I have had some success with the code below. It works pretty well, but there are two big annoyances. First, when I push the play button on the videoDisplay without

[flexcoders] Error- Client.Error.MessageSend

2006-12-20 Thread quantum tech
Hi All, I am new to flex/action script world. I am trying to connedct a sample flex application with my java service. It worked fine when i just called a sample dummy java class, now i am getting this following exception when i am trying to access. I am using remoting option , i

[flexcoders] Accordion header style problem

2006-12-20 Thread zedan_gu
Hi,everyone. I am new for flex2,I has a problem about accordion header style, can I set the header's cornerRadius style? Because I want to set my accordion's corners to be rounded. How can I achieve it? Thanks.

RE: [flexcoders] SequenceCommands ... is there a point to their existence?

2006-12-20 Thread Dimitrios Gianninas
Yup thats what u have to do... pass a flag to the command to tell it to execute the next one or not. Thats what I do, works like a charm because the SequenceCommand is exactly what u need for your work. Dimitrios Gianninas RIA Developer Optimal Payments Inc.

[flexcoders] Length of Dictionary...

2006-12-20 Thread beecee1977
Hopefully there's a pretty simple answer. I want to find the length of a Dictionary (i.e. the number of entries in it)... There doesn't seem to be any documentation for the Dictionary's properties that I can find.

Re: [flexcoders] Adding a new button to a Tabbar without altering the dataprovider.

2006-12-20 Thread Lachlan Cotter
Hi Dan, I can think of two possible approaches. You could create a proxy data-provider that places a layer between the control and the real data provider, that manipulates the data for this view (by adding your pseudo item). or… You could create a subclass of the control that adds the

Re: [flexcoders] Length of Dictionary...

2006-12-20 Thread Michael Schmalle
Hi, Since the Dictionary subclasses the Object, I really don't see any other way than to do a for each or for in loop throught the Dictionary and count the length this way. Peace, Mike On 12/20/06, beecee1977 [EMAIL PROTECTED] wrote: Hopefully there's a pretty simple answer. I want to

[flexcoders] OFFTOPIC: Flexmascard

2006-12-20 Thread wesubotnix
Here is our Christmas card made in Flex: Merry Christmas everybody! http://www.delc.dk/julekort2006/ Would be nice to see other flexmascards Thanks! Fredrik

Re: [flexcoders] SequenceCommands ... is there a point to their existence?

2006-12-20 Thread Oliver Lietz
Am Dienstag, 19. Dezember 2006 22:39 schrieb thegiffman: [...] Could someone set me straight here? You can create commands (and delegates and services) which dispatch success and failure events. This gives you a very flexible mechanism to chain commands (or even execute them in parallel) or

Re: [flexcoders] Cairngorm for Actionscript 3.0 projects

2006-12-20 Thread Tom Chiverton
On Monday 18 December 2006 12:23, Webdevotion wrote: Is it allright to use Cairngorm for AS 3 projects? I'm getting up to speed with Flex and AS 3.0 and want to start learning some relevant frameworks. You'll need version 2.0 or 2.1 of Cairngorm. -- Tom Chiverton Helping to economically

Re: Fw: [flexcoders] how to make my own keyboard shortcuts in flexbuilder/eclips

2006-12-20 Thread Tom Chiverton
On Wednesday 20 December 2006 08:11, shemeshkale wrote: i want to know how can i make my own. like i said: i want that pressing alt+k will write koko kilshon how? Learn Java. Write an Eclipse plug-in. The snippits system that CFEclipse uses may be of use to you too. -- Tom Chiverton

[flexcoders] hibernate + many-to-many + inserting records

2006-12-20 Thread michalzak81
At this point, I have hibernate working with a many-to-many relationship Here is what I have User Table - one-to-many - user_roles Table - many-to-one - roles table The retrieval of the records works fine. I can also modify and insert the records with no hassle. But my problems come when

Re: [flexcoders] Adding a new button to a Tabbar without altering the dataprovider.

2006-12-20 Thread Michael Schmalle
Hi, All you need to do is this; 1. Subclass TabNavigator; 2. create - protected var addButton:Button 3. In createChildren() ovveride; addButton = new Button(); addButton.styleName = this; addButton.label = Add; addButton.addEventListener(MouseEvent.CLICK, addButton_clickHandler);

Re: [flexcoders] Adding a new button to a Tabbar without altering the dataprovider.

2006-12-20 Thread Michael Schmalle
If you are just using a Tab button, opps, I meant Tab Bar. Both ways are correct in component development sense. But you would choose either or based on the factors of... am I going to be using a tab navigator? anyway, both will work with some fine tunning. On 12/20/06, Michael Schmalle

[flexcoders] Newbie Question: View states or view stack;

2006-12-20 Thread Tolis Christomanos
Hi all! Can you tell me how to structure this.. I have a login form, a register form and then the main application. Should i use states or the view stack to go from form to form and from form to main application. Thanks in advance.

[flexcoders] Re: Content Change

2006-12-20 Thread Daniel
What's happening is that I call public function initCanvas():void{ cmpObject = model.componentManager.getComponent ( this.cod ) as CustomObject; initTitle(); } Yes, Im using Cairngorm, and immediately call the function initTitle() that reads cmpObject. For some reason, by the time the

Re: [flexcoders] Newbie Question: View states or view stack;

2006-12-20 Thread hank williams
On 12/20/06, Tolis Christomanos [EMAIL PROTECTED] wrote: Hi all! Can you tell me how to structure this.. I have a login form, a register form and then the main application. Should i use states or the view stack to go from form to form and from form to main application. Thanks in advance.

RE: [flexcoders] Tree view / ICollectionView

2006-12-20 Thread Giles Roadnight
I've got a bit further with this and have got my dataDescriptor class working ok now. To load new data when I expand a branch on the tree I need to throw am ItemPendingError which the Tree component will catch. I am unsure how to do this however. This code: public function

Re: [flexcoders] Populating Multiple Levels of Branches

2006-12-20 Thread Kyle Hayes
That is what I was looking for and I used selectedNode.setChildren (theArrayCollectionofMyQuery) and it blanked out the entire tree instead :-\ I was talking to a Flex instructor yesterday and he was saying that the Tree's favorite type of data to receive is XML and it would be a lost

[flexcoders] Custom event classes: static const or var to hold the type?

2006-12-20 Thread ben.clinkinbeard
Hello, I was just creating a custom event class (subclass of CairngormEvent) and as I was adding the type property I thought of something. I generally do: public static var DO_MY_LAUNDRY_EVENT:String = doMyLaundry; but doesn't making it a constant makes more sense? public static const

[flexcoders] showBusyCursor not available in DataService

2006-12-20 Thread Carlos Rovira
Hi, I'd like to ask the reason why there is not a showBusyCursor method in the DataService API. As we are making a server access I think we should have the possibility to do it, but maybe there's some issue that I'm missing... -- ::| Carlos Rovira ::| http://www.carlosrovira.com ::|

Re: [flexcoders] hibernate + many-to-many + inserting records

2006-12-20 Thread Douglas McCarroll
Hi, I'm still struggling with a many-to-many example that I'm creating, but seeing what I've done so far may be helpful to you. My .java and .hbm.xml files were auto-created using HibernateTools (with a few tweaks) and contain files for the middle table. While I don't know Hibernate very

Re: [flexcoders] OFFTOPIC: Flexmascard

2006-12-20 Thread Greg Morphis
great idea, thanks for sharing! On 12/20/06, wesubotnix [EMAIL PROTECTED] wrote: Here is our Christmas card made in Flex: Merry Christmas everybody! http://www.delc.dk/julekort2006/ Would be nice to see other flexmascards Thanks! Fredrik -- Flexcoders Mailing List FAQ:

[flexcoders] Reseting DateField components

2006-12-20 Thread stephen50232
Hi, I have a form which has two DateField components (one for start date and one end date) I also have text field. When this form is saved I would like to clear the form fields, I can easily doing this for the text field, but how do you reset the DateField's back to blank or clear? Stephen

Re: [flexcoders] Custom event classes: static const or var to hold the type?

2006-12-20 Thread Michael Schmalle
Hi, I use const for types always. Since it is a constant. If you look in the flex framework, you will see they use const also. Peace, Mike On 12/20/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: Hello, I was just creating a custom event class (subclass of CairngormEvent) and as I was

Re: [flexcoders] Adobe site extremely slow

2006-12-20 Thread Tom Chiverton
On Wednesday 20 December 2006 01:51, David Mendels wrote: * The issue is known. We had significant hardware issues. We have upgraded the US servers and performance has improved many fold (average page time from 9 seconds to load to sub 2 seconds). * The same hardware upgrade is being

Re: [flexcoders] Spring / FDS Integration :: How to assign fill-method and asyn-method when use SpringFactory?

2006-12-20 Thread Oliver Lietz
Am Montag, 11. Dezember 2006 18:37 schrieb Carlos Rovira: Hi, This one is for Jeff Vroom since he is the one that create the SpringFactory. I download this one from the Christophe Coenraets article at: http://coenraets.org/flex-spring I creating a FDS application that uses JPA / EJB3

Re: [flexcoders] Adobe site extremely slow

2006-12-20 Thread Mark McCray
I'm on safari, and sometimes I click on the English version of documentation for Flex 2 and i get to a blank white screen. It happens periodically. The link I just got to was: http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/js/html/ wwhelp.htm?href=Part2_DevApps.html and that left me

[flexcoders] crossdomain.xml - is there an alternative ?

2006-12-20 Thread jamiebadman
Hi, I'm trying to access https webservices from a flex app hosted under http and I'm getting security errors. The full error states that there's a security sandbox violation trying to access https://mydomain:9443/ccx/myservice So it would seem this could be resolved with a crossdomain.xml

[flexcoders] Re: OFFTOPIC: Flexmascard

2006-12-20 Thread camlinaeizerous
Wonderful idea an great way to spread around some of the Christmas cheer. --- In flexcoders@yahoogroups.com, wesubotnix [EMAIL PROTECTED] wrote: Here is our Christmas card made in Flex: Merry Christmas everybody! http://www.delc.dk/julekort2006/ Would be nice to see other flexmascards

Re: [flexcoders] crossdomain.xml - is there an alternative ?

2006-12-20 Thread Mark McCray
Have you tried placing the crossdomain.xml file in whatever https:// mydomain:9443/ maps its docroot to? Because that is where it will look I think. On Dec 20, 2006, at 11:33 AM, jamiebadman wrote: Hi, I'm trying to access https webservices from a flex app hosted under http and I'm getting

Re: [flexcoders] Checkbox MenuBar

2006-12-20 Thread Jeremy Rottman
Yeah that's pretty much what I need... I've attached a file of a menu bar I photoshopped to give you an image of what it is I'd like I think this would make things much easier to explain. On 12/20/06, Lachlan Cotter [EMAIL PROTECTED] wrote: Hi Jeremy, Let me see if I understand you

RE: [flexcoders] Populating Multiple Levels of Branches

2006-12-20 Thread Battershall, Jeff
That's what I do - using CF's built-in XML functions - works fine. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kyle Hayes Sent: Wednesday, December 20, 2006 9:48 AM To: flexcoders@yahoogroups.com

[flexcoders] Re: SQL Insert operation fails silently

2006-12-20 Thread nall_daniel
Thanks Greg, Your advice is appreciated and helpful. I'm using MS SQL server, CF 7.02, and of course Flex 2. I have nothing in my CF logs, nothing in SQL logs (SQL errors show up in the browser anyway ie fault=server_fault(event)). I use the Flash Tracer extension for Firefox (very helpful

[flexcoders] Video not showing in VideoDisplay... sometimes...

2006-12-20 Thread beecee1977
Hi, I'm wondering if anyone else has encountered this problem (or better still resolved it)... I have a VideoDisplay object which I load with a source flv. All fine. However, on some occasions the video doesn't display. I've set the backcolor of the VideoDisplay to red, to make sure it's

[flexcoders] Re: Flex 2 Compilation problem

2006-12-20 Thread sanjaypmg
Hi Renaun, I have defined it correctly in remote-config.xml because its working fine when I directly open my flex file as: http://localhost:8080/flexnjspproject/flexapplication.mxml. and thereafter I use this compiled SWF, It works fine. Is it not the issue of JBoss version or the java

RE: [flexcoders] Populating Multiple Levels of Branches

2006-12-20 Thread Brian Holmes
I've used Cold Fusion's built in xml tags for this, but also i've actually just created straight xml text and sent it back using a cfsavecontent to wrap the text and then the cfxml tag to create a valid document before I return it. It seems to work about the same either way as long as it's a small

[flexcoders] Timing out an XML request?

2006-12-20 Thread chuvakgu
Hi all, Is there any way to tell URLLoader to time out a request after a certain period of time?

[flexcoders] Help with HibernateAssembler

2006-12-20 Thread michalzak81
Could someone please direct me to an example that uses HibernateAssembler.

[flexcoders] Question for all you SQL Query experts

2006-12-20 Thread Mike Anderson
Hello All, I was wondering how you more seasoned SQL programmers (as it relates to the User Interface side of things), provide the ability of advanced SQL Queries to novice users - but in a easy to use and non-threatening manner? We have an extensive parts database, and the only way to truly

Re: [flexcoders] Re: SQL Insert operation fails silently

2006-12-20 Thread greg h
Dan, Your writing the following makes me wonder if there might not be a conditional block somewhere that results in the INSERT child statement not being executed. You wrote: The INSERT for the child table simply isn't even attempted. That would be sensible since executing INSERT child

[flexcoders] Re: Help with HibernateAssembler

2006-12-20 Thread thunderstumpgesatwork
The Flex Data Services CRM sample can be configured to use Hibernate. Check out the readme in C:\fds2\jrun4\servers\default\samples\dataservice\crm and also, there's a readme about setting up hibernate in C:\fds2\resources\hibernate Also try a search in the flex documentation for 'hibernate

[flexcoders] Re: Flex 2 Compilation problem

2006-12-20 Thread Renaun Erickson
Getting a little out of my scope. Make sure the WEB-INF folder has the flex folder with the proper config files thats about all else I can think of. I use Tomcat and am pretty sure JBoss is fine, but there is always quirks. good luck, Renaun --- In flexcoders@yahoogroups.com, sanjaypmg [EMAIL

RE: [flexcoders] Question for all you SQL Query experts

2006-12-20 Thread Brian Holmes
I've been using a lot more drilldown techniques to conquer the problem you mentioned. Using trees to organize the higher level data to get to more specific sets of data. Setting filters on the tree data so that users can quickly get to more relevant data and also using tabs to switch between

Re: [flexcoders] Question for all you SQL Query experts

2006-12-20 Thread Patrick Mineault
I would suggest looking at what google does. It allows and/or searches in a completely unobstrusive manner. I would use only one search field, with the following algo: 1. split on 'OR' 2. split on words 3. join on words with AND 4. join on words with OR I would definitely search on all fields

[flexcoders] Re: Best Practice Question/Cairngorm Framework/VOs

2006-12-20 Thread Sebastian Feher
I have the same question as Kenny. What's the easiest way to get the ids/data? Thanks, Sebastian --- In flexcoders@yahoogroups.com, lostinrecursion [EMAIL PROTECTED] wrote: Ok, if you don't mind, I'd like to extend on that a little. Most of the LIst boxes allow for multiple selections.

RE: [flexcoders] Accordion header style problem

2006-12-20 Thread Tracy Spratt
See the Flex Style Explorer, it is great for, well, exploring styles. http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplo rer.html Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of zedan_gu Sent: Wednesday,

RE: [flexcoders] Populating Multiple Levels of Branches

2006-12-20 Thread Tracy Spratt
e4x XML with Tree, definitely. Here is a link to a sample app that uses a tree and some other controls to edit an xml file. It doesn't add children on node click, but it does allow you to add nodes. Maybe some of the techniques will help.

[flexcoders] Re: Reseting DateField components

2006-12-20 Thread Tim Hoff
Hi Steven, Just set the selectedDate to null: startDate.selectedDate = null; endDate.selectedDate = null; -TH --- In flexcoders@yahoogroups.com, stephen50232 [EMAIL PROTECTED] wrote: Hi, I have a form which has two DateField components (one for start date and one end date) I also have

RE: [flexcoders] crossdomain.xml - is there an alternative ?

2006-12-20 Thread Tracy Spratt
Use a server side proxy, and away go troubles, down the drain. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jamiebadman Sent: Wednesday, December 20, 2006 11:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] There's got to be a better way than Cairngorm

2006-12-20 Thread Brian Holmes
I've been using Cairngorm for awhile, through 1.5 beta testing at least and now with Flex 2.0. I understand the concepts it implements and encapsulates, but my problem is with the many files that is needed to implement it. It seems that even a simple call to one cfc that returns a small amount of

[flexcoders] Re: Flex 2 Compilation problem

2006-12-20 Thread thunderstumpgesatwork
There are several compiler settings I have noticed that need to be correctly specified in order for this to work. if you right-click your project and go to properties-Flex Compiler there is a text box for additional compiler arguments you should make doubly sure that the following are set to the

Re: [flexcoders] Re: Load swc instead of swf

2006-12-20 Thread Lachlan Cotter
Hi Saba, What's wrong with just loading ordinary XML files? Cheers, Lach On 20/12/2006, at 10:12 PM, ssundke wrote: Ok.. so what do I do for this problem. I need to write some help files for my project and I need my swf to be standalone since it can be used. I didnt want to hardcode the

[flexcoders] Re: There's got to be a better way than Cairngorm

2006-12-20 Thread thunderstumpgesatwork
Hi Brian, While I do agree that Cairngorm can lead to a maintenance nightmare when the commands get overwhelming in number, there are several things you can do to help alleviate the issue. For one thing, it sounds like you have a fairly well known domain model. I would suggest creating an

RE: [flexcoders] Re: There's got to be a better way than Cairngorm

2006-12-20 Thread Brian Holmes
Hey Thunder, thanks for keeping me from shoveling the sidewalk.:) And actually, I have done exactly what you said, I have a dynamicly built dao, so for adding and deleting, selecting and updating from the database, it's not a prob. Also, overloading my commands, that's what I meant by making

[flexcoders] Advertising inside Flex Apps

2006-12-20 Thread Pablo Apanasionek
Any thoughts on embedding advertising e.g. Google Ads into a Flex SWF? Pablo Gustavo Apanasionek

RE: [flexcoders] Transform XML with external CSS styleSheet via htmlText

2006-12-20 Thread Tom Lee
For everyone's benefit: I found the solution to this problem at http://rantworld.blogs.com/flashlit/2006/08/styling_flex_te.html Ironically, I found it by accident while Googling for something else. :-) _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom

[flexcoders] Column chart average line and labels questions

2006-12-20 Thread thegators_2002
I am trying to customize a ColumnChart. There are several things I want to add, none of which seem to be offered by the standard chart in Flex. I am also wondering if I am using the chart correctly. Background I am creating an app that will display a chart with 5 columns. There are some input

[flexcoders] OT: Christmas cards - flex style

2006-12-20 Thread flashbordon
Merry Christmas, here's our christmas card from DELC (Danish e-Learning Center) http://www.delc.dk/julekort2006 have anyone else made AS3/flex christmas cards? let's see them Happy holidays, -flashbordon

[flexcoders] Senior Flex/ActionScript/Java Developer (los gatos)

2006-12-20 Thread jegenberger
ClipSync (www.clipsync.com), an Abazab service, is a FREE and easy way for people to watch videos while chatting with their friends. ClipSync is a Rich Internet Application written in Flex. As a member of our small engineering team, you will work both on the client side in

RE: [flexcoders] Question for all you SQL Query experts

2006-12-20 Thread Samuel R. Neff
I've written a couple of advance search type applications for clients with mixed responses. We did one at NASA which would allow searching about a hundred fields in a two-part form. First they would enter all values for each field and we would assume and between each. Then they could either run

[flexcoders] How do you access data.[param] in component?

2006-12-20 Thread securenetfreedom
I have a component comprised of a mx:Text field that is rendered in a datagrid. I am trying to access the data.name and the data.descr of the data that is bound to the component so that I can use both in one mx:Text field and not two. If I access them separately like this it works fine: mx:Text

[flexcoders] Trace?

2006-12-20 Thread securenetfreedom
I am coming from Flash Timeline Development to Flex (as opposed to coming from C#, Java, etc to Flex). So I have some catching up to do. One of the things I find most frustrating is the ability to so a simple trace statement, run the code and watch my traces in an output window. Is this possible

RE: [flexcoders] Advertising inside Flex Apps

2006-12-20 Thread Brian Holmes
If you set up the html, cfm, asp, jsp pages that houses the flex app correctly you would be able to load an IFrame on top of your flex app that could work with Google Adwords. But it'd involve some sort of parrallel infrastructure running that's loading relevant data into your pages,metatags, and

RE: [flexcoders] Trace?

2006-12-20 Thread Brian Holmes
Debug mode is the only option as far as I know. But you should check out the mx.util.ObjectUtil class. It'll allow you to see more complex data. Just import it into your class and use it from within The trace object. Trace(ObjectUtil((someObject)); Also, there's a nice firefox thread that will

[flexcoders] Re: Problem with DataGrid ItemRenderer

2006-12-20 Thread securenetfreedom
You may want to take a look at the following where the setter function is overridden to maintain sorting (which may help with the row height issue). http://www.returnundefined.com/2006/10/item-renderers-in-datagrids-a-primer-for-predictable-behavior/ Jeff --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Trace?

2006-12-20 Thread coderjun
I think the firefox extention that Brian was talking about is this: http://www.sephiroth.it/weblog/archives/2006/10/post_1.php -Jun --- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: Debug mode is the only option as far as I know. But you should check out the

[flexcoders] TypeError: Error #1009 - httpservice

2006-12-20 Thread titipouns19
Hello, I try to display the word 'bonjour' (xml file) and when i click to the button id_button i have this error : TypeError: Error #1009: Il est impossible d'accéder à la propriété ou à la méthode d'une référence d'objet nul. at affiche_bonjour/affichebonjour() at

[flexcoders] FDS without identity property?

2006-12-20 Thread Oliver Lietz
Hi List, is there a way to use FDS without the identity property? Objects have an identity in the VM and I want to use that identity - not an artifical one. Is FDS unable to send back the same object (in a delete or update operation) which it receives from my Java backend? tia, O.

Re: [flexcoders] Re: Trace?

2006-12-20 Thread Ralf Bokelberg
... and this works without using the debug mode. Cheers, Ralf. On 12/20/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: When you install the debug player, you can run tail on flashlog.txt. If you are on windows, you can install cygwin to get tail. Cheers, Ralf. On 12/20/06, coderjun [EMAIL

[flexcoders] Re: TypeError: Error #1009 - httpservice

2006-12-20 Thread coderjun
Titipouns, The reason you are getting the null reference error is because you are trying to assign the result of the HttpService call before the call has completed. (Remember, in Flex you have to remember things can work asynchronously.) In other words, rather than calling the affichebonjour()

[flexcoders] Re: Question for all you SQL Query experts

2006-12-20 Thread Bill Lane
I would go a step further with Patrick's suggestion. Have a look at how a range of applications handle filtering. For example the way you define a playlist within iTunes is easily achieved with Flex and provides a flexible and easy to understand interface for most users. Bill Lane --- In

[flexcoders] Right-click menu while dragging

2006-12-20 Thread Michael Ritchie
I am experiencing some odd behavior with the ContextMenu in Flex 2. Even though I hide the built in items on the context menu. While dragging an object, quickly right-click, the entire Flash Player menu will appear. Regular right-clicks on the application have the truncated ContextMenu. This

RE: [flexcoders] TypeError: Error #1009 - httpservice

2006-12-20 Thread Tracy Spratt
All data service calls in Flex are asynchronous. This means that you *cannot* access the result in the same function in which you invoke the send(). Instead, create a handler function and call it from the result event. Like this: mx:HTTPService id=userRequest url=donnees.xml

[flexcoders] Re: Help with HibernateAssembler

2006-12-20 Thread meteatamel
This is a good tutorial on HibernateAssembler as well: http://blogs.adobe.com/mtg/2006/08/my_first_hibernate_enabled_fle.html -Mete

RE: [flexcoders] Re: TypeError: Error #1009 - httpservice

2006-12-20 Thread Tracy Spratt
I believe it is reccommended that lastResult only be used in binding expressions, though it appears to work as you show it. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of coderjun Sent: Wednesday, December 20, 2006 5:25 PM

Re: [flexcoders] Spring / FDS Integration :: How to assign fill-method and asyn-method when use SpringFactory?

2006-12-20 Thread Carlos Rovira
Sorry Oliver, I couldn't found any solution to this problem. Hope Jeff Vroom or Christophe Coenraets could throw some light on this since Spring Integration with FDS is a must for a huge amount of people out there. Today Spring is the decoupling framework number one in enterprise java solutions

Re: [flexcoders] SequenceCommands ... is there a point to their existence?

2006-12-20 Thread Bjorn Schultheiss
It's very interesting how many succesful implementations of chaining events or commands developers are using. I think sequenceCommand in an attempt to be a pseudo abstract style class, doesn't solve the issue of when there is a chain of commands that need to be executed. Perhaps a best

[flexcoders] Surfacing Flex - Showcase Flex Apps on Flickr

2006-12-20 Thread Ted Patrick
Want to showcase a Flex application and get developer/company credit? I created a Flickr account to showcase images of Flex applications. Many times Flex apps reside hidden behind the firewall and public viewing of the live app is impossible. http://www.flickr.com/photos/flexapps/ Follow the

Re: [flexcoders] Re: SEO Compatibility

2006-12-20 Thread Kevin Newman
Claus Wahlers wrote: The Flash website was http://guipaganini.com.br/ It supports deep linking, eg. http://guipaganini.com.br/12/75 View source (or switch off JS) to get the idea. The XHTML is loaded as is into Flash. I'm using the Symfony PHP5 framework on the server side. (Disclaimer:

Re: [flexcoders] Re: Trace?

2006-12-20 Thread Clint Modien
You'll need to configure your system for trace output first. This is for flex 1x but the same is true for 2.x . http://www.adobe.com/devnet/flex/articles/client_debug.html On 12/20/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: ... and this works without using the debug mode. Cheers, Ralf.

Re: [flexcoders] Re: SEO Compatibility

2006-12-20 Thread hank williams
Either way, it's reconciling the two urltypes that's the crux of the problem as I see it. Kevin, You keep saying this, and maybe I am missing the big picture here, but I am not clear why it is necessary to reconcile these two url types, or how they relate to each other at all. It seems to

RE: [flexcoders] Trace?

2006-12-20 Thread Gordon Smith
When you use Run Debug in FlexBuilder, trace() output appears in the Console panel. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of securenetfreedom Sent: Wednesday, December 20, 2006 12:59 PM To:

[flexcoders] Second post: Really stuck on a problem which should be really easy? :(

2006-12-20 Thread rumpleminzeflickr
Hi there, I'm using the RDS Dataview in Flex Builder 2, and creating .cfc's and .as using the coldfusion wizard. This generates: - item.cfc - itemGateway.cfc - item.as Great, I can use the get() and getAll() methods of the itemGateway fine, but I can't figure out how to save the item. the

[flexcoders] Datagrid scrolling woes!

2006-12-20 Thread Cameron Ray
Hello all, I'm trying to accomplish something that is seemingly easybut is driving me bananas due to the fact that it's not working. I want to setup a function that can be called and that function will scroll my datagrid to a specific row within that datagrid. Here's what I've got

[flexcoders] newbie question: dataProvider - dataGrid ArrayCollection

2006-12-20 Thread dj
I'm trying to populate a simple dataGrid and add two arrays, one for the id that's not shown and one for the title, which is... the non-commented line works with just adding an array, but how do I do the line that's commented out, so I can ge the id field, thanks, sorry for the newbie question

Re: [flexcoders] crossdomain.xml - is there an alternative ?

2006-12-20 Thread Jeremy Rottman
Mark is correct, if you put your crossdomain.xml file inside of the document root that is the first place flex / flash look for it, if it doesn't find it inside of there, then the second place it looks is the directory that the swf is sitting inside of. So place your crossdomain.xml file in

  1   2   >