[flexcoders] Issues with Scroll!

2005-09-29 Thread Sreejith Unnikrishnan
Can someone help me with this problem. In the following sample, the scroll appears on the whole application. What is the correct/suggested way to avoid that. The scroll should be applied on the Panel and not the Application here. I tried many things such as appliying creationComplete,

Re: [flexcoders] Issues with Scroll!

2005-09-29 Thread Niklas Richardson
You can use the vScrollPolicy and hScrollPolicy to control which contains have scroll bars on them and which do not. However, you might find some strange behaviour when you want scroll bars on a deeply nested component, however even with vScrollPolicy=on (for example) the scroll bars do not show.

Re: [flexcoders] Flex Server Alternatives

2005-09-29 Thread Niklas Richardson
Someone might have mentioned this already, but I haven't seen it. If you want some of the functionality of Flex (i.e. forms, data grid, etc...) and cost is an issue, then ColdFusion MX 7 could be an option for you. It has a very cut down version of Flex built into it and accessible via

[flexcoders] Re: Issues with Scroll!

2005-09-29 Thread chakura7777
Hi, here is a sample code which I've modified. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Panel width=500 height=500 mx:HBox width=500 height=1000 backgroundColor=#FFCC00/mx:HBox mx:ControlBar width=500

[flexcoders] Flex DataGrid with large recordset

2005-09-29 Thread sergei_tsoganov
When I first loaded my flex datagrid with 190 records I was really disappointed in flex. It was almost impossible to scroll tha grid or resize it. It seems like flex components are much slower than even flash components. What is the reason?? How to make datagrid to scroll faster with 200 rows?

Re: AW: [flexcoders] Issues with Scroll!

2005-09-29 Thread Sreejith Unnikrishnan
Excellent! :-) Thanks, I forgot I needed to just push the super-charged-turbo button on my Ferrari (courtesy Tariq) to get going! Christoph Diefenthal wrote: Great to return, what I learnd last week thanks to Dustin Mercer :) You have to set minHeight=0 minWidth=0 It works this way: ?xml

Re: [flexcoders] mx:Validator

2005-09-29 Thread Clint Modien
It's in the manual http://livedocs.macromedia.com/flex/15/flex_docs_en/0715.htm On 9/28/05, Aly Sidi [EMAIL PROTECTED] wrote: Hi AllI have a combobox that i wisth to apply a mx:Validator field= formObjects.CanPlay required=true requiredFieldError=booboo validate= / 1. I do not

[flexcoders] FlexUnit

2005-09-29 Thread hari.ibs
Please give me the information about FlexUnit..and also tell me it is for frontend testing or backend testing. ThanksRegards Harinath K -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Good code just stops working with no changes...

2005-09-29 Thread Libby
I have Model Binding set up so that when user clicks on a row in a datagrid, the row is copied to textfields on the screen for editing by the user. This works fine for several days, then, without changing anything, it just stops working. I try to run it thru the debugger and it appears that the

Re: [flexcoders] Calls to CFCs

2005-09-29 Thread Greg Johnson
I will give that the / suggestion a try. As a workaround I switched to a webservice vs remoteobject and it has no problems and seems to let the client load faster. But I just commented out the remoteobject so I will try flipping back and see what happens. Now my biggest problems are I am

[flexcoders] FlexUnit

2005-09-29 Thread hari.ibs
Hi All,I have downloaded Flexunit0.9 and done sample application i.e TestMoney.as...and got results fine.But when I am doing with Caingorm framework ,i have bit confused..for which classes i need to test..is it for Viewhelpers or Commands..And my main question is,Flexunit is for frontend

[flexcoders] ComboBox selectedItem comparison

2005-09-29 Thread fowleryj
Hello, I'm trying to determine whether a user's selection within a ComboBox is a valid one for the task that is being carried out. How do I do a comparison with a ComboBox? I've tried selectedItem, selectedItem.data, selectedItem.label, and selectedIndex-- selectedItem returns an [object Object],

RE: [flexcoders] ComboBox selectedItem comparison

2005-09-29 Thread Paramjit jolly
-Original Message- From: flexcoders@yahoogroups.com on behalf of fowleryj Sent: Thu 9/29/2005 6:53 PM To: flexcoders@yahoogroups.com Cc: Subject: [flexcoders] ComboBox selectedItem comparison Hello,

RE: [flexcoders] Calls to CFCs

2005-09-29 Thread Peter Farland
Note that my suggestion was to append the ? query string marker, please let me know if this resolves the issue as your initial symptoms described the issue with AppendToGatewayUrl exactly. Also, the problem is that Flash Remoting (and hence stillFlex's RemoteObject)with ColdFusion

[flexcoders] Compilation Error - Unresolved Symbol

2005-09-29 Thread Michel Bertrand
Title: Compilation Error - Unresolved Symbol Hi ! I'm having the following compilation error: Unresolved symbol, , required by __Packages.SideSelector I don't know how to fix it. I don't know to find out where is the piece of code causing the error. Below the component code for

RE: [flexcoders] ComboBox selectedItem comparison

2005-09-29 Thread Christoph Diefenthal
Have not done it yet, but there is a function getSelectedItem( ) in ComboBox... tried that? -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von fowleryj Gesendet: Donnerstag, 29. September 2005 15:23 An:

RE: [flexcoders] Compiling a Flex app using mxmlc

2005-09-29 Thread Kevin Langdon
Your contextroot needs to look like this: -contextroot /[webappName] It takes a little while to get the properties set correctly for mxmlc but once you do it works great. You also might want to check this out: http://www.deitte.com/archives/2005/09/speeding_up_mxm.htm to take advantage of class

Re: [flexcoders] Calls to CFCs

2005-09-29 Thread Greg Johnson
Well the problem with it not passing solved itself somehow. Debugger still wont let me watch variables though. I tried the ? and while it prevented it from hanging, when I go do one search I get a message about unsupported type in stream so I just went back to the webservice. Even tried

[flexcoders] mouse-right-click-event?

2005-09-29 Thread Christoph Diefenthal
Hi people, Is there a possibility to process a mouse-right-click-event instead of opening the flash-menu? Cheers Christoph Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back!

RE: [flexcoders] Flex DataGrid with large recordset

2005-09-29 Thread Mercer, Dustin
Try adding liveScrolling=false to the datagrid. That will make the datagrid scroll without redrawing as it is scrolling. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sergei_tsoganov Sent: Thursday, September 29, 2005 2:24 AM To:

RE: [flexcoders] Flex Server Alternatives

2005-09-29 Thread Kevin Langdon
WARNING: This message contains little-to-no helpful information and for the most part is a rant. The problem with Flex pricing isn't the price itself. The problem is it's model. Most development I have seen is only using Flex as a compiler, not a service. Most applications would actually

[flexcoders] Opening Browse Window In Flex like yahoo/rediff mail

2005-09-29 Thread sandip_patil01
HI All, I want to open attachment window like we have in Yahoo/Rediff where if we want to send a file we click on attachment button then attchment window opens from where we can attach files. lly,I want to do this in Flex. I tried with

RE: [flexcoders] Calls to CFCs

2005-09-29 Thread Peter Farland
Are you setting remote-objects-debug in flex-config.xml? What version of ColdFusion are you using? Re: the unsupported type in stream message... are you doing anything like the following: var s:String = new String("foo"); var b:Boolean = new Boolean(true); var n:Number = new Number(4);

[flexcoders] Search while you type?

2005-09-29 Thread Greg Johnson
I return a list from a database into a datagrid. I then have a text entry field with a keydown event set to call a function. The function runs though the currently loaded like, compares what is in the text entry field's .text property and creates a array with only those entries then resets the

Re: [flexcoders] Flex Server Alternatives

2005-09-29 Thread David Solis
This is a commercial alternative solution based on Java: http://www.canoo.com/ulc/ Regards On 9/27/05, Anupam [EMAIL PROTECTED] wrote: Hi all, Is there any alternative to Flex server, except the (very expensive) one provided by MM? Are there any other options? Have all the members of

Re: [flexcoders] Calls to CFCs

2005-09-29 Thread Greg Johnson
I tried to set that once and started getting J-Run errors. We are running MX7. I am not exactly doing that. The related code that is run when that message shows up is below where Person_List is a datagrid, and otd_tech_after_db is empty at the time of the cfc call var

[flexcoders] Tracing Events

2005-09-29 Thread bsd
Is there a way to trace events from one point to another in a Flex application, say when clicking on a tab or changing to another selectedChild in a viewstack? Thanks in advance! Brad -- Flexcoders Mailing List FAQ:

Re: RE: [flexcoders] File upload: 'Browse' only working on localhost?

2005-09-29 Thread manishreisha
Hi all, I also tried the code for File Upload. Even after downloading the flash player 8. It does not work I am usind the same file upload.cfm to upload the file. What happens it just freezes on initialization. Others applications just work fine. If anyone of you configured that . please let

Re: [flexcoders] Flex Server Alternatives

2005-09-29 Thread Jonathan Bezuidenhout
It DOES affect the developer - few companies can afford the high prices and you are out of a job. I think at the moment pointless for any developer to learn Flex with the few limited opportunities. The place I am currently working is the only one in town that does this work. I think if you

RE: [flexcoders] Calls to CFCs

2005-09-29 Thread Peter Farland
I could probably solve your JRun errors too if you posted them... but that aside, I can help you turn on server side tracing for the CFMX 7 version of the gateway what you need to do is look out for the gateway-config.xml file that is specific to the gateway that you're calling. It

[flexcoders] Popping up the same window more than once

2005-09-29 Thread fowleryj
I've noticed that if I have WindowA open, and I click a button inside of it that opens WindowB, a button inside of WindowB that is supposed to open an instance of WindowA will not do so. I see how this is useful and prevents an endless cycle of opening windows, however, there's an instance where I

RE: [flexcoders] Calls to CFCs

2005-09-29 Thread Peter Farland
Er,that wouldrequire the "Debug" level log too... logger level="Debug"flashgateway.log.DefaultLogger/logger And I should have also mentioned that you need to restart JRun if you change any config files. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Calls to CFCs

2005-09-29 Thread Greg Johnson
Here is the start of the CFC function cffunction name="get_tech_search" access="remote" returntype="array" cfargument name="before" type="string" cfargument name="after" type="string" cfargument name="innovators" type="array" I tried the change on the variables and nothing. I then

RE: [flexcoders] Calls to CFCs

2005-09-29 Thread dfatta
Title: Message I wrote a blurb on how to integrate Flex and CFCs. It might be of some help. http://www.cflex.net/showfiledetails.cfm?ObjectID=303 Darius -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg JohnsonSent:

RE: [flexcoders] Flex Server Alternatives

2005-09-29 Thread Stacy Young
I think flex was targeted as niche intentionally. Not every product can or should be target for the largest possibly audience. In this case, a new field of technology with many unknownsat least until youve banged out a couple of releases to get a handle on the path you need to follow.

RE: [flexcoders] Flex Server Alternatives

2005-09-29 Thread Carson Hager
This actually depends upon the feature set you use. If you use the webservices proxy, http proxy or remoteobjects, then the Flex server is actually doing something at runtime. In the projects that we've done to date, we have never used any of these features for a number of reasons. The protocol

RE: [flexcoders] Opening Browse Window In Flex like yahoo/rediff mail

2005-09-29 Thread Carson Hager
Does this work for you? http://flexdemos.cynergysystems.com/samples/upload/main.mxml Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY ext. 89 Mobile: 1.703.489.6466

RE: [flexcoders] ComboBox selectedItem comparison

2005-09-29 Thread Tracy Spratt
What does your DataProvider look like? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fowleryj Sent: Thursday, September 29, 2005 9:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox selectedItem comparison Hello, I'm

RE: [flexcoders] mouse-right-click-event?

2005-09-29 Thread Tracy Spratt
http://www.cflex.net/showfaq.cfm?Object=faqchannelID=1faqtype=default fields=defaultValues=#Question396 Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christoph Diefenthal Sent: Thursday, September 29, 2005 11:05 AM To:

RES: [flexcoders] Compilation Error - Unresolved Symbol

2005-09-29 Thread Michel Bertrand
Title: Mensagem Just to register ... I found the error ... I cannothave icon="" in the code ... -Mensagem original-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de Michel BertrandEnviada em: quinta-feira, 29 de setembro de 2005 11:20Para:

Re: [flexcoders] mouse-right-click-event?

2005-09-29 Thread Clint Modien
I've seen a work around for this somewhere in this group it involved catching using the mouseOver event to determine which component the mouse is over and editing the context menu before the menu is shown... never done it but it might be something to try? Can search this group here... *no

RE: [flexcoders] mouse-right-click-event?

2005-09-29 Thread Tracy Spratt
Here is a solution from Manish: http://www.cflex.net/showfiledetails.cfm?ObjectID=195 Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien Sent: Thursday, September 29, 2005 2:40 PM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] embedded fonts/linux/axis labels charting

2005-09-29 Thread Robert Brueckmann
Were trying to utilize the horizontal axes rotation attribute for the axis labels, for which Eli explains in his example that you need an embedded font to take advantage of the rotation of the labels. I used his code as an example: @font-face { font-family: chartLabelFont; src:

Re: [flexcoders] mouse-right-click-event?

2005-09-29 Thread David Harris
The other thing to remember... The right click can only be used on the Main MXML file, and not any nested views. Limitations in the flash player has this changed for flash 8, any one know?On 9/30/05, Tracy Spratt [EMAIL PROTECTED] wrote: Here is a solution from Manish:

[flexcoders] Re: ComboBox selectedItem comparison

2005-09-29 Thread fowleryj
For this ComboBox, the DataProvider is an object that holds the result of a stored procedure-- the names of a series of groups to which a person can belong. I wish I could give you a trace statement to look at, but I haven't gotten the Flash Debugger to work yet. --- In

RE: [flexcoders] mouse-right-click-event?

2005-09-29 Thread Christoph Diefenthal
Ok, I figured out, how to set a ContextMenu on a component. Works fine... with STATIC components like below . But with dynamic components If I change the initThis function below to this function initThis(){ //var my_cm = new _global[ContextMenu](); var my_cm

[flexcoders] Re: Compiling a Flex app using mxmlc

2005-09-29 Thread John Larson
Thanks for the info. I did get it to work, but through another method to yours: My app is in the root, so I can't provide [webappname] as you've mentioned below. I provide / as context root in the MXMLC command line, but I also have to make some changes in the flex-config.xml file to

Re: [flexcoders] Flex Server Alternatives

2005-09-29 Thread sam / pixelconsumption
at MAX almost 50% of the sessions are about Zorn or include Zorn some how, I'm sure we'll all have a clear picture of what the future holds after MAX. // sam robbins // pixelconsumption Clint Modien wrote: According to Mike Chambers @ MM Zorn will

[flexcoders] Re: Flex Server Alternatives

2005-09-29 Thread Alex Alex
I just purchased a 4 cpu license. Does this mean that there is no worth in it when zorn comes out? Will I get the new flex for free? Or do I have to pay all that money again? I hope Macromedia sorts all that out. Alex --- In flexcoders@yahoogroups.com, sam / pixelconsumption [EMAIL

Re: [flexcoders] Re: Flex Server Alternatives

2005-09-29 Thread JesterXL
Zorn is not Mistral; while Zorn is a plugin for Eclipse, it is NOT a server component like the Flex server is currently. Huge difference. - Original Message - From: Alex Alex [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, September 29, 2005 3:39 PM Subject:

Re: [flexcoders] Re: Flex Server Alternatives

2005-09-29 Thread Dave Carabetta
On 9/29/05, Alex Alex [EMAIL PROTECTED] wrote: I just purchased a 4 cpu license. Does this mean that there is no worth in it when zorn comes out? Will I get the new flex for free? Or do I have to pay all that money again? I hope Macromedia sorts all that out. Disclaimer: I don't work for

[flexcoders] column chart, stacked + single-value

2005-09-29 Thread Tom Fitzpatrick
Is it possible to mix two different kinds of columns on the same chart? Specifically, a single-value column that sits next to a stacked column? A hypothetical example: building on the stacked column example in the flex chart explorer, this new chart would add a single-value column next to the

RE: [flexcoders] column chart, stacked + single-value

2005-09-29 Thread Ely Greenfield
Hi Tom. Sorry to say, this is not supported in Flex 1.5. Although a good request for Flex 2. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Fitzpatrick Sent: Thursday, September 29, 2005 12:52 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] embedded fonts/linux/axis labels charting

2005-09-29 Thread Anatole Tartakovsky
Robert, Try @font-face { font-family: chartLabelFont; src: url("verdana.ttf"); } You will also need to open control panel- fonts, select verdana font and copy it to the same folder as your mxml file - that would get font embedded in swf Thanks, Anatole Tartakovsky -

Re: [flexcoders] Search while you type?

2005-09-29 Thread Greg Johnson
I did some sniffin around and got mine to work right. For anyone interested I made a kinda generic version below. // sourceArray = any array you are currently using as a datasource, most likely it will be preloaded with entries // search = the ID of the text entry field you want to use

RE: [flexcoders] Good code just stops working with no changes...

2005-09-29 Thread Matt Chotin
Might be the same thing people were discussing a few days ago: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg13518.html Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Libby Sent: Thursday, September 29, 2005 5:34 AM To:

[flexcoders] Re: Good code just stops working with no changes...

2005-09-29 Thread Libby
Yep, it sure sounds like it. I think I feel better, knowing it ain't just me causing this --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Might be the same thing people were discussing a few days ago:

Re: [flexcoders] flex and third party search engines[john dowdell.. anybody...]

2005-09-29 Thread John Dowdell
Nithya R wrote: say i have a flex site for online shopping... i need a search feature for the products... say i type the product name and it should fetch me the details about the product and all the links associated to it... so for this i need a search engine to be integrated with the

[flexcoders] div like behaviour?

2005-09-29 Thread flexhansen
Hi List! Is there an easy way to achieve mx:Tile behaviour but without the tiles being of equal size? In other words I'm looking for something like the div-tag of plain old html that wraps content to fit the width prop. instead of putting up scrollbars. Thanks! -michael

Re: [flexcoders] Questions about createChild() and destroyChildAt()

2005-09-29 Thread Prasad Dhananjaya
Hi all, Still I have a problem with destroyChild().I want to destroy only img1. But it destroys every thing on the application including panel,canvas. Not only selected child. can someone tell me why it is destroying every thing. thanks Prasad

RE: [flexcoders] Questions about createChild() and destroyChildAt()

2005-09-29 Thread Nischal Pathania
Prasad: Use JobNetCanves.destroyChildAt(iChildIndex); statement to remove child element. Regards, Nischal Pathania From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Prasad Dhananjaya Sent: Friday, September 30, 2005 06:05 To:

RE: [flexcoders] Re: Flex Server Alternatives

2005-09-29 Thread David Mendels
Hi, If you have maintanence, you will get Flex future versions for no additional charge. You will not have to pay again and there is (IMO) a lot of worth in it, and in the path to Flex 2.0 that you are on. -David Macromedia -Original Message- From: flexcoders@yahoogroups.com

Re: [flexcoders] Questions about createChild() and destroyChildAt()

2005-09-29 Thread Prasad Dhananjaya
Hi Nischal, Thanks a lot. Now it works. Regards, Prasad Prasad: Use JobNetCanves.destroyChildAt(iChildIndex); statement to remove child element. Regards, Nischal Pathania From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On