[flexcoders] Re: Flex4 PixelBender .pbj param error message

2009-01-29 Thread Mic
Solved - found the PixelBender SDK - have to compile the .pbk into a .pbj not just rename the .pbk to .pbj :-). Flex 4 is getting pretty interesting! Mic. --- In flexcoders@yahoogroups.com, "Mic" wrote: > > [Better place for this?] Getting a constant ArgumentError: Error > #2004: One of the pa

[flexcoders] tiltle window called through states disabling application

2009-01-29 Thread stinasius
hi guys i have a title window that i call through view states. i would like to know how to disable the whole application when the title window is opened without using the popup class. thanks

[flexcoders] Re: flex 2 tilelist datachange effects

2009-01-29 Thread johndoematrix
please guys help needed on this issue. am a newbie in flex and reading through the way this was done in the flex 2 flex store is confusing coz its mainly done in actionscript. would like to know how to achieve the same result using mxml or if there is a datachange effect for a flex 2 tile list like

RE: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Mark Easton
Greg, I really like that idea. Will factor it in to our design discussions here. Many thanks, Mark -Original Message- From: Gregory Kelley [mailto:flexcod...@yahoogroups.com]on Behalf Of Gregory Kelley Sent: Friday, 30 January 2009 5:47 p.m. To: flexcoders@yahoogroups.com Subje

[flexcoders] Re: Does anyone know how to disable mouseover for a button.

2009-01-29 Thread yms0411
I set the fillAlphas and fillColors to be the same as the default in the event handler. This works but I don't know if this is the proper way to do this. this.setStyle("fillAlphas",[this.getStyle("fillAlphas")[0], this.getStyle("fillAlphas")[1]]); this.setStyle("fillColors",[this.getStyle("fil

RE: [flexcoders] ItemEditors and rowHeight

2009-01-29 Thread Randy Martin
Here you go: http://livedocs.adobe.com/flex/3/html/help.html?content=celleditor_5.html HTH, ~randy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gregor Kiddie Sent: Thursday, January 29, 2009 9:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoder

RE: [flexcoders] Re: Does anyone know how to disable mouseover for a button.

2009-01-29 Thread Alex Harui
There is no capture phase at the target. Try using a higher priority instead, or just set the overSkin to be the same as the upSkin From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yms0411 Sent: Thursday, January 29, 2009 8:26 PM To: flexcoders@yahoogroups.com S

[flexcoders] Re: Does anyone know how to disable mouseover for a button.

2009-01-29 Thread yms0411
not really. when mouseover event triggers, I want to cancel the default highlighting of the button (not necessary when u have a touch screen) --- In flexcoders@yahoogroups.com, Guy Morton wrote: > > button.enable=false is not what you want? > > > On 30/01/2009, at 1:54 PM, yms0411 wrote: > >

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-01-29 Thread Tracy Spratt
Better set resultFormat="e4x" and look at ther real xml data instead of the converted object tree. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kol

RE: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-29 Thread Tracy Spratt
Or, if you are committed to WebService: ResultFormat = "object" causes Flex to convert the WebService SOAP xml into a tree of dynamic objects. This has many drawbacks and few benefits. Set resultFormat="e4x" and either use the XML directly, or wrap the desired XMLList in an XMLListCollection,

[flexcoders] Re: flex color pickers

2009-01-29 Thread tchredeemed
anyone know??

RE: [flexcoders] itemRenderer data question (recycling)

2009-01-29 Thread Tracy Spratt
"...repeater is rarely the sollution..." I disagree intensely. It depends entirely on the problem. Repeater should not be used to replace a List-based control for a large number of items. But it should always be considered when you start using addChild() statements driven by some data s

[flexcoders] Flex4 PixelBender .pbj param error message

2009-01-29 Thread Mic
[Better place for this?] Getting a constant ArgumentError: Error #2004: One of the parameters is invalid message. [Embed(source="assets/BrightnessThreshold.pbj")] public var ThresholdShader:Class; public var brightnessShader:Shader = new Shader(); brightnessShader.byteCode = new ThresholdShader()

Re: [flexcoders] Does anyone know how to disable mouseover for a button.

2009-01-29 Thread Guy Morton
button.enable=false is not what you want? On 30/01/2009, at 1:54 PM, yms0411 wrote: Hi i'm making a kiosk application at the moment and I want to disable all mouse actions on a button such as mouseover, rollover, rollout, etc I've extended Button and wrote the following code on the constructo

[flexcoders] Does anyone know how to disable mouseover for a button.

2009-01-29 Thread yms0411
Hi i'm making a kiosk application at the moment and I want to disable all mouse actions on a button such as mouseover, rollover, rollout, etc I've extended Button and wrote the following code on the constructor this.addEventListener(MouseEvent.MOUSE_OVER, ignoreMouseEvent, true); private funct

RE: [flexcoders] LCDS : Managed associations - creating new Items

2009-01-29 Thread Jeff Vroom
Hi Bart, Sorry for the delay in my reply. Unfortunately that "undefined" error is a player bug which is effectively hiding from us the real source of the error. The line number in the stack trace is a finally clause... the player is misreporting the source of the actual error. The CommitRe

[flexcoders] How to cancel HTTPRequest?

2009-01-29 Thread Dmitri Girski
Hi everybody, How can I cancel the http request? Is there a way to close the underlying socket? I've got a situation when first HTTP request is in progress (waiting/receiving the results), and I have to fetch the data again, as I know that the dataset I am expecting to get is already obsolete. I

RE: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Mark Easton
Definitely will do Doug. Its going to test my flex skills, but I hope to have done it by the end of next week. It is complicated in that we have a dashboard that allows the users to see many graphs for all the different sensors, contact inputs and actuators at the same time - and move them in to

Re: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Doug McCune
Hey Mark, This might be out of the question due to client restrictions, but I'd be very interested in seeing a screenshot of the solution you come up with (even if you have to use some fake data to show us). It's an interesting data visualization problem and I think it would benefit many people he

RE: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Mark Easton
Thanks Doug, Yes I have been thinking (the last hour) of using such a representation or alternatively of plotting a graph of floating columns, with each column starting at min and ending at max, combined with a line graph in a different colour showing the averages. BUT (and this is a big but) t

RE: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Mark Easton
I like the idea of the separate series for the outlying points. With respect to the main graph showing raw data ...I am not sure that would be acceptable to the client. Depending on the range selected by the slider the main graph would still be limited by available x-axis pixels in terms of wha

Re: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Doug McCune
What if you aggregate your data by some amount (say the maximum resolution you can display on the x-axis), and then for each data point you plot the min, max, and average, kind of like the HLOCChart that's used to show stock data. That would let you see the average trend as well as identify any pea

RE: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Maciek Sakrejda
How about, on the main graph, showing the raw data as limited by the slider, but on the slider, show points that average over some period of time, combined with a separate series for outlying points (those outside 1 or 2 standard deviations from the mean)? This gives you an overview of the general

[flexcoders] Re: flex color pickers

2009-01-29 Thread tchredeemed
Actually, I need one that is much more open then that... a 'millions of colors' color picker..!

RE: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Mark Easton
Hi Maciek, Thanks for your response. Yes I have seen that example and I liked it. We still need to contend, though, with having 500,000 values to plot for the full graph. Using standard graphing that takes for ever to plot - in fact I could not get it to plot. 2000 values seems to the maximum

RE: [flexcoders] Re: DataGrid Drop Deny based on dropIndex

2009-01-29 Thread Alex Harui
Try putting a DRAG_ENTER listener on each renderer and call DragManager.acceptDragDrop(null) if you don't want the drop. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Adrian Williams Sent: Thursday, January 29, 2009 12:33 PM To: flexcoders@yahoogroups.com Subj

RE: [flexcoders] Re: Call method on nested SWF

2009-01-29 Thread Alex Harui
Please add a comment to the doc page or file a bug. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of nylarch Sent: Thursday, January 29, 2009 1:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Call method on nested SWF thanks everyone... I caught

Re: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Maciek Sakrejda
Have you suggested a thumbnail slider solution à la Google Finance (say, like here: http://www.meutzner.com/blog/index.cfm/2007/6/15/Google-Finance-with-Flex-from-Silvafug-last-night )? We've implemented something similar, and it works quite well. I can't share our implementation, but the example

[flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Mark Easton
Hi, I am trying to work out how best to produce a chart which allows a user to make sense of data logged every minute for up to 12 months (ie 524160 values). To complicate matters the graphs are are presented on a dashboard where the user can display many graphs at once - so we are not just displa

[flexcoders] BrowserManager/SWFObject

2009-01-29 Thread Richard Rodseth
What's the current state of the art/best practice on implementing deep linking without relying on the Adobe html templates?

[flexcoders] Re: Call method on nested SWF

2009-01-29 Thread nylarch
thanks everyone... I caught the "complete" instead of "creationComplete" problem but I had no idea on the syntax for calling the method - it works fine now thanks a bunch. And the FlexApp() thing was just further clouding the issue time for someone to update that documentation! --- In flex

Re: [flexcoders] flex date and timezone

2009-01-29 Thread Nate Beck
Hey Gordon, you're on the right track. Everything in the database is stored as UTC. However, here are two instances I ran into in the past where timezone conversion needed to happen. 1) A scheduler in Seattle (PT) needs to create an event in a location that is in a different timezone, let's say

Re: [flexcoders] Re: DataGrid Drop Deny based on dropIndex

2009-01-29 Thread Adrian Williams
Hi S, That's a toughie...I haven't tried to selectively deny a drop depending on an index... I don't know of any methods that will reject the drag-drop other than the stopPropagation and stopImmediatePropagation methods. You might try looking the DRAG_OVER event to see if you can se

[flexcoders] dynamic context menu problem

2009-01-29 Thread Michael Pelz-Sherman
I'm struggling to find an elegant solution to this problem: I have a Flex app that has a dynamic context (right-click) menu. The menu contains different items depending on whether various objects are selected. Ideally, I'd like to re-generate the menu options right when the user right-clicks,

[flexcoders] Re: Call method on nested SWF

2009-01-29 Thread valdhor
Oh, there is a great example at http://www.cflex.net/showFileDetails.cfm?ObjectID=690 --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > There is one other problem with that example. The SWFLoader has a > > creationComplete="initNestedAppProps();" > > If you use that then loadedSM will b

[flexcoders] Re: Call method on nested SWF

2009-01-29 Thread valdhor
There is one other problem with that example. The SWFLoader has a creationComplete="initNestedAppProps();" If you use that then loadedSM will be null. It should be complete="initNestedAppProps();" --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > Interesting. That doc is in error. S

Re: [flexcoders] Re: Common base class for components

2009-01-29 Thread Jules Suggate
Now that's more like what i'm talking about! I've been coding for 12 hours now, so the article looks like random tokens on a page to me right now... but will take a look first thing in the morning!! Thanks Amy :-) On Fri, Jan 30, 2009 at 05:00, Amy wrote: > --- In flexcoders@yahoogroups.com ,

Re: [flexcoders] Common base class for components

2009-01-29 Thread Jules Suggate
Is it possible for an MXML file to implement an interface? Sounds intriguing ... but won't resolve my issue unfortunately. It's the implementation code that I want them to share. I have developers on my team who are less than keen on having to duplicate repetitive code around the place -- they wan

RE: [flexcoders] Call method on nested SWF

2009-01-29 Thread Alex Harui
Interesting. That doc is in error. Should be: public function updateNestedVarOne():void { loadedSM.application["setVarOne"]("Updated varOne!"); } From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of nylarch Sent: Thursday, January 29, 2009 7:00 AM To: flexcoders@ya

[flexcoders] RE: ItemEditors and rowHeight

2009-01-29 Thread Alex Harui
ADG is done by a different team, but in DG, editorXOffset and related properties help you put the editor just about anywhere From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gregor Kiddie Sent: Thursday, January 29, 2009 7:17 AM To: flexcoders@yahoogroups.com Su

[flexcoders] Re: DataGrid Drop Deny based on dropIndex

2009-01-29 Thread park96
Hi Adrian, Thanks for the response. So I didn't know about the hideDropFeedback method on the ListBase class. That helps a bit but the problem I'm encountering now, is that when I start dragging, it denies it at first, but once it passed over a row that it's able to drop, it becomes droppable ov

RE: [flexcoders] Re: localconnection data encrypted?

2009-01-29 Thread Seth Hodgson
> The most vulnerable part of using the ELS is after the data has been > decrypted. It is then stored in memory in plain text until it is > garbage collected. (Curious question - I wonder if strings are > interned in AIR, if so, that could pose another security problem.) Strings are interned by th

[flexcoders] Re: OlapDataGrid like headers using ADG

2009-01-29 Thread tntomek
--- In flexcoders@yahoogroups.com, "tntomek" wrote: > > Is it possible to have 'split' or 'colspan'-ed headers without having > to resort to serious column rework? > > Something like: > http://livedocs.adobe.com/flex/3/html/help.html?content=olapdatagrid_2.html > > I've tried and tried to find a

[flexcoders] Re: using webcam to broadcast through a video object, how to stop broadcasting?

2009-01-29 Thread blc187
Nevermind, attachCamera(null) works just fine. Had another instance of the video object lingering so camera was still in use! --- In flexcoders@yahoogroups.com, "blc187" wrote: > > I have a video object that I am attaching a webcam to. > Video works, camera broadcasts fine. > > Problem is, whe

[flexcoders] Flex Text animation help

2009-01-29 Thread Gireesh Kumar
Hi All, Please check the below url, Can any one tell me how I can achive this animation/text morphing/tween using Flex ? http://gireeshkumar.ind.in/temp/2009-01-29_225737.jpg I wanted to show that the source work getting transformed to the target work letter by letter. Thanks Gireesh

Re: [flexcoders] Thanks to Adobe...

2009-01-29 Thread João Fernandes
Matt, I really hope that there will be more interaction with the community in the future so we can avoid this kind of issues https://bugs.adobe.com/jira/browse/SDK-17854 :) /me runs -- João Fernandes Adobe Certified Expert Adobe Community Expert http://www.onflexwithcf.org http://www.riapt.

[flexcoders] Advanced Formatting

2009-01-29 Thread Dharmendra Chauhan
Hi All, This time I am struggling with formatting as I am migrating Dot Net application to flex.Standard flex library does not support advanced formatting. Here is type of formatting which I want to implement in Flex 1) 0 (Zero placeholder): If the value being formatted has a digit i

Re: [flexcoders] Thanks to Adobe...

2009-01-29 Thread Nate Beck
Yes thanks Matt (and team), I think this is a great direction that you guys are headed! On Thu, Jan 29, 2009 at 9:03 AM, Matt Chotin wrote: > Yes, the next meetings will be more organized. I think we probably > anticipated most of the questions but frankly I wanted to see how the > conversatio

[flexcoders] Sailorsea21 - Animated pie chart still displays old data when updated???

2009-01-29 Thread sailorsea21
Hi everyone, I created an animated pie chart that is divided into 3 segments. The pie animates perfectly but when new data comes in, if the new data has only data for 2 out of the 3 segments, it will animate correctly and dis

Re: [flexcoders] Silent Print from Flex on Kiosk

2009-01-29 Thread Nate Beck
Just a theory... but you might be able to use ExternalInterface to call the same methods within user.js, and pass the content. Since you're already got it working within Javascript. I wish I knew more about FlexPrintJob. On Thu, Jan 29, 2009 at 8:41 AM, Jeremi Bergman wrote: > I have a flex

Re: [flexcoders] Thanks to Adobe...

2009-01-29 Thread Matt Chotin
Yes, the next meetings will be more organized. I think we probably anticipated most of the questions but frankly I wanted to see how the conversation would flow and I also didn't expect quite so significant a turnout (a pleasant surprise!). The iteration meetings will have more of an agenda fo

[flexcoders] Silent Print from Flex on Kiosk

2009-01-29 Thread Jeremi Bergman
I have a flex app that I need to print an image. I have Firefox Setup running the app. in user.js for FF i have: user_pref(”print.always_print_silent”,true); user_pref(”print.show_print_progress”,false); This works perfectly when using firefox's print functionality on any standard site.

[flexcoders] using webcam to broadcast through a video object, how to stop broadcasting?

2009-01-29 Thread blc187
I have a video object that I am attaching a webcam to. Video works, camera broadcasts fine. Problem is, when I close the window with the video in it, I want to be able to shut the camera off. Right now the light on the camera is still on to indicate it is still broadcasting. Documentation says

[flexcoders] Re: Flex or JavaFX?

2009-01-29 Thread mitchgrrt
I would avoid Java FX on the client side like the plague. It's a repackaging of the 15-year-old Java Applet technology which has a lot of problems. Java Swing is a nice API for building GUIs, but Java Applets and especially the Java Plug-in in browsers have a lot of problems that I would not

[flexcoders] capturing output in the console?

2009-01-29 Thread luvfotography
Hi, I'm loading another swf file into my flex app using swfloader, and this embedded swf file outputs text to the console file while I am debugging it, is there a way to capture the text and act on it? thanks,

[flexcoders] Re: Flex of JavaFX?

2009-01-29 Thread mitchgrrt
LiveCycle Data Services (LCDS) is still around: http://www.adobe.com/products/livecycle/dataservices/ LCDS is powerful and elegant, also complicated and expensive. --- In flexcoders@yahoogroups.com, Nate Beck wrote: > > Flex Data Services aren't really around anymore. > > I would recommend Flex

Re: [flexcoders] Common base class for components

2009-01-29 Thread Fotis Chatzinikos
why do not you make your components implement an interface with these methods you describe? On Thu, Jan 29, 2009 at 10:54 AM, Jules Suggate wrote: > Just to resume this thread, what I meant was to still use MXML and all > the Flex components, but to introduce common functionality to all our Vi

[flexcoders] Datagrid bound to XMLListCollection not updating properly - ItemRenderer issue?

2009-01-29 Thread flexcoder2008
I am having trouble getting a datagrid that is bound to an XMLListCollection to update properly. The datagrid uses item renderers for a couple of the columns which display a simple colored image. This datagrid's dataProvider is set to bind to an XMLListC

[flexcoders] Re: Common base class for components

2009-01-29 Thread Amy
--- In flexcoders@yahoogroups.com, Jules Suggate wrote: > > Just to resume this thread, what I meant was to still use MXML and all the > Flex components, but to introduce common functionality to all our Views > (mxml files). Perhaps it's better to think of weaving this in than using > inherita

[flexcoders] Re: RadioButtonGroup id not settable using repeater index...

2009-01-29 Thread jonathanrowny
Here's how to do it! FIRST, in Actionscript create a function that will generate rbGroups which is an arrayCollection of your radio button groups. [Bindable] private var rbGroups:ArrayCollection; private function createRBGroups():void{ rbGroups= new ArrayCollecti

[flexcoders] Filenames and List Class Default Item Renderer

2009-01-29 Thread Kevin
I just noticed that when I pass a filename as part of the label for a List component, an icon is automatically show as part of the default ItemRenderer. I was actually starting to build this functionality myself with a custom IR. I can't believe I haven't noticed this before... Does anyone k

[flexcoders] ItemEditors and rowHeight

2009-01-29 Thread Gregor Kiddie
Looking through SearchCoders, it looks like this question has been asked repeatedly, and never with a good solution, but hey, I may as well ask again! I have an AdvancedDataGrid using the default renderer. When I edit a cell though, I want to show an ItemEditor that is taller than the row. I've tr

[flexcoders] Call method on nested SWF

2009-01-29 Thread nylarch
Hi - I've been using Flex to write some data visualizations and am in the process of writing an admin tool to customize the look n' feel of each visualization. My admin app uses SWFLoader to load the individual visualizations - a really nice thing to be able to do (load a full app inside anothe

[flexcoders] Re: newbie question - call to actionscript class

2009-01-29 Thread annelie2008
Brilliant, it works now! Thank you so much! No doubt I will return with more questions soon...! Cheers, Annelie --- In flexcoders@yahoogroups.com, "Gregor Kiddie" wrote: > > Its close, you do need to have a UIComponent wrapper to add the Sprite > to, and then add the UIComponent to the appl

[flexcoders] Re: Flex and asSQL - Crossdomain issue?

2009-01-29 Thread Gaurav J
--- In flexcoders@yahoogroups.com, GeeTee wrote: > > > Hi everyone, > > Yesterday I developed my first flex 3 app and placed the "Release build" in > the webapps folder of tomcat (5.5.26). The application is quite simple and > just needs to populate the datagrid with the data in MySQL (which is o

RE: [flexcoders] flex color pickers

2009-01-29 Thread Gregor Kiddie
You mean like the one included in the framework? http://livedocs.adobe.com/flex/3/html/help.html?content=controls_18.html Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Regi

[flexcoders] flex color pickers

2009-01-29 Thread tchredeemed
does anyone know of any flex color pickers (kinda like photoshop color selection tool) that I can shamelessly rip off (open source, obviously =])? THANKS! :)

RE: [flexcoders] Re: newbie question - call to actionscript class

2009-01-29 Thread Gregor Kiddie
Its close, you do need to have a UIComponent wrapper to add the Sprite to, and then add the UIComponent to the application. So what you had there (but make sure you actually do new UIComponent() ) And finish with addChild(uic); Gk. Gregor Kiddie Senior Developer INPS Tel: 01382

[flexcoders] default Context Menu

2009-01-29 Thread Rich Tretola
Does anyone know if there is an event that is available to listen for when the default context menu is launched by the user? Rich

[flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-01-29 Thread Wally Kolcz
I have 2 mirrored environments. One on my laptop running Adobe CF8 and one at the University running Blue Dragon 7. I have the same CFCs set to remote, the same database stucture, and the same on both. I am just switching the wsdl location between the 2 and I am getting COMPLETELY diffferent

[flexcoders] Re: newbie question - call to actionscript class

2009-01-29 Thread annelie2008
I tried addChild(notes); but that threw an error (Error #1034: Type Coercion failed: cannot convert test::drawno...@7218ca1 to mx.core.IUIComponent.). I googled a bit and it seems like you have to make it into a UIComponent first. I tried this: var uic:UIComponent = new UIComponent; uic.addChil

[flexcoders] Re: PHP Remoting and value objects

2009-01-29 Thread valdhor
Also, this thread may give you some insights: http://www.nabble.com/More-questions-on-weborb%2C-creating-my-own-services-to19745231.html#a19760218 --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > Can I ask how Charles represented the object returned from WebORB? We > need to know if the o

[flexcoders] Re: PHP Remoting and value objects

2009-01-29 Thread valdhor
Can I ask how Charles represented the object returned from WebORB? We need to know if the object returned is of the right type before tackling the Flex side. --- In flexcoders@yahoogroups.com, Sceneshift wrote: > > > I'm still having real trouble with his, it's really confusing. I am returning

Re: [flexcoders] Re: newbie question - call to actionscript class

2009-01-29 Thread Paul Andrews
The usual reason for things not appearing is that the component that should appear hasn't been added to the display list - just using new doesn't add an object to the display list. Maybe addChild(notes) will help. Paul - Original Message - From: "annelie2008" To: Sent: Thursday, Janu

[flexcoders] Re: newbie question - call to actionscript class

2009-01-29 Thread annelie2008
I should probably have commented out that bit of code, it's not the xml I'm having problems with now (well, I have, but I'll get to those questions later). I thought that by calling my actionscript class, var notes:DrawNotes = new DrawNotes();, that would display my hard coded score on screen?

[flexcoders] Re: DragDrop stops working in 3.2

2009-01-29 Thread reflexactions
Never mind, resolved. DragProxy has a different function for selecting which object to dispatch drag/drop events through and they produce different results between 3.2 and 3.1 so after finding that out that we figured how to get it to route the events to the correct object. --- In flexcoders@y

RE: [flexcoders] newbie question - call to actionscript class

2009-01-29 Thread Gregor Kiddie
isn't a visual component. You'll need to use the XML as a dataprovider from something that is. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit

[flexcoders] Ever seen this bug? (busy loop + custom component + '\n')

2009-01-29 Thread enriirne
I've just submitted this bug. I wonder if any busy loop user (game, animations) have vere seen it. Enri See code below to reproduce the bug Steps to reproduce: 1. add a busy loop: enter_frame or timer with 1 ms resolution 2. inside the loop set the text property of a Label or TextArea to '\n'

[flexcoders] Re: Whipping the itemRenderers Ass

2009-01-29 Thread gmbroth
Hi, Good timing as I think I'm trying to do a similar thing: highlighting rows in a List via an item renderer and "highlighted" property on the data model. After updating the data model, I plan to call refresh() and expect it will automatically fire the item renderer for each visible row; the ren

[flexcoders] newbie question - call to actionscript class

2009-01-29 Thread annelie2008
Hello, I'm brand new to Flex so I'm sure this is a very stupid question, but hopefully someone will be able to help. My ultimate goal is to take an xaml file with a musical score and convert it to flex, but to start with I've hardcoded a score (or rather some score elements) in an actionscript

[flexcoders] Charting: Adding a horizontal line

2009-01-29 Thread flex_coders
I'd like to add a few horizontal lines to my area chart, a solid line to indicate where the average is (y=avg) and two dashed lines for +/-1 std devs away. is there a simple way to add a line to the chart indicating y = [some value] or rather do i need to need to programatically just draw the line?

Re: [flexcoders] Help

2009-01-29 Thread Tom Chiverton
On Saturday 24 Jan 2009, dharma wrote: > I will create another array with fields pagefrom and pageto and will > bind that arraycollection to datagrid. I want to check the entered > values in the newarray collection should not overlap with the I adapted some Java code for finding overlaps in date r

Re: [flexcoders] Common base class for components

2009-01-29 Thread Jules Suggate
Just to resume this thread, what I meant was to still use MXML and all the Flex components, but to introduce common functionality to all our Views (mxml files). Perhaps it's better to think of weaving this in than using inheritance, since that would require multiple inheritance AFAICT. I don't wan

RE: [flexcoders] Re: Mimic IGoogle with Flex 3

2009-01-29 Thread Gregor Kiddie
I can't post any of our stuff (unfortunately), but the best starting place is the google repository and Ben's site. http://www.returnundefined.com/tags/flexmdi Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London