Re: [flexcoders] help please

2006-07-19 Thread Samuel Reuben
See Uday, You can use the contentWidth and contentHeight on the updateComplete event to determine how you want to show your images. Some ideas could be that you set the visible to false while the images are loading and show them once you've got the logic worked out,as to what and howyou want

Re: [flexcoders] importing xml to my flex app

2006-07-19 Thread Jeremy Lu
One little addition to Tracy's post, when using attribute for labelField, don't forget to add an @ sign, this is the E4X notation for accessing attribute. Jeremy. On 7/19/06, Tracy Spratt [EMAIL PROTECTED] wrote: Yes. Assign my_xml to the

[flexcoders] Re: Problem with States and switching to a given state.

2006-07-19 Thread Tim Hoff
Hi Malik, Here is an example how to control view state with Cairngorm2. http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=422 -TH--- In flexcoders@yahoogroups.com, "malik_robinson" [EMAIL PROTECTED] wrote: Hi, How do you change the state from within different mxml files.

[flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-07-19 Thread ben.clinkinbeard
Thanks to everyone for the replies. Unfortunately, this approach has a rather nasty side effect, which I can only assume is a bug. Also, isn't this the same as having an event handler for the dataChange event on the itemRenderer? The side effect is that if your DataGrid has a scrollbar and you

Re: [flexcoders] Re: SWFLoader how to access host application

2006-07-19 Thread Jeremy Lu
Don't have Flex at hand, but I would try (from inside the loaded swf): this.systemManager.application.someMethod() you may have to cast each variable to correct type, something like SystemManager( this.systemManager).application.someMethod(). just my wild guess, might works. Jeremy. On

[flexcoders]

2006-07-19 Thread satish chandra
__._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web

[flexcoders] Re: No way to removeItem()

2006-07-19 Thread Sergey Kovalyov
Any suggestions? On 7/17/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! I found that there is no method removeItem() in ArrayCollection class. You need to call yourArrayCollection.removeItemAt(yourArrayCollection.getItemIndex(item)) each time you want just to remove item. I wonder

RE: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Daniel Tuppeny
It's still present here. I can right-click - Zoom In, and it correctly zooms in. When I then right-click - Zoom Out, it only zooms out a little, but a tick appears next to "Show All" and Zoom Out greys out. Leaving me still partly zoomed in (and missing the outside of my application),

Re: [Junk E-Mail - MED] [flexcoders] Problem with States and switching to a give

2006-07-19 Thread malik_robinson
Hi, Thanks for the quick response. Makes sense a bit more. I posted a similar question before and got good answer but still wanted to get some additional insight. Thanks for the help! -Malik --- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: You need to have

[flexcoders] Hot to detect mouse click outside InteractiveObject instance?

2006-07-19 Thread Sergey Kovalyov
Hi All! We have event type mouseDownOutside (FlexMouseEvent.MOUSE_DOWN_OUTSIDE), but it works only with components opened using the PopUpManager when the user clicks outside them. Is there any way to handle clicks outside regular components (e. g. TextInput)? Thank you in advance! Sergey.

Re: [flexcoders] Run as Flex App - No complaints - No compile

2006-07-19 Thread Angus Johnson
Cameron, If you have compile time errors Flex Builder wont publish to the bin directory. Forces you to fix them. If you run the app it will just pull out the previous working version. If there are no compile time errors and still not getting a newer version clean the project and check your

Re: [flexcoders] Re: SWFLoader how to access host application

2006-07-19 Thread Angus Johnson
You can use Application.application to get a reference to the host application. This is the top tier application so if you have nested a stack of SWF's this is the shortest way to get to the top. parentapplication gets the immediate parent but you can also step up the hierarchy using that

Re: [Junk E-Mail - MED] [flexcoders] Problem with States and switching to a give

2006-07-19 Thread malik_robinson
Hi,Thanks for the assistance here.This line seems to throw an error actually Shannon.mx:Metadata [Event(name="loggedin",type="flash.events.event")]/mx:Metadata In the "problems" panel it says:Event type 'flash.events:event' is unavailable.-Malik--- In flexcoders@yahoogroups.com, "Shannon Hicks"

[flexcoders] Class instance inheritance check

2006-07-19 Thread Sergey Kovalyov
Hi All! Imagine, I have the Class instnace as a function parameter. function myFunction(clazz : Class) { ... } How to check that clazz is inherited from some other class (e. g. UIComponent). Sure, I can create instnace. if (new clazz() is UIComponent) { ... } But this approach seems not good

Re: [flexcoders] Class instance inheritance check

2006-07-19 Thread Ralf Bokelberg
Would flash.util.describeType be an option? Cheers, Ralf. On 7/19/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! Imagine, I have the Class instnace as a function parameter. function myFunction(clazz : Class) { ... } How to check that clazz is inherited from some other class (e. g.

[flexcoders] Chart data transitions effects when using AS

2006-07-19 Thread Tom Chiverton
(resent, appears to have vanished) If I'm replacing data series' in a Flex 2 Chart with AS: subChart.series=new Array(); var sss:LineSeries = new LineSeries(); sss.yField=Total; sss.displayName=IT; sss.dataProvider = t; subChart.series.push(sss); var sss:LineSeries = new LineSeries();

RE: [flexcoders] ADMIN: Link to thread as part of the mail?

2006-07-19 Thread Steven Webster
Hey Ralf - not sure what you mean exactly; everything after the -- in the footer is our mail footer, however we can't do anything dynamic, just static text. So I don't think we can link to the thread. File an ECR with Yahoo! ? :) Steven

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Samuel Reuben
If you go to http://www.adobe.com/shockwave/welcome/ in the flash player about does it show 9,0,16,0 ? -sam On 7/19/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: It's still present here. I can right-click - Zoom In, and it correctly zooms in. When I then right-click - Zoom Out, it only

Re: [flexcoders] Not acept drag on Tree nodes

2006-07-19 Thread Tom Chiverton
On Tuesday 18 July 2006 21:19, Jesús Iglesias wrote: subnode's drag and drop, from one node to another. The problem is I don't know how to reject the drag when your are on a subnode (showing the stop signal) and enable it only when you are on a node. You'll need to write custom drag handling

RE: [flexcoders] Class instance inheritance check

2006-07-19 Thread Dirk Eismann
describeType tends to be slow the more complex your class and inheritance chain gets. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Bokelberg Sent: Wednesday, July 19, 2006 12:29 PM To: flexcoders@yahoogroups.com Subject:

Re: Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-07-19 Thread Samuel Reuben
Hi Tom, Does this happen even when the object height/width is set? I suppose a ValidateNow() could make a difference... -sam On 7/6/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 05 July 2006 15:09, Tom Chiverton wrote: If I try and print a dynamicaly instantiated GUI component, the

[flexcoders] initial loader color/style

2006-07-19 Thread hank williams
There is a default setting for the background color and style of the loader that you see before your app opens. Where can I change this?Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] TODO and FIXME in Builder ?

2006-07-19 Thread Jean-Luc ESSER
Maybe missed it, but did'nt find anybody asking how to implement the TODO and FIXME tasks in Builder. This is a must for every eclipse users, specially when working in teams, but it does not work for mxml or asfiles (maybe they are not parsed). Is there a simple way to have it work ?

Re: Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-07-19 Thread Tom Chiverton
On Wednesday 19 July 2006 10:39, Samuel Reuben wrote: Does this happen even when the object height/width is set? Does what happen ? Silent failure or work around stops working ? I suppose a ValidateNow() could make a difference... I'm guessing that is different from the form validators ? --

[flexcoders] addChild() in constructor?

2006-07-19 Thread Sergey Kovalyov
As far as I understand, now I can work with superclass view directly from constructor of inherited class after super() call? public class A extends Box { function A() { addChild(new TextInput()); // causes exception } } public class B extends A { function B() { super(); addChild(new

[flexcoders] RemoteObject AND TypeError: Error #1034

2006-07-19 Thread maikelsibbald
Can anybody help me with the following. TypeError: Error #1034: Type Coercion failed: cannot convert [EMAIL PROTECTED] to mx.messaging.messages.ErrorMessage. When I used it in Flex 1.5 it was working. Can anybody tell me what thos error means? Yahoo! Groups

Re: [flexcoders] addChild() in constructor?

2006-07-19 Thread JesterXL
You're not supposed to create and add children in the constructor. Do it in createChildren, like this: protected override function createChildren():void { super.createChildren(); if ( my_txt == null) { my_txt = new TextInput(); addChild ( my_txt ); } } More

[flexcoders] Flex2: Binding from actionscript

2006-07-19 Thread Alex
Hi all, Im trying to translate an mxml binding tag to actionscript : I got this mxml tag: mx:Binding source=model.podManager.getPod( mypodId ).destroy destination=handleDestroy / and its setter function : private function set handleDestroy( destroy:Boolean ): void { // some code } This

RE: [flexcoders] initial loader color/style

2006-07-19 Thread Dirk Eismann
You'll have to create your own loader by subclassing mx.preloaders.DownloadProgressBar and then point the preloader property of your Application class to your subclass. Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank

[flexcoders] Re: Scaling up.

2006-07-19 Thread Dave Wolf
Heya Ben, We're absolutely open to folks who work remotely. We have both today. Although we do feel there is serious value in folks being together in terms of collaboration (or swarming as I call it!) what we want more than anything are smart, energic, fun people who want to build great stuff.

RE: [flexcoders] RemoteObject AND TypeError: Error #1034

2006-07-19 Thread Peter Farland
What endpoint are you contacting with RemoteObject an FDS 2.0 endpoint? From that error Id have to guess youre trying to contact an old endpoint that isnt returning the new message types as expected by the mx.messaging.channels.AMFChannel (the default channel for mx:RemoteObject).

[flexcoders] Realtime preview of change in component

2006-07-19 Thread tomkrcha
Hi all, I am now trying to build my own component. I use DefaultProperty for adding sub-components into panel, which is a part of my Canvas component. myComponent: Canvas-Panel my:myComponentmx:Label text=Hello //my:Component this works perfect ... it add Label into Panel thanks to

Re: [flexcoders] addChild() in constructor?

2006-07-19 Thread Sergey Kovalyov
Actually, I found this approach in IPE Controls by Ely Greenfield (http://demo.quietlyscheming.com/IPE/). There are classes like this there: package qs.ipeControls { import qs.ipeControls.classes.IPESlider; import mx.controls.HSlider; public class IPEHSlider extends

[flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Peter Blazejewicz
--- In flexcoders@yahoogroups.com, Samuel Reuben [EMAIL PROTECTED] wrote: If you go to http://www.adobe.com/shockwave/welcome/ in the flash player about does it show 9,0,16,0 ? -sam Hi sam, I've submitted that as serious usability issue to Flex QA team during beta and haven't got any

[flexcoders] Re: TODO and FIXME in Builder ?

2006-07-19 Thread Jeremy Rottman
I also would like to know if this works. Anyone have any info on this. I would to drop notepad and work with someone with in flex ide. --- In flexcoders@yahoogroups.com, Jean-Luc ESSER [EMAIL PROTECTED] wrote: Maybe missed it, but did'nt find anybody asking how to implement the TODO and FIXME

Re: [flexcoders] addChild() in constructor?

2006-07-19 Thread JesterXL
He wrote that code before the developer's summit is my guess. Ely told us specificlly not to add creation stuff in the constructors, only adding event listeners. The reason for this is the overhead that the constructor adds when instantiating a class. You can defer creation of children if

Re: [flexcoders] initial loader color/style

2006-07-19 Thread Sam Shrefler
Hank: In my main application tag i put: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml layout=absolute backgroundColor=#(YOURCOLOR) I also add a CSS entry... mx:StyleApplication {theme-color: #789789;backgroundGradientColors: #123123, #789789;} /mx:Style Hope this helps Sam On

Re: [flexcoders] initial loader color/style

2006-07-19 Thread hank williams
Thanks!On 7/19/06, Dirk Eismann [EMAIL PROTECTED] wrote: You'll have to create your own loader by subclassingmx.preloaders.DownloadProgressBar and then point the preloader propertyof your Application class to your subclass.Dirk. From:

[flexcoders] Form submission with multiple select

2006-07-19 Thread dadrobson
I've searched the docs and the list, but I can't for the life of me find out how to submit the value of a multiple-select list to an action page. The best way I know to explain the problem is to put it in terms of plain old HTML. Suppose you have a multiple select list on an HTML form: select

[flexcoders] Re: HTTPService in components

2006-07-19 Thread mcmcbrianfarrell
Tom, Absolutely right. I had the line outside of the first container object. As soon as I moved it within my first box it worked fine. Many thanks to all for their help. Yahoo! Groups Sponsor ~-- Something is new at Yahoo! Groups. Check out

[flexcoders] Re: Flex 2.0 components and (vision impared) accessability

2006-07-19 Thread stephenmartin2
There is also a chapter in the Flex doc on accessibility. You can find it here: http://livedocs.macromedia.com/flex/2/docs/1024.html Stephen Yahoo! Groups Sponsor ~-- Great things are happening at Yahoo! Groups. See the new email design.

RE: [flexcoders] TODO and FIXME in Builder ?

2006-07-19 Thread Dirk Eismann
No, it's not included in Flex Builder 2. I started developing a plugin extension for Flex Builder 2 that adds this kind of functionality to both the MXML and AS editors a while ago but it'sonly 50% finished yet. If I find a way to get rid of the"A-day-only-has-24-hours" problem then I

[flexcoders] Public list of open issues, available?

2006-07-19 Thread Weyert de Boer
I am curious if anyone know a public list all open issues regarding to Flex and Flash both ont he Windows and Macintosch platform. Lately I am hitting strange things in Flash or Flex while I would love to know if this is a (common) bug or not. If anyone know such thing please let me know, I

[flexcoders] Re: initial loader color/style

2006-07-19 Thread Michael
--- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: There is a default setting for the background color and style of the loader that you see before your app opens. Where can I change this? Hank Hank, I was just going to ask this same question today. I thought it

[flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-19 Thread Ethan Miller
Greetings - I'm trying to get data out of a dataProvider (the 'orientation' field) used by a tileList, on rollover, not on selection. But, as there's no selectedItem in the returned event I'm not sure how to reference the rolled over item. The docs suggest using itemRollOver but the

[flexcoders] repeaterIndices Bug?!

2006-07-19 Thread Steve Cox
All, When I try to access the repeaterIndices of a component during debug mode, the flash player will always crash taking IE or firefox with it. Ive the following code, the player will always crash on the 2nd line. event.target.repeaterIndices appears fine in the _expression_

[flexcoders] Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread klumikaze
We've been pulling our hair out trying to figure out how to run applications outside of the /flex/ dir in our J2EE server. Currently we're using JBoss, but I would assume that the configuration is similar across all application servers. Essentially, what we want to do is create a structure like

RE: [flexcoders] Run as Flex App - No complaints - No compile

2006-07-19 Thread Allen Riddle
My co-worker is having the same problem. Mainly, that FlexBuilder wont detect errors in his code. He has an ActionScript interface, and 3 classes that implement it. Only one class will show if you have an error in the code, the other 2 implementers wont show errors, like if you were

[flexcoders] Flex 1.5: HOWTO specify the MUST inclusion of 0 for fractional numbers smaller than 1 using mx:CurrencyFormatter?

2006-07-19 Thread Andriy Panas
Hello , flexcoders I was stumbled upon that all my fractional numbers like 0.25, 0.45, 0.65, etc are displayed after formatting with mx:CurrencyFormatter like this: $.25, $.45, $.65 What I want my numbers to be displayed is: $0.25, $0.45, $.65. I cannot find a simple and reliable way to

RE: [flexcoders] Public list of open issues, available?

2006-07-19 Thread Stephen Gilson
You should probably start with the releases notes: http://www.adobe.com/support/documentation/en/flex/releasenotes.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de BoerSent: Wednesday, July 19, 2006 8:02 AMTo:

[flexcoders] How can open a Stream?

2006-07-19 Thread Silpa sirivella
Hi all, I have a requirement to open Steam coming from J2EE layer. More clearly, I've MXML file where i'm requesting a servlet using HTTPService. Here is the code mx:HTTPService id=exportRequest useProxy=false url=/inventory/search.do showBusyCursor=true mx:request

[flexcoders] Re: Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread klumikaze
Link didn't appear to work... if you click on 'Options for developing a Flex Data Services application' once you're on that page, you'll see the second diagram I mean. Thanks, Brian --- In flexcoders@yahoogroups.com, klumikaze [EMAIL PROTECTED] wrote: We've been pulling our hair out trying to

[flexcoders] Re: Chart data transitions effects when using AS

2006-07-19 Thread Doug Lowder
The Series class has a showDataEffect. Ely has some source code available at http://demo.quietlyscheming.com/ChartSampler/srcview/ that demonstrates how to use it. Take a look at the SeriesInterpolate and LineSeries declarations in Interpolate.mxml under examples.effects. --- In

[flexcoders] Re: MenuBar itemClicked event not firing

2006-07-19 Thread shahlavi
Thanks Mike. It seems then that the docs are misleading, since it clearly states that This event is not dispatched when a user selects a menu item of type separator, a menu item that opens a submenu, or a disabled menu item, which would lead one to believe that menus without submenus do

Re: [flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-19 Thread JesterXL
Maybe event.target.selectedItem? - Original Message - From: Ethan Miller [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, July 18, 2006 6:10 PM Subject: [flexcoders] Getting Data Out of Rollovers in TileLists Greetings - I'm trying to get data out of a dataProvider (the

[flexcoders] Re: Flex 1.5: HOWTO specify the MUST inclusion of 0 for fractional numbers smaller than 1 using mx:CurrencyFormatter?

2006-07-19 Thread Doug Lowder
The exact output I get from the sample code is: Today's price is $0.25. There must be something else going on if you are getting different results, like no leading 0. My configuration is: Windows XP Pro Flex 1.5 Build 87315.134646 Developer Edition Tomcat 5.0.19 standalone server --- In

Re: [flexcoders] Flex 1.5: HOWTO specify the MUST inclusion of 0 for fractional numbers smaller than 1 using mx:CurrencyFormatter?

2006-07-19 Thread JesterXL
Hack: function format2 ( str ):String { var currencyFormattedString = str; var a = currencyFormattedString.split(.); currencyFormattedString = currencyFormattedString[0] + 0. + currencyFormattedString[1]; } my_lbl.text = format2 ( $.25 ); - Original Message - From: Andriy

Re: [flexcoders] Flex2: Binding from actionscript

2006-07-19 Thread slangeberg
Not sure if it'll work, but you could try ChangeWatcher.watch(). Scott On 7/19/06, Alex [EMAIL PROTECTED] wrote: Hi all,Im trying to translate an mxml binding tag to actionscript :I got this mxml tag:mx:Binding source=model.podManager.getPod( mypodId ).destroy destination=handleDestroy /

[flexcoders] help with XMLList.contains() needed

2006-07-19 Thread djbrown_rotonews
Below is output from my code that represents the elements in an XMLList. I'm wanting to determine if the stream contains a cpData tag (this one does, not all do) and am having trouble doing so via the code attached. Can someone point out my error when using XMLList.contains()? I've tried

Re: [flexcoders] Not acept drag on Tree nodes

2006-07-19 Thread Jesús Iglesias
I have read the docs, but I don't know how to deny drop, there is aa acceptDragDrop method, but not anything to deny. Jesus - Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 19, 2006 1:31 PM Subject: Re: [flexcoders] Not

[flexcoders] Re: How can open a Stream?

2006-07-19 Thread Silpa sirivella
I'm getting an ERROR message.. [RPC Fault faultString=Error #1090: XML parser failure: element is malformed. faultCode=Client.CouldNotDecode faultDetail=null] at mx.rpc.http::HTTPService/http://www.adobe.com/2006/flex/mx/internal::p rocessResult() at

[flexcoders] Re: Flex 1.5: HOWTO specify the MUST inclusion of 0 for fractional numbers smaller than 1 using mx:CurrencyFormatter?

2006-07-19 Thread Doug Lowder
... and now I see that I missed the fact that you changed the currency symbol in the posted code, which explains the difference. --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: The exact output I get from the sample code is: Today's price is $0.25. There must be

[flexcoders] compilation error?

2006-07-19 Thread ryanharlin
I'm trying to set up and run the CRM coldfusion example from the adobe dev website. Everything seems to go well and I can run the .cfm files to access the datasource in a traditional coldfusion setting. But when i try to run the .mxml file (the last step of the tutorial) I get the following

[flexcoders] (Article with Demo Code) ADO.net Programming Style

2006-07-19 Thread CodeGuru Dot Net
Hello Friends,I have uploaded a article with demo code explaining ADO.net programming style. To read and download article logon to...http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=10txtCodeId=4889Project is all about ADO.net Programming Style. That is how to code

RE: [flexcoders] Are there any good flash fonts that will work well in flex

2006-07-19 Thread Kevin Mulvihill
mini-7 is a font. you can find it at myfonts.com. uni 05_53 is also a font but it's not at myfonts.com. (i kind of like suprexy ce; any comments on this font?) saffron is a font rendering engine, not a font. what i'm wondering is, is there a standard for font size in interfaces? mini-7

Re: [flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-19 Thread Ethan Miller
selectedItem doesn't work because no item is selected, it was only rolled over. Surely there's a way to catch the data of a rolled over item? Anyone? cheers, ethan Maybe event.target.selectedItem? - Original Message - From: Ethan Miller [EMAIL PROTECTED] To:

[flexcoders] Re: Flex 1.5: HOWTO specify the MUST inclusion of 0 for fractional numbers smaller than 1 using mx:CurrencyFormatter?

2006-07-19 Thread Doug Lowder
I see Jester already beat me to it, but here's another potential solution: mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; !-- Declare a CurrencyFormatter and define parameters. -- mx:CurrencyFormatter id=Price precision=2 rounding=none decimalSeparatorTo=. thousandsSeparatorTo=,

[flexcoders] Re: Actionscript Help

2006-07-19 Thread s_hernandez01
Well, I am still new to Flex so I'm having trouble understanding what you all are saying. However, below is a link that has my app online so you get an idea of what is going into the cart (just right click to view the source). Now, I created a form below the datagrid that totals all my items

RE: [flexcoders] compilation error?

2006-07-19 Thread Cathy Reilly
Check your /WEB-INF/flex/services-config.xml file (or one of the files referenced in the services-config.xml service-include section) for the error. - Cathy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ryanharlin Sent: Wednesday, July 19,

[flexcoders] Re: Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread Dave Wolf
Brian, I am a little confused by your question. You seem to indicate you want to have a seperate web application for the FDS services from where the Flex/Flash application lives. Then you kind of confuse me when you say you want a shared library. The idea is that /flex is where FDS lives, and

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Pan Troglodytes
Since seeing is believing, have a video:http://rapidshare.de/files/26310210/zoombug.wmv.htmlOn 7/19/06, Peter Blazejewicz [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com , Samuel Reuben [EMAIL PROTECTED] wrote: If you go to

[flexcoders] Re: Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread klumikaze
Hey Dave, Sorry for the confusion. :) Basically what we want, is to have a /flex/ directory where the FDS libraries exist, and then have web applications at the server root level that are Flex based. An example: We want to have a directory under our server root called 'myApp' with a file

Re: [flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-19 Thread JesterXL
You said you tried itemRollOver, but in the code, you are using rollOver, not itemRollOver as the event for TileList. - Original Message - From: Ethan Miller [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 19, 2006 12:58 PM Subject: Re: [flexcoders] Getting Data

RE: [flexcoders] Re: Change graphical skin of a button control at runtime?

2006-07-19 Thread User ABC
I got the same error message. Do you have any luck?Thank you.Lance Linder [EMAIL PROTECTED] wrote: I will have to give this a try again. The first time I tried something like this I received cast errors saying that I couldn’t cast type Bitmap to type Class. I haven’t seen anything

[flexcoders] Re: Flex and CF

2006-07-19 Thread dcooper2025
People seem to think they need to jam FDS into the CF instance to get them to work together for some reason, likely because that's the main config setup with CF + Flex 1.5, but that's not necessary at all any longer with Flex 2 FDS. With Flex 2 and FDS, you absolutely do not need FDS

Re: [flexcoders] Are there any good flash fonts that will work well in flex

2006-07-19 Thread hank williams
Pixel fonts are better because there is no uncertainty about how the font will be rendered. Some human being looked at each letter and decided what pixels should be on and off for a specific size. This is critical for fonts in user interfaces where the algortithms for converting from font

[flexcoders] RemoteObjects - ActionScript parameters

2006-07-19 Thread Mike Anderson
Hello All, I am finally getting time to dive into my Flex 2.0 programming, and RemoteObjects are at the top of my list. I simply don't have the funds for FDS, so I just need to master the basic built-in down and dirty methods of doing basic Remoting inside of Flex 2.0. Coming from the Flash

Re: [flexcoders] Are there any good flash fonts that will work well in flex

2006-07-19 Thread JesterXL
suprexy is pretty cool. Don't know about standards. I'd say 11 and up, mainly because you're ensured your formatting is the same on all platforms. I remember _sans device font not showing bold on Mac's, but showing on PC's at 10pt size; 11 and up ensures that smaller fonts still show

RE: [flexcoders] Re: Flex and CF

2006-07-19 Thread João Fernandes
Damon, but there isn't much information if you want to use RPC + FDS. All examples are RPC or FDS only, not the mix. If you define your CF RPC destination inside FDS it won't work and there isn't any example, best-practice or a technote how to implement this correcly. If you merge FDS+CF this

Re: [flexcoders] Re: Run as Flex App - No complaints - No compile

2006-07-19 Thread Cameron Childress
Everyone - thanks for the responses. I was actually having a number of other problems with FlexBuilder as well, including the ones ben.clinkinbeard mentioned earlier and the one Allen Riddle mentioned later in this thread with errors not being reported correctly and having to essentially

[flexcoders] How to remove DataGrid itemRenderer top Bottom spaces

2006-07-19 Thread Artur Kordowski
I've created an itemRenderer for a DataGrid and set a backgroundColor. But when the DataGrid is rendered I have still top 1px and bottom 2px white space (look at sample image). Can any one tell me how I can remove it, so that the background fill the cell without spaces? Artur __._,_.___

Re: [flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-19 Thread Ethan Miller
I've tried both. Either works for sending the event to the showInfo function (the Alert triggers, etc.). The problem is how to reference the various fields of data of the rolled over item, ie I need the rollover equivalent of selectedItem (something like rolledOverItem, which doesn't

RE: [flexcoders] RemoteObjects - ActionScript parameters

2006-07-19 Thread Peter Farland
You can just programmatically create a ChannelSet that contains one or more Channel implementations, such as mx.messaging.channels.AMFChannel, that are configured to contact your ColdFusion endpoint (that has the update). Or, if you want to use the MXML API, you can set a fully

Re: [flexcoders] Help with Flex Store Demo Instalation

2006-07-19 Thread Jean-Luc ESSER
 I'd say don't look any further... Best, JL - Original Message - From: Ian Skinner To: flex@houseoffusion.com ; [EMAIL PROTECTED] ; flexcoders@yahoogroups.com Sent: Wednesday, July 19, 2006 6:54 PM Subject: [flexcoders] Help with Flex Store Demo Instalation

Re: [flexcoders] TODO and FIXME in Builder ?

2006-07-19 Thread Jean-Luc ESSER
Dirk, Something like this ? override protected function normalDay():NormalDay { myNewDay:JackBauersDay = new JackBauersDay; _normalDay.nbHours = myNewDay.nbHours; return _normalDay; } Here you go ! Best, JL - Original Message - From: Dirk Eismann To:

RE: [flexcoders] Re: Flex2B3: Container fillColors

2006-07-19 Thread Geoffrey.Rogers
Tim, I saw you had the same problem with Gradient background too with container components. Im also trying to skin the background of a container (VBOX). But Im not having any luck with it. Here is an example of my code. I am using Flex Builder 2.0 final. //MXML code ?xml version=1.0

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Uday M. Shankar
I too have noticed this... but, i simply assumed that someone is alerady working on it :-) -uday Peter Blazejewicz wrote: --- In [EMAIL PROTECTED]ups.com, "Samuel Reuben" [EMAIL PROTECTED] wrote: If you go to http://www.adobe.com/shockwave/welcome/ in the flash player "about"

[flexcoders] How to make XML object using String in Flex 2??

2006-07-19 Thread leaveist
I making tree menu using remote object. So, I was used oracle 9i xml data type. I can get xml document to String. ex) String result=Menuicon id=1/icon id=2//Menu so, I was send Java string object to Flex application using flash string object. as like this) myXML:XML = result; but, it is

RE: [flexcoders] Re: Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread Cathy Reilly
when referencing mxml files that is, prompts us to download the mxml file whichever application that includes the mxml file, must have a definition of the servlet and a servlet mapping for *.mxml what you're trying to do, should be possible but will take some work to get the correct

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Pan Troglodytes
So was I.That was in beta.Seriously, this is pretty major. Zooming MUST be very important to Flash/Flex if it takes up the first three right-click menu options by default. And yet, they break it and seem to just blow it off. FYI, I entered a bug report on the official web page about it.On

[flexcoders] Re: How can open a Stream?

2006-07-19 Thread Silpa sirivella
Atleast tell me whether it is possible With flex? thanks -silpa --- In flexcoders@yahoogroups.com, Silpa sirivella [EMAIL PROTECTED] wrote: Hi all, I have a requirement to open Steam coming from J2EE layer. More clearly, I've MXML file where i'm requesting a servlet using HTTPService.

[flexcoders] Adding columns dynamically in a datagrid

2006-07-19 Thread Pottavathini, Sathish
Title: Adding columns dynamically in a datagrid I have a datagrid and the data loaded into it is dynamic. The number of columns are also different each time. So I am trying to read the xml data that is used for the datagrid and create columns at run time using 'columns' property of the

[flexcoders] RE: Adding columns dynamically in a datagrid

2006-07-19 Thread Pottavathini, Sathish
Title: RE: Adding columns dynamically in a datagrid Sample Code: var len:int = xml_itemCount.children()[0].children().length(); var ttle:String = ''; grid_Reports.columns = []; for (var i:int=0; ilen; i++) { var itm:Object = xml_itemCount.children()[0].children()[i]; ttle

Re: [flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-19 Thread JesterXL
Use indicesToIndex using the rowIndex and columnIndex on the event. ...It's all in the wrist, suckaz! http://pastebin.de/9325 - Original Message - From: Ethan Miller [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 19, 2006 1:44 PM Subject: Re: [flexcoders]

RE: [flexcoders] Public list of open issues, available?

2006-07-19 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Stephen: The release notes are good start for anyone. However, it doesn't really answer the question: Is there a public list/site, etc. that developers can access to find out about known issues? It would save a lot of time. So is there? Thanks, Jack From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Run as Flex App - No complaints - No compile

2006-07-19 Thread Douglas Knudsen
someone in hotlanta had some issues like this too. Found out the filename.mxml file that was expected to compile was NOT set as a Flex application. Look in the project properties Flex Applications and make sure the mxml file you want compiled is in there. DKOn 7/19/06, Cameron Childress

Re: [flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-19 Thread JesterXL
Recording for the archives. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=initApp() mx:Script ![CDATA[ import mx.controls.TileList; import mx.collections.ArrayCollection; [Bindable] var

Re: [flexcoders] How to make XML object using String in Flex 2??

2006-07-19 Thread Brendan Meutzner
XMLDocument.parseXML(XMLString);On 7/19/06, leaveist [EMAIL PROTECTED] wrote: I making tree menu using remote object. So, I was used oracle 9i xml data type. I can get xml document to String. ex) String result=Menuicon id=1/icon id=2//Menu so, I was send

[flexcoders] Re: How can open a Stream?

2006-07-19 Thread drome.dario
The error that you are experiencing is because of the default value for the resultFormat property of HTTPService: it expect an xml and, as far as I see, you are sending a PDF from your server. As long as HTTPService doesn't support binary results, you should think on start using URLLoader or

[flexcoders] Flex Builder 2 RDS Connection problems

2006-07-19 Thread Brian Holmes
Has anyone else had trouble connecting to RDS from Flex Builder 2other than localhost? I can definitely connect in Dreamweaver to a RDS server on our network but it doesn't even appear as if Flex Builder is even trying to access the network. I get an error message instantly saying "unable

  1   2   3   >