RE: [flexcoders] [Design Mode] FlexBuilder 3 Design Mode not working

2007-11-12 Thread Lieven Cardoen
Hi, it is just not working. This is what I get, just an empty design view. There are buttons in my mxml, and compiling works. So there are no errors. ... Very strange. Version is FlexBuilder 3 Beta 2. Lieven Cardoen application developer indiegroup interactive digital experience

Re: [flexcoders] Problem with events, how event dispatched when state change?

2007-11-12 Thread Ralf Bokelberg
Hi Daniel If you use a binding between a value of you model and the selectedIndex of your combobox, the control updates automatically whenever you change the model property. //in MyModel [Bindable] public var selectedIndex : int //in MyForm mx:ComboBox selectedIndex={ myModel.selectedIndex }

RE: [flexcoders] Vista, Eclipse 3.2.2 and a Microsoft Mouse

2007-11-12 Thread Mark Ingram
Hi, I have the same problem with FB 2.01 - but I've noticed that if you scroll the wheel a lot, quite quickly, it will scroll all the way down the page. Very odd. Keep the group posted if you find a solution! From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Loading Flex Components at runtime

2007-11-12 Thread Tom Chiverton
On Friday 09 Nov 2007, Jehanzeb Musani wrote: Can you tell me how to design RSL using Flex Builder 2 or provide me the links regading that? If there is nothing on DevNet, the list archives are full of it. -- Tom Chiverton Helping to challengingly morph robust markets on:

Re: [flexcoders] [Design Mode] FlexBuilder 3 Design Mode not working

2007-11-12 Thread Tom Chiverton
On Monday 12 Nov 2007, Lieven Cardoen wrote: ... Very strange. Version is FlexBuilder 3 Beta 2. Post your code. Check the log. -- Tom Chiverton Helping to elementarily integrate open-source materials on: http://thefalken.livejournal.com

Re: [flexcoders] Flex grid to serve 100K-1mil rows

2007-11-12 Thread Tom Chiverton
On Friday 09 Nov 2007, letterpigeon wrote: Hi all, requirement is for the grid to be able to support up to 100K+ or even 1 million rows Why ? It's utterly impossible for a user to cope with this much data at once, so what's the point ? -- Tom Chiverton Helping to dynamically incubate

Re: [flexcoders] Flex grid to serve 100K-1mil rows

2007-11-12 Thread hank williams
On Nov 12, 2007 4:35 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 09 Nov 2007, letterpigeon wrote: Hi all, requirement is for the grid to be able to support up to 100K+ or even 1 million rows Why ? It's utterly impossible for a user to cope with this much data at once, so

Re: [flexcoders] Flex grid to serve 100K-1mil rows

2007-11-12 Thread Tom Chiverton
On Monday 12 Nov 2007, hank williams wrote: applications that may need to scale, of doing more work on the client, is a good one. If you have lots of clients you can indeed save money on server costs by having the clients help with the work. I'd still want to plumb for sending an operation,

Re: [flexcoders] Any chrome managers available?

2007-11-12 Thread Tom Chiverton
On Friday 09 Nov 2007, Ivo wrote: Is there a library available that will help manage moving, resizing, close, maximize, minimize of an application window whose chrome is set to none ? Flex MDI ? http://code.google.com/p/flexmdi/ http://www.returnundefined.com/flexmdi/explorer/ -- Tom

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Mirko Sabljić
Thank you very much for your help, i'll try that and let you know how did it go. best regards Daniel Freiman wrote: Use a bitmap of the target instead of the original target. /// var target:UIComponent = event.currentTarget as UIComponent;

Re: [flexcoders] Re: Where to do heavy lifting in a Flex app? (no threading?)

2007-11-12 Thread Tom Chiverton
On Sunday 11 Nov 2007, Richard Rodseth wrote: been a priority. It wouldn't make sense to build one VM on top of another (relatively heavy) one. I've no idea how the poster got this idea. Maybe he confused the SDK/compiler with the player. -- Tom Chiverton Helping to enormously

RE: [flexcoders] Visual modelling program - which direction should I take? Z-ord

2007-11-12 Thread J B
Why not use Visual Graph? http://code.google.com/p/flexvizgraphlib/ From: Josh McDonald [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Subject: [flexcoders] Visual modelling program - which direction should I take? Z-order info?

Re: [flexcoders] Flex grid to serve 100K-1mil rows

2007-11-12 Thread hank williams
On Nov 12, 2007 4:56 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 12 Nov 2007, hank williams wrote: applications that may need to scale, of doing more work on the client, is a good one. If you have lots of clients you can indeed save money on server costs by having the clients

Re: [flexcoders] There has been an I/O Error: Error #2038

2007-11-12 Thread Tom Chiverton
On Sunday 11 Nov 2007, FlexCoders wrote: There has been an http error: status code 500 Well, has there been ? What does the upload accepting application's log file say ? -- Tom Chiverton Helping to elementarily negotiate dynamic ROI on: http://thefalken.livejournal.com

[flexcoders] Custom Text Area in Air

2007-11-12 Thread subeesh a
Hi, When we right click on the text area in adobe air applications , we gets context menu with copy , paste , delete etc . How can i add more options to the context menu like Bold ,Italic so that when these menu items are selected , the text selection is formatted. Thanks in advance Subeesh

Re: [flexcoders] There has been an I/O Error: Error #2038

2007-11-12 Thread Ben Marchbanks
FileUpload is probably one of the hardest functions to troubleshoot in Flex owing to the lack of detail. My personal wishlist is for Adobe to enhance upload function with robust error details. Even if only returning the literal error as output by the server. Meanwhile the method I use is to

Re: [flexcoders] Visual modelling program - which direction should I take? Z-order info?

2007-11-12 Thread Ben Marchbanks
You might take a look at www.mindomo.com for ideas.. Josh McDonald wrote: Hi Guys, I'm about to start working on a program to display some XML data as a visual model. It requires various boxes-within-boxes and connecting lines. Before I go and do it all wrong, I have a few concerns

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Mirko Sabljić
I followed your advice Dan and used this code: public function dragItSubs(event:MouseEvent):void{ // Get the drag initiator component from the event object. var dragInitiator:UIComponent = event.currentTarget as UIComponent; / var

RE: [flexcoders] [Design Mode] FlexBuilder 3 Design Mode not working

2007-11-12 Thread Lieven Cardoen
It has nothing to do with code. If I just create a new flex project, put one Button in the code, switch to design view, I get nothing... In design view, if I drag a Button to the stage, I get the sign saying that it's impossible to drag the item there... In Design Mode, the Flex Properties Panel

[flexcoders] Progress Bar Item Renderer

2007-11-12 Thread triggersoftware
I'm trying to create a progress bar item renderer, but I can't get the value of progress bar to bind: mx:AdvancedDataGridColumn headerText=% Complete width=100 mx:itemRenderer mx:Component mx:VBox

[flexcoders] Re: Progress Bar Item Renderer

2007-11-12 Thread johantrax
The source-property is bindable, though as stated in the docs: Refers to the control that the ProgressBar is measuring the progress of. Use this property only in event and polled mode. A typical usage is to set this property to a Loader control. Since you set your mode to manual, the

[flexcoders] DateTimeAxis: binding to different field name

2007-11-12 Thread real_yoni
Hi all, I'm trying to find a way to bind DateTimeAxis to a different field (other than date). but to no avail. this is a piece of the XML I'm getting from the server: cht f1=2007-11-11 r1=677.0 c1=3229.0 c2=447.79000 i1=2850345.0 /cht I would like to bind

[flexcoders] Re: Where to do heavy lifting in a Flex app? (no threading?)

2007-11-12 Thread barry.beattie
Maybe he confused the SDK/compiler with the player. especially since I think I saw a call for talented assembly programmers to work on the Flash player. I doubt you could squeeze *that* much performance at such a small size with anything else (actually, two players in one now-a-days) but this

[flexcoders] SandBox, crossdomain.xml

2007-11-12 Thread tommek
hey people, got some questions about crossdomain.xml i got a swf file that loads up under https//www.test.com and the swf file also load in https. now I had to make my crossdomain calls http so i can call http://sub1.test.com. We only have a SSL cert for www.test.com. So if I try to make a

[flexcoders] Re: HttpService gets wrong handler

2007-11-12 Thread kuroiryu42
The various urls have function that call a specific responder but all the function go like this. I didn't set these up just trying to fix the problem. But seems like you'd want to keep a handle on something, service, responder, AsyncToken. How does flash manage these connections? Thanks, Joe

[flexcoders] reference a class instance from another mxml

2007-11-12 Thread elr
HI, I can't find a way to access from an mxml B to a class C that was instanciated in a mxml A In my sample. a login component (mxml A) instanciates a user:User As soon as login is done, the second component (mxml B) should retrieve the user instance I referenced this user instance starting

[flexcoders] Re: Progress Bar Item Renderer

2007-11-12 Thread triggersoftware
When using 'manual' you could try using the setter method, again from the docs... I've tried doing this but Flex doesn't like having script blocks in the item renderer. When needed for binding, take a look at BindingUtils.bindSetter I don't know what to do with this as I can't get into a

[flexcoders] rollOverEffect versus play?

2007-11-12 Thread Matt
I have been attempting to replace the basic rollOverEffect with my own custom version that allows some extra validations but it doesn't seem to want to work the same. When I play a glow effect it works but if I continue to leave the mouse over it the effect disapears soon after it completes the

[flexcoders] Re: Progress Bar Item Renderer

2007-11-12 Thread johantrax
Seems to me that Flex doesn't like scripts anywhere but in the root of a document. I do not have any experience with item-renderers, nor do I have with loaders, but this is my guess: If you create the ItemRenderer as a custom mxml-component, then you should be able to set a script-block in this

Re: [flexcoders] Re: Progress Bar Item Renderer

2007-11-12 Thread Douglas Knudsen
Its certainly possible to do this. Try the following mx:itemRenderer mx:Component mx:HBox mx:Script . Cheers! DK On Nov 12, 2007 8:59 AM, johantrax [EMAIL PROTECTED] wrote: Seems to me that Flex doesn't like scripts anywhere but in the root of a document. I do not have any

[flexcoders] [LinkButton height problem]

2007-11-12 Thread Lieven Cardoen
Hi Guys, I have a problem with the LinkButton in Flex 3 Beta 2. It isn't showing the character 'q' entirely. The bottom of such characters is not shown. If I adjust the height of a label, it just disappears... Strange... If I add labelPlacement=bottom the q appears... But there's

[flexcoders] Counting lines of code.....

2007-11-12 Thread essuark
Anyone have a way to count the lines of mxml or as in one's project? thanks Ralph

[flexcoders] Date(String) vs 'String as Date' | DateField

2007-11-12 Thread johantrax
Hi all, Currently I'm working with a custom DateField, being a canvas with 2 states: text and insert, and a public bindable property value:Date the component: ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; currentState=text creationComplete=init()

Re: [flexcoders] Counting lines of code.....

2007-11-12 Thread Tom Chiverton
On Monday 12 Nov 2007, essuark wrote: Anyone have a way to count the lines of mxml or as in one's project? wc -l -- Tom Chiverton Helping to professionally architect high-end systems on: http://thefalken.livejournal.com This email is sent

[flexcoders] Re: Date(String) vs 'String as Date' | DateField

2007-11-12 Thread johantrax
--- In flexcoders@yahoogroups.com, johantrax [EMAIL PROTECTED] wrote: Hi all, Currently I'm working with a custom DateField, being a canvas with 2 states: text and insert, and a public bindable property value:Date the component: ?xml version=1.0 encoding=utf-8? mx:Canvas

[flexcoders] Pre-launch review

2007-11-12 Thread jaskeywest
Hello there, The url is www.KickPlay.com and is a site where you can play casual games like solitaire and some other simple ones. The cool thing is that you can personalize the games with your own face or any other image you want. You can get pretty creative with the games and make them

[flexcoders] Custom itemRenderer using Label Question

2007-11-12 Thread j_lentzz
Hi, I'm using the following code to set the data of an extended Label being used as an itemRenderer in a datagrid. The editor for the cell is a combobox. What I'm doing is taking the data value sent down for that cell (a number), looking it up in the dataprovider of the combobox and displaying

[flexcoders] Re: SandBox, crossdomain.xml

2007-11-12 Thread Dave
--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: hey people, got some questions about crossdomain.xml i got a swf file that loads up under https//www.test.com and the swf file also load in https. now I had to make my crossdomain calls http so i can call

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-12 Thread letterpigeon
Hi all, Thanks for all your responses. Maybe it'll be better if I described our use case in bit more in details. Our users send us trade file (sometimes has ~50K trades in it currently). And let say all of the trades have an invalid broker code, and all got kicked out, the user will have to go

RE: [flexcoders] Problem with dispatching custom event from pop up window

2007-11-12 Thread Tracy Spratt
Also, and altrnative to a custom event is to have the data available via a public property on the component, and access that property value in the handler with currentTarget. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j301c

[flexcoders] Re: Reference variables / pointers / hex heap addresses

2007-11-12 Thread quiet.mountain
Exactly as Gordon says. I was not expecting ac = event.result.products.rug; to change the value of ac to point to another object. Thanks for clearing pointers up for me. Gordon, you also mention datatype casting: To parse an XML file of rugs into an ArrayCollection of rug objects, is your

[flexcoders] Re: RightClick Event

2007-11-12 Thread toofah_gm
Did anyone see this post? Is there really no trigger to use? --- In flexcoders@yahoogroups.com, toofah_gm [EMAIL PROTECTED] wrote: Is there an event that I can use to know that the ContextMenu is about to pop up when the user Right Clicks? I would like to run some code to enable/disable

[flexcoders] Unicode/Foreign Character Entry

2007-11-12 Thread Shaun
Here is a control for allowing users to easily select special characters for entry in Flex text controls. Demo with Code http://www.capitalhcoder.com/ The basic idea is that by adding this control to your app and associating it with a text control, you can then use it to select unicode/foreign

[flexcoders] Re: RightClick Event

2007-11-12 Thread johantrax
Well, if I recall correctly, the right-click-event doesn't exist in Flash. However you can alter the contextMenu.customItems (Array) of a component at any time, being even when it's not visible. And you can even use data-binding on it's items. Good luck, --jeetee --- In

[flexcoders] Casting Objects at Runtime (possible evolution of eval()?)

2007-11-12 Thread kevininnewyork
Hello everyone, Kevin here from San Francisco building an application that is populated at runtime (i.e., no MXML) and whose Classes are not known at authoring time. Here is what I am trying to do: var VM:ViewManager=new ViewManager(); VM.addDisplayObject( myCanv, new Canvas(), {x:70,

[flexcoders] Re: RightClick Event

2007-11-12 Thread toofah_gm
Thanks for the response! The trouble is that I need to do a lookup that can't really be databound in order to determine whether or not to enable the menu item. I really need to update it just before the context menu comes up. --- In flexcoders@yahoogroups.com, johantrax [EMAIL PROTECTED] wrote:

[flexcoders] Re: RightClick Event

2007-11-12 Thread toofah_gm
I just found my answer: http://livedocs.adobe.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentationfile=1276.htm The ContextMenu has an event: ContextMenuEvent.MENU_SELECT --- In flexcoders@yahoogroups.com, toofah_gm [EMAIL PROTECTED] wrote: Thanks

[flexcoders] Re: Problem with dispatching custom event from pop up window

2007-11-12 Thread j301c
DataArrayEvent.as - //Custom event that holds an array import flash.events.Event; public class DataArrayEvent extends Event { public var data:Array; public function DataArrayEvent(_data:Array, type:String, _bubbles:Boolean = false, _cancelable:Boolean = false)

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Daniel Freiman
Sorry, try BitmapAsset instead of Bitmap, which extends Bitmap and implements IFlexDisplayObject. If that doesn't work, I have code to draw the bitmap data onto a UIComponent. - Dan Freiman On Nov 12, 2007 7:13 AM, Mirko Sabljić [EMAIL PROTECTED] wrote: I followed your advice Dan and used

[flexcoders] Re: DataGrid not populating from WebService, error: Unknown Property

2007-11-12 Thread Brian
OK I've changed the resultFormat to e4x and added a result handler. With trace I'm able to see the result coming back. I tried using a namespace variable also after further searching here, but I'm still confused about how that works. The error is gone, but I'm still not getting any results in the

Re: [flexcoders] Using CSS to style LineChart

2007-11-12 Thread Tom Chiverton
On Friday 09 Nov 2007, superabe superabe wrote: as it stands now seems you cannot set the stroke prop in CSS as the property expects a Stroke object. hence you have to do series.setStyle(stroke, new Stroke()); The attached subclass of LineChart is called StyledLineChart, and understands style

[flexcoders] Re: AIR: HTML components not redraw?

2007-11-12 Thread TJ Downes
Anyone have any ideas on this one?

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Mirko Sabljić
Still doesn't work, would it be too much to ask you to post that code to draw bitmap data onto UIComponent? I tried to implment that idea with following code: public function dragItMain(event:MouseEvent):void{ // Get the drag initiator component

[flexcoders] Re: Progress Bar Item Renderer

2007-11-12 Thread triggersoftware
hmmm... the code completion in Eclipse builder says it isn't valid, but the compiler says it is Anyway, I solved the problem by creating a new class: ?xml version=1.0 encoding=utf-8? mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[

[flexcoders] Re: Where to do heavy lifting in a Flex app? (no threading?)

2007-11-12 Thread danielggold
Looks like quite a few people are tackling the same problems, or have at least had it in the back of their minds. I understand the history of the flash player, what kinds of applications it's been used for, and I also understand how large an undertaking it would be to make the current Flex

[flexcoders] FlexBuilder 3 Beta 2 charting and license

2007-11-12 Thread frank_sommers
Hi, I realize there were several messages about this before, but I'd just like to clarify: Currently, with the FlexBuilder 3 Beta 2 trial, when I try to use the AdvancedDataGrid, for instance, the running Flex application displays a watermark to the effect that it's the Flex data

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Daniel Freiman
var target:UIComponent = event.curentTarget as UIComponent; var dragProxy:UIComponent = new UIComponent(); var w:Number = Math.round(target.width / target.scaleX); // will throw error if greater than 2880 var h:Number = Math.round(target.height / target.scaleY) // will throw error if greater than

[flexcoders] Need some help with my barchart, vertical axis, and placement

2007-11-12 Thread Mark
my vertical axis are names, and the way it is now they are justified right, along the side of the chart. Can I have that justified left? And if so, how is it done? Thanks, Mark

RE: [flexcoders] FlexBuilder 3 Beta 2 charting and license

2007-11-12 Thread Matt Chotin
Yes it would. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of frank_sommers Sent: Monday, November 12, 2007 9:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] FlexBuilder 3 Beta 2 charting and license Hi, I realize there were several messages

RE: [flexcoders] Custom itemRenderer using Label Question

2007-11-12 Thread Alex Harui
I would store the CB's DP somewhere so you can get at it w/o creating an editor. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j_lentzz Sent: Monday, November 12, 2007 6:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Mirko Sabljić
I just tried your code and i keep getting the same error: ArgumentError: Error #2015: Invalid BitmapData. at flash.display::BitmapData$iinit() so i am really confused now :-/ thank you very much for your time and help Daniel Freiman wrote: var target:UIComponent = event.curentTarget as

[flexcoders] Re: Problem with events, how event dispatched when state change?

2007-11-12 Thread danielvlopes
Hello Ralf, i'm using a binding but the problem is my combo had array collection and labelfield of combo is nome, for that reason i must loop over my dataprovider of combobox to find the nome saved in database and select that nome in combo... i had 5 combobox and i not sure create 5 public var for

[flexcoders]SWFLoader Security Sandbox issue

2007-11-12 Thread dorkie dork from dorktown
I'm trying to load in a swf from another domain (chatopica chat room) and cant work around the security sandbox. This works fine locally but when I put it on the server I get the security domain errors. What am I missing? ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] Re: Problem with events, how event dispatched when state change?

2007-11-12 Thread Ralf Bokelberg
and i not sure create 5 public var for selected index is the best way... It is actually - especially because you can unit test it without the ui I'm using a model class for all my comboboxes, which contains the dataProvider and a selectedIndex property. However, if you don't want to go down

Re: [flexcoders] Re: Problem with events, how event dispatched when state change?

2007-11-12 Thread Ralf Bokelberg
sorry, that message got garbled a bit However, if you don't want to go down that route, you can either use a binding function, if the whole dataProvider is replaced or you add CollectionChange handling to your dataProvider, if it is changed. You can use myArrayCollection.itemUpdated(..) to

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Daniel Freiman
Are you trying to instantiate a bitmap that has a width or hight greater than 2880? - Dan Freiman On Nov 12, 2007 1:23 PM, Mirko Sabljić [EMAIL PROTECTED] wrote: I just tried your code and i keep getting the same error: ArgumentError: Error #2015: Invalid BitmapData. at

Re: [flexcoders]SWFLoader Security Sandbox issue

2007-11-12 Thread Paul Decoursey
I'm going to say try loading the crossdomain.xml explicitly and see if that fixes it. Security.loadPolicyFile(http://static.chatopica.com/crossdomain.xml;); Paul On Nov 12, 2007, at 12:45 PM, dorkie dork from dorktown wrote: I'm trying to load in a swf from another domain (chatopica chat

[flexcoders] making tree node bold

2007-11-12 Thread prabs73511
Hi All, how to make a tree node bold in tree in Actionscript / mxml thanks

[flexcoders] Custom List component Height Issue

2007-11-12 Thread davidch204
Hi all, I created a custom item renderer and in it I have: Canvas HBox Text /HBox /Canvas The text inside Text includes spaces like /r, so most items take up at least two lines. However my problem is that it only seems to be rendering the first line of text and is not displaying the

[flexcoders] Code for preventing browser caching of SWF

2007-11-12 Thread Darren Houle
I'm trying to stop the client's browser from caching my flex app swf so that each time they call the html wrapper they get the latest swf. I've found some suggestions out there for accomplishing this, and I think adding the myapp.swf?build=12341234 (some timestamp) solution looks cleanest,

[flexcoders]What version of FP will the OLPC include?

2007-11-12 Thread dorkie dork from dorktown
I was reading on the OLPC and I am trying to figure out what the specifics are for the Flash Player. It looks like the Flash Player will be available as a separate download. What version would this be?

Re: [flexcoders]SWFLoader Security Sandbox issue

2007-11-12 Thread dorkie dork from dorktown
Still getting this error: SecurityError: Error #2121: Security sandbox violation: Loader.content: http://www.flexcapacitor.com/flashusers/chatTest.swf cannot access http://static.chatopica.com/chat.swf?room=flash. This may be worked around by calling Security.allowDomain. at

Re: [flexcoders]SWFLoader Security Sandbox issue

2007-11-12 Thread Paul Decoursey
Ok here is my other idea.. change this: initialize={init()} to this: preinitialize=this.init(); My thinking is that the load is failing before you allow the domain. On Nov 12, 2007, at 2:15 PM, dorkie dork from dorktown wrote: Still getting this error: SecurityError: Error #2121:

[flexcoders] HorizontalList drop indicator weirdness

2007-11-12 Thread williamkusumo
Hello! I have a HorizontalList with drag drop enabled, so you can re-arrange stuff in it. For some reason in HorizontalList, the drop indicator line appears on top of an item instead of on the side of the item like in TileList. I was wondering if there's a way to change this. I was trying to

[flexcoders] Custom skin on HScrollBar appearing differently than VScrollBar

2007-11-12 Thread williamkusumo
Hi flexcoders! I have a VScrollBar and HScrollBar that both loads identical skins (it's simply some PNGs). The VScrollBar looks great, but HScrollBar ends up having slightly cropped up/down arrow (at the tip of the arrow) and the thumb is lower than where it's supposed to be. Why is this so?

RE: [flexcoders] Re: Where to do heavy lifting in a Flex app? (no threading?)

2007-11-12 Thread Alex Harui
Rats, I've been singled out again. I was sort of hoping not to get too involved in this topic, but, since you asked... First, a little about me: I'm an old DOS/Windows app developer turned AS developer. I wrote code that had to fit in 640K, and later in Windows 2 which were both single

[flexcoders] Drag-scroll in a List not working on Mac (?)

2007-11-12 Thread williamkusumo
I have a List that has drag drop enabled so you can rearrange the items. On Windows, while you are dragging an item, you can go near the bottom of the list and it'll scroll if there are more content and it's scrollable. I can't seem to get this behavior on Mac. Is this a known bug? Thanks!

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Mirko Sabljić
Definitely not, width and height of the image is under 1000px so i guess that's not the problem? Daniel Freiman wrote: Are you trying to instantiate a bitmap that has a width or hight greater than 2880? - Dan Freiman On Nov 12, 2007 1:23 PM, Mirko Sabljić [EMAIL PROTECTED] wrote:

[flexcoders] ComputeSpectrum to generate image of mp3 file

2007-11-12 Thread jack_freud
Would anyone know how to use computespectrum to generate an image that represents the whole waveform of the mp3, like what you see if you open up a music file in an audio editor? I've seen articles on making visualizers, but those are for realtime display, whereas I need a representation of the

[flexcoders] Re: Where to do heavy lifting in a Flex app? (no threading?)

2007-11-12 Thread danielggold
With the help and suggestions in this thread I'm currently looking through the app I'm working on and trying to decide what I need to gut. This is where examples from others can really help out, and a Pseudo-Threading-Engine example would probably be golden. I think any documentation about the

[flexcoders] Grid lines in TileList

2007-11-12 Thread Richard Rodseth
Am I correct that there is no style property to enable grid lines in a TileList?

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-12 Thread Abyss Knight
Have you considered paging the dataset in the ActionScript, but applying the operations to the original ArrayCollection/Dataset? What I mean is, although the grid may only show say 15 records at a time, the dataset is still stored as an AS object and could be adjusted client side, and the current

Re: [flexcoders]SWFLoader Security Sandbox issue

2007-11-12 Thread dorkie dork from dorktown
I'm still getting the error. I created a button that creates the swf dynamically so I can make sure to wait long enough to load the crossdomain file. I think maybe its that I am trying to script (change the values of) the chat.swf application. http://www.flexcapacitor.com/flashusers/chatTest.html

RE: [flexcoders] Re: Where to do heavy lifting in a Flex app? (no threading?)

2007-11-12 Thread Gordon Smith
Both the browser Player and AIR are written in C++. There are Java implementations of earlier versions of the Player for mobile devices. The ActionScript and MXML compilers are written in Java. FlexBuilder is written in Java. - Gordon From:

RE: [flexcoders]SWFLoader Security Sandbox issue

2007-11-12 Thread Alex Harui
Set up a custom LoaderContext with checkPolicyFile=true From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Monday, November 12, 2007 1:03 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]SWFLoader

RE: [flexcoders] Custom List component Height Issue

2007-11-12 Thread Alex Harui
That renderer should not be necessary. Set wordWrap and variableRowHeight=true on the list From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of davidch204 Sent: Monday, November 12, 2007 11:58 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: mx:List name/value pair

2007-11-12 Thread gdruiven
Alex, thanks your hint was good. Since the id was attribute of province xml part= province id=3 selected=falseUtrecht/province i could use [EMAIL PROTECTED] which i think is a little odd, or a bit 'hidden' for me, how can i see that i can use all the attributes off a listitem. But thanks, you

[flexcoders] ComboBox that opens by default

2007-11-12 Thread Stephen Downs
I'm trying to create a simple ComboBox subclass that defaults to the open position, automatically displaying it's dropdown list. I'm trying to implement this as an itemRenderer for a DataGrid. Each time I call the open() function on the ComboBox subclass, it refuses to open. The dropdown

RE: [flexcoders] Casting Objects at Runtime (possible evolution of eval()?)

2007-11-12 Thread Gordon Smith
What is you want to know? BTW, take a look at the UIComponentDescriptor class. Are you planning to link into your SWF all possible components that your app might want to instantiate? Or are you going to put them into modules and load them as needed? - Gordon

Re: [flexcoders] ComboBox that opens by default

2007-11-12 Thread Stephen Downs
OK, I was using the wrong event! I'm such a Flex novice. Here's the new class that works: package com.plasticbrain.controls { import mx.controls.ComboBox; import mx.events.FlexEvent; public class ComboBoxOpen extends ComboBox {

[flexcoders] Re: Custom itemRenderer using Label Question

2007-11-12 Thread j_lentzz
Thanks. That's a good idea. Anything else seem funny? John --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I would store the CB's DP somewhere so you can get at it w/o creating an editor. From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Reference variables / pointers / hex heap addresses

2007-11-12 Thread Gordon Smith
I think your XML is getting autoconverted into untyped ActionScript objects (because you haven't specified format=e4x). So you're not getting the benefits of strong typing, which are faster access and better compile-time error checking. - Gordon From:

RE: [flexcoders] reference a class instance from another mxml

2007-11-12 Thread Gordon Smith
When your login component created a User instance, did it store it in a public instance variable (say, 'user') of the login component? If so, it should be accessible as myLoginComponent.user. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

[flexcoders] DataGrid not populating from XMLListCollection - namespace issue?

2007-11-12 Thread Brian
I've been trying to get a DataGrid populated from a WebService and having much trouble. I'm wondering if the issue might be namespace issues, but I'm confused by the usage and syntax of namespace from the posts I've found here on that. There is no data in the DataGrid, but it does appear to

RE: [flexcoders] classes

2007-11-12 Thread Gordon Smith
The compiler will not let me add Bla3 and Bla4 without throwing an error. In AS3, an overriding method must have exactly the same method signature as the method being overidden. The signature includes the number and type of the parameters, the return type, and the accessibility modifier (such

[flexcoders] Re: Custom itemRenderer using Label Question

2007-11-12 Thread j_lentzz
Thanks. That's a good idea. Anything else seem funny? John --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I would store the CB's DP somewhere so you can get at it w/o creating an editor. From: flexcoders@yahoogroups.com

[flexcoders] ADOBE CEO Steps Down, COO to Replace Him

2007-11-12 Thread hank williams
http://www.nytimes.com/aponline/technology/AP-Adobe-CEO-Personnel.html

Re: [flexcoders] Drag and drop question

2007-11-12 Thread Daniel Freiman
Which line is is breaking on? What's the stack trace look like? - Dan Freiman On Nov 12, 2007 3:48 PM, Mirko Sabljić [EMAIL PROTECTED] wrote: Definitely not, width and height of the image is under 1000px so i guess that's not the problem? Daniel Freiman wrote: Are you trying to

Re: [flexcoders] Grid lines in TileList

2007-11-12 Thread Richard Rodseth
Darn. Any suggestions for the 2-d dashboard-style grid I'm doing? I've played around with PlotChart, but it wants numeric axes, which I suppose I could fudge now that I'm building an adapted model. The TileList is working OK, but I tried alternating colours, and they appear vertically no matter

Re: [flexcoders] Grid lines in TileList

2007-11-12 Thread Richard Rodseth
I was also having trouble getting rotated labels on a PlotChart - if anyone has an example of that, I'd love to see it. On 11/12/07, Richard Rodseth [EMAIL PROTECTED] wrote: Darn. Any suggestions for the 2-d dashboard-style grid I'm doing? I've played around with PlotChart, but it wants numeric

  1   2   >