[flexcoders] Flex breeze integration

2005-11-07 Thread Spike
Has anyone tried to integrate a Flex 1.5 swf with Breeze? I've had a bit of a play around and every time I try to load a Flex swf the browser CPU utilization goes up to 100% and I have to kill it with Task Manager. I've tried sticking a this._lockroot=true in the creationComplete handler for

[flexcoders] Re: Flex breeze integration

2005-11-07 Thread Spike
ok, Tracked down the issue to another .swf in the Flex app that I was loading using mx.controls.Loader. I've changed that to use an embedded .swf and it seems to work fine now. SPike On 11/7/05, Spike [EMAIL PROTECTED] wrote: Has anyone tried to integrate a Flex 1.5 swf with Breeze? I've

[flexcoders] Re: Brocade Case Study

2005-11-07 Thread michael457728
Dave Thanks for your reply, I like your front to back approach as it enables you to go out and generate customer awarness whilst the product is still in development. It sounds like you are alone in your front to back design, what are the objections to it? Mike --- In

[flexcoders] Re: Dynamic MXML loading

2005-11-07 Thread varalakshmi_palani
Thank you for your response. I understand that we are losing out on some good features of RIA with this approach, however there is a business reason behind having to do this. In the application there are no standard set of screens. The screen controls and the data to be displayed (mapped

[flexcoders] Re: Cellrenderer For ComboBox

2005-11-07 Thread moyosaned
Ok just looked in to the source of a combobox... __dropdown = PopUpManager.createPopUp(this, List, false, o, true); This is probably why the cellRenderer is not working.. Somebody got an solution..ELse I got to build my own combobox. which I find overdone. --- In flexcoders@yahoogroups.com,

[flexcoders] Can I Capture f5 keyboard event in actionScript

2005-11-07 Thread manish
Hi all, I need to capture F5 event.Can i do this in flex. I will really appreciate if someone will help me in this regard Thanks Manish Jain Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back!

[flexcoders] Re: Cellrenderer For ComboBox

2005-11-07 Thread moyosaned
AnybodyMy cellrenderer is working in a List. But not in de List used in the ComboBox. --- In flexcoders@yahoogroups.com, moyosaned [EMAIL PROTECTED] wrote: created an cellRenderer, I want to use this cellrenderer in a combobox; I tried the following: ?xml version=1.0 encoding=utf-8?

RE: [flexcoders] Can I Capture f5 keyboard event in actionScript

2005-11-07 Thread Mika Kiljunen
If you run flex on flashplayer running on IE it wont work, since IE swallows the F5 keypress and refreshes the web page on F5. Same problem with ESC. -Mika From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of manish Sent: 7. marraskuuta 2005

RE: [flexcoders] Re: Cellrenderer For ComboBox

2005-11-07 Thread Philippe Maegerman
I used to do theCombo.getDropdown().cellRenderer = 'MyCellRenderer'; Not sure if you have to surround the class with quotes. Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of moyosanedSent: lundi 7 novembre 2005 12:20To:

[flexcoders] Re: Resizing images in a TileList

2005-11-07 Thread gootish
Hello. Thanks for you fast response. In response to your questions, the tile is always bigger that image. If i re-assign the dataProvider to the tilelist, tilelist.dataProvider = element; the image don´t appear. The image is loaded via HTTP, then the source of image is like,

[flexcoders] will we have access to makeplayerglobal script ?

2005-11-07 Thread zwetank
Hello, exploring a little more in depth how Flex2 compilation work I found in ..\Flex2alpha1\plugins\zorn.codemodel_2.0.197\resources 2 very interesting files Global.as and playerglobal.as I don't know for others but for me these 2 files are more valuable than anyother AS3 documentation It

[flexcoders]

2005-11-07 Thread Sergio Vasquez
Hi All! I have a problem with return value in my function inside in my class. In my class business I have the following function:     public function ListBible():String {   webservice = DataAcess.wsHelper(Common.getDomain(1));   var

[flexcoders] Re: Brocade Case Study

2005-11-07 Thread Dave Wolf
Ya know, its funny. As developers this isnt a value you think of first hand, but I have to saw clients love that they get a demonstrable product very early in the development cycle. Now they are out there generating leads and revenue before the offering is even complete. There are others who

Re: [flexcoders] Can I Capture f5 keyboard event in actionScript

2005-11-07 Thread John C. Bland II
Not even fscommand(trapallkeys, true); will work?(just curious)On 11/7/05, Mika Kiljunen [EMAIL PROTECTED] wrote: If you run flex on flashplayer running on IE it won't work, since IE "swallows" the F5 keypress and refreshes the web page on F5. Same problem with ESC. -Mika

Re: [flexcoders]

2005-11-07 Thread Aldo Bucchi
Sergio, call.resultHandler will be called later once the result comes back from the server. it is an *asynchronous* call. this means you cannot return the value in the first function because it will take some time to be available. take a look at the docs and you will find plenty of examples on

RE: [flexcoders] Re: Brocade Case Study

2005-11-07 Thread Tim Beynart
37 Signals is great for UI, no doubt, but those boys seem to have a serious antiFlash angle on web applications. -Original Message- ... So yes this is not a common approach but you will find other thought leaders such as 37 signals (probobly one of the best user experience groups

RE: [flexcoders] Re: Dynamic MXML loading

2005-11-07 Thread Roger Gonzalez
If the forms all use a smaller vocabulary than MXML itself, you would be better off writing a small form description in XML, storing that description in the database, loading at runtime, and using that description to dynamically instantiate the various MXML components. Server-side compilation was

[flexcoders] Re: Tab Navigator or LinkBar text color after selection

2005-11-07 Thread Andriy Panas
For the linkbar try the disabledColor style. I tried disabledColor with LinkBar, and failed...mx:LinkBar id="lb1" dataProvider="{['Flex','Flash','Dreamweaver','Breeze']}" disabledColor=""="#FF"/When I see at http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.htmlthat disabledColor

[flexcoders] Re: Brocade Case Study

2005-11-07 Thread Dave Wolf
Yup, no doubts. Not everyone can be totally enlightened smile. He just wanted to know if other folks ever approached development using a front-to-back style other then us and was it common. No one likes to feel like they are too much off on a flyer. I can dig that. The net-net though is

[flexcoders] Custom components in Flex 2

2005-11-07 Thread Kai Pradel
Hi there, I've been trying to create a simple custom component in Flash 8 (IDE) and embed it into my mxml project (Flex Builder 2) but have been unable to make it work. I have tried both using Flex 1.5 and 2.0 Alpha but to no avail. I followed this tutorial step-by-step

[flexcoders] Repeater endIndex ?

2005-11-07 Thread Doodi, Hari - BLS CTR
Hi All, I have a situation where in I get data from database as an array of VO of length more than 5 but I have to display only first 5 records. Is there any way to ask repeater to stop at index 4? Is there any repeater property like endIndex as opposite to startIndex. I need those

RE: [flexcoders] Custom components in Flex 2

2005-11-07 Thread Roger Gonzalez
This recipe is for Flex 1.5. There is no way to combine the AS2 code generated in Flash 8 with the AS3 code used in Flex 2. The supported interaction for associating a Flash 8 asset with a component is basically as follows: 1) Build an asset in Flash 8, with no code. 2) Convert it to a symbol.

[flexcoders] DropShadow in 1.5

2005-11-07 Thread JesterXL
I cannot for the life of me finding where this symbol is used in the 1.5 framework. I see the DropShadow class, and the symbol reference in the mx.core.View... but who the heck attaches it? Searching through classes via FlexBuilder's class drop down is nightmarish... please help.

[flexcoders] Flash Player - Desktop integration... SDK?

2005-11-07 Thread Aldo Bucchi
Hi all, Sorry for the strange question.. I couldn't find any info on this anywhere else. When I look at the Design view in Flex Builder... is it being rendered by some variation of the flash player? if so, how does it integrate with Java? I guess it is internal stuff. But, is there any

Re: [flexcoders]

2005-11-07 Thread Synapse Storm Corp.
Thank You!Now I understood why my function don't return a value.The server is delayed and my function has that to inform when was processed it can catch the value. public function ListBible():String { webservice = DataAcess.wsHelper(Common.getDomain(1)); var call:Object =

[flexcoders] List / DataGrid with growing cells problem

2005-11-07 Thread sbyrne_dorado
I'm trying to create a List (and then a DataGrid) that can have some cells that grow in height(an actually get additional child elements) in response to some user gesture. I have a custom row renderer and cell renderer, and when I add the child elements the cell does grow, but does so by adding

Re: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-07 Thread Richard Rodseth
Thanks, Matt. I was working on such a loop, but I like that valueCommitted idea better. But I haven't been able to figure out how to trigger valueCommitted for the checkboxes, since there is no focus to be lost. - RichardOn 11/3/05, Matt Chotin [EMAIL PROTECTED] wrote: So

RE: [flexcoders] How to prevent events from passing through upper components

2005-11-07 Thread Dan Diodati
Is this normal behavior? Since I am handling mousedown events on the TitleWindow, I figured that no mousedown events should make it to any components below my Container. If a MovieClip is the only way is there some good online references that describe how to work with MovieClips? I am new

RE: [flexcoders] DropShadow in 1.5

2005-11-07 Thread Kevin Langdon
I believe that this is done by the skin. So in most cases it is in mx.skins.halo.RectBorder -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, November 07, 2005 4:37 PM To: Flexcoders Subject: [flexcoders] DropShadow in 1.5

Re: [flexcoders] Flash Player - Desktop integration... SDK?

2005-11-07 Thread JesterXL
Don't know about design view, but Flash for desktop UI has been something I've always enjoyed doing. Worked great for C++ apps, and worked great with VB; both of which used XMLSocket. I've used fscommand in the past, simply respecting what C++ told me to do, same with Centura. Now, however,

[flexcoders] Re: Cellrenderer For ComboBox

2005-11-07 Thread anatolet
OK, just because you already stated that you looked at the source code, I hope posting the code here is not going to be such a big offence - I recall few people exchanging messages on how you can do it with debugger, etc. I am going to post a little bit more generic code - allowing you to

[flexcoders] FlashPlayer 7 Security Issue versus debug player and other platforms

2005-11-07 Thread Eric Raymond
With the exploit listed below, there seems to be a solution path for those who run the normal player on common platforms. What about those who run either the debug player OR run flash on other platorms such as Linux? I guess this will improve the adoption rate of FP8. Wish FP8.5 was already out

[flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks,I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0!You can get the latest build

Re: [flexcoders] Flash Player - Desktop integration... SDK?

2005-11-07 Thread Aldo Bucchi
Hi Jesse, Great to know you've done it... ;) Do you have any idea on how to make a Desktop Flash UI accept drag and drop from an external app... or access the clipboard? best, aldo On 11/7/05, JesterXL [EMAIL PROTECTED] wrote: Don't know about design view, but Flash for desktop UI has been

Re: [flexcoders] Flash Player - Desktop integration... SDK?

2005-11-07 Thread Manuel Saint-Victor
Is there a big advantage to using Visual Basic over on of the projector tools?ManiOn 11/7/05, JesterXL [EMAIL PROTECTED] wrote: Don't know about design view, but Flash for desktop UI has been something I've always enjoyed doing. Worked great for C++ apps, and worked great with VB; both of

Re: [flexcoders] Flash Player - Desktop integration... SDK?

2005-11-07 Thread John C. Bland II
Checkout Zinc: http://www.multidmedia.com/software/zinc/. I think it has the biggest feature-set available, could be very wrong. On 11/7/05, JesterXL [EMAIL PROTECTED] wrote: mProjector allows drag and drop... and I think Screenweaver did too. Not sure about clipboard... :: looks ::

[flexcoders] Services.mxml flex-config.xml issues

2005-11-07 Thread charged2885
I'm trying to access a RemoteObject. In flex-config.xml, I have the following under remote-objectswhitelist: named object name=UserDelegate sourcecom.charged.infuse.delegate.UserDelegate/source typestateless-class/type

[flexcoders] test

2005-11-07 Thread Deepa Subramaniam
Please ignore. Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM ~- --

Re: [flexcoders] Custom components in Flex 2

2005-11-07 Thread Scott Barnes
Hi Roger, I've noticed that in 1.5 if you define a MovieClip (sprite collection?) for a skin, that makes up 3 pieces (mc_left, mc_middle, mc_right) that the framework seems to scale it, rather then test for a setSize() on that sprite? ie mx.controls.Button for one seems to do this. Has this

[flexcoders] Can you nest viewstacks

2005-11-07 Thread nostra72
Is it possible to take one viewstack and put another viewstack inside it like say you choose one menu and a menu appears below it? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Can you nest viewstacks

2005-11-07 Thread JesterXL
Have you tried it? What happened? Yes, you can do this, just curious what happened when you tried it. - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, November 07, 2005 11:25 PM Subject: [flexcoders] Can you nest viewstacks Is it possible

Re: [flexcoders] Flash Player - Desktop integration... SDK?

2005-11-07 Thread JesterXL
Not sure of VB's depencys, but VB can do sooo many things, whereas Flash projectors... not so much. Most Flash projectors we're created to do things Flash couldn't; like read text files, integrate with the desktop better via positioning and sizing. VB, at least 6, was awesome; it could do

RE: [flexcoders] Flex2: TitleWindow close button click event error

2005-11-07 Thread Matt Chotin
I think weve already filed bugs on these issues. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Muzak Sent: Friday, November 04, 2005 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2: TitleWindow close button click

RE: [flexcoders] Nested Repeaters ...( was Force binding for Arrays)

2005-11-07 Thread Matt Chotin
Re-sending since it bounced From: Matt Chotin Sent: Monday, November 07, 2005 9:17 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Nested Repeaters ...( was Force binding for Arrays) No other general rules but this sounds like a good refactoring. Remember

FW: [flexcoders] Re: custom components and custom data provider - howto?

2005-11-07 Thread Matt Chotin
Resending since it bounced From: Matt Chotin Sent: Monday, November 07, 2005 9:20 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Re: custom components and custom data provider - howto? Does test.xml start with months as the outer tag? When factoring out

RE: [flexcoders] will we have access to makeplayerglobal script ?

2005-11-07 Thread Matt Chotin
Hmm, I wouldnt count on getting to mess with those files (or messing with them having any effect right now). Ill forward this on to the player team though. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of zwetank Sent: Monday, November 07, 2005

[flexcoders] Re: Services.mxml flex-config.xml issues

2005-11-07 Thread m_chotin
Did you change the gateway for RemoteObject, maybe the server you're hitting is not the same as where it got compiled and there are two flex-configs that don't match? --- In flexcoders@yahoogroups.com, charged2885 [EMAIL PROTECTED] wrote: I'm trying to access a RemoteObject. In flex-config.xml,

[flexcoders] Re: DropShadow in 1.5

2005-11-07 Thread m_chotin
RectBorder I think does the work with it --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: I cannot for the life of me finding where this symbol is used in the 1.5 framework. I see the DropShadow class, and the symbol reference in the mx.core.View... but who the heck

[flexcoders] Re: Repeater endIndex ?

2005-11-07 Thread m_chotin
The count property is what you're looking for. --- In flexcoders@yahoogroups.com, Doodi, Hari - BLS CTR [EMAIL PROTECTED] wrote: Hi All, I have a situation where in I get data from database as an array of VO of length more than 5 but I have to display only first 5 records. Is

[flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-07 Thread m_chotin
clicking on the checkbox should cause the valuecommitted event to fire i think. otherwise the click event should be OK too unless you expect to change it programmatically. --- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED] wrote: Thanks, Matt. I was working on such a loop,

[flexcoders] Re: Problem with type casting a TreedataProvider back to array...

2005-11-07 Thread m_chotin
can you re-post the file please? macromedia started bouncing flexcoders mails today but i think we're back. --- In flexcoders@yahoogroups.com, Arunkumar S [EMAIL PROTECTED] wrote: Thanks for your reply Matt... Your code looks to solve the typecasting problem. But the tree is not visible as