[flexcoders] Re: wsdl path error

2007-04-27 Thread slash_n_rose
--- In flexcoders@yahoogroups.com, Jaganathan.K [EMAIL PROTECTED] wrote: Place the crossdomain.xml file on your server path so that you can access it at http://abc.com/crossdomain.xml Your xml file should contain the following code ?xml version=1.0? !DOCTYPE cross-domain-policy SYSTEM

[flexcoders] List itemrenderer problem

2007-04-27 Thread slash_n_rose
Hi I m using a list with an item renderer(some labels). Items in the list shows some errors when i update an item in my dataprovider(array collection) . The item renderer's label donot shows the updated object's data.But the arraycollections is updated successfully..

RE: [flexcoders] Problem using a subclass of ComboBox in actionscript

2007-04-27 Thread Gordon Smith
That doesn't ring a bell. Can you post simple-as-possible versions of your subclass and an that shows the problem? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of johnknyc Sent: Thursday, April 26, 2007 7:46 AM To:

RE: [flexcoders] FF and Java sessions

2007-04-27 Thread Peter
Doing the same thing (Tomcat backend). Works fine with FF, IE and Opera (although I still think Flex/Flash should take care of this for me) _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios Gianninas Sent: Friday, April 27, 2007 5:06 AM To:

Re: [flexcoders] Games in Flex / Apollo?

2007-04-27 Thread André Rodrigues Pena
I was also considering to develop something for flex-based games. But I think that, the only reason that could lead someone to do this would be the AS3 capabilities but now Flash CS3 has come up with this technology, and it has a bunch of other functionalities to help with gaming. On 4/27/07,

RE: [flexcoders] FF and Java sessions

2007-04-27 Thread Dirk Eismann
Hmm... we use the same technique here and it works (it worked in IE anyway, this was needed for Firefox only). Not sure if this is relevant but we use Tomcat 5.5.20 Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: NetConnection.Connect.Failed

2007-04-27 Thread arokyzxc
hello greg h Sorry to bother you again . I met the problem that I couldn't play flv file streaming from FMS server in browser. here is my codes: var nc:NetConnection ; public function connection():void{ if (Connect_btn.label == Connect ){ nc = new

[flexcoders] Howto dynamicly bind XML element to a TextInput component using BindingUtils?

2007-04-27 Thread xyjaws
The question is: Howto dynamicly bind XML element to a TextInput component using BindingUtils? Now I use following codes: !-- [Bindable] private var xml: XML = itemlabellist1/label/item; // initialize code for application's initialize event private function init(): void {

Re: [flexcoders] Games in Flex / Apollo?

2007-04-27 Thread Erik Price
On 4/27/07, André Rodrigues Pena [EMAIL PROTECTED] wrote: I was also considering to develop something for flex-based games. But I think that, the only reason that could lead someone to do this would be the AS3 capabilities but now Flash CS3 has come up with this technology, and it has a bunch

[flexcoders] Reload detection of a flex application

2007-04-27 Thread fwolff999
Hi, Is there any reliable way to detect a full reload of a Flex app (after a browser reload button click or a back/return for example). It seems possible, with RemoteObject, to use the incremented response prefix on an AMF3 body (/1, /2, ..., /n, then /1... again after a reload). But is it

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread Brian Lesser
At fitc Ted Patrick announced that Flex 3 will have platform-neutral support for data integration with .Net, Java, PHP, etc.. see Aral Balkan's notes from the keynote: http://aralbalkan. com/922 http://aralbalkan.com/922 /*I'm very excited about the back-end neutrality and the additional

[flexcoders] Re: Customizing Chart Legend: Accessing DataProvider data

2007-04-27 Thread ronnlixx
Well, if anyone is interested here's my hack to get this to work. I set a counter var and increment with each iteration of createChildren. I'm sure there's a more effecient or correct way, so if anyone knows please share. public class CpPiechartLegendItem extends LegendItem { public static

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread Paul J DeCoursey
Ummm no IE does not work on the Mac, the last few versions were awful and barely worked. MS hasn't been developing it in at least 2 years, maybe three. They stopped supporting it over a year ago. Everybody uses Windows, almost all the workstations are windows. Macs have IE working OK.

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread Paul DeCoursey
I think you are right that .NET support should be there, although I am not a .NET developer and probably never will be. I wonder if Microsoft could develop this solution? In theory they would have the best resources to understand .NET and enough people have figured out the protocols used in FDS

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread Bjorn Schultheiss
Which department? Development. Creative. Windows does not have a monopoly. On 27/04/2007, at 12:34 PM, Jeffry Houser wrote: I think this is true for many enterprises. Not true for a lot of developers. At 09:41 PM 4/26/2007, Bjorn Schultheiss wrote: Think again. On 27/04/2007, at 11:26

Re: [flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Abdul Qabiz
Ok, I tried running your app. It seems, it gets into recursion somewhere and that's where Flash crashes.. -abdul On 4/26/07, Troy A. Binford [EMAIL PROTECTED] wrote: I updated to version 9.0.45.0 that was released april 12. The code still crashes to a large stack dump and an undefined

Re: [flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Ralf Bokelberg
Yes, i can verify the crash with 9.0.45 netscape windows player The following script crashes the whole browser when you edit a cell and press return ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:DataGrid editable=true

[flexcoders] Constant curve using LineChart

2007-04-27 Thread manuel.villarroel
Hi Folks! I have a LineChart graph and i need to add two constant curves to show when my data exceeds maximum and minimum values. My original curve is a function y=f(x) and what I want is to draw two adicional curves such as y=K1 y=K2 where K1 and K2 are constant. I want to avoid to repeat

[flexcoders] Re: Reload detection of a flex application

2007-04-27 Thread mark_j_ellul
Forgive me if I am wrong... But wouldn't the CreationComplete event be triggered on the application if a refresh or back/return has been done at the client side? If that is so, you would probably want to reload your cached information. Hope this helps Mark --- In flexcoders@yahoogroups.com,

[flexcoders] Selecting a Tree branch/leaf via actionscript

2007-04-27 Thread chandan1980_2000
Hi All, In order to select a tree branch/leaf via actionscript only a) There is a need to recursively call expanditem() till the node containing the required branch/leaf is found b) setting the tree.selectedItem does not cause a change event! Is Manual dispatach of the event the only soln?

Re: [flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Abdul Qabiz
It seems, itemEditEnd event handler is getting invoked recursively, you might to look at it... -abdul On 4/27/07, Abdul Qabiz [EMAIL PROTECTED] wrote: Ok, I tried running your app. It seems, it gets into recursion somewhere and that's where Flash crashes.. -abdul On 4/26/07, Troy A. Binford

[flexcoders] Re: Recall :: Custom Serialization exception

2007-04-27 Thread reach_kbv
I am facing the same issue. Any resolution? --- In flexcoders@yahoogroups.com,[EMAIL PROTECTED] wrote: Any Clues ? -- Forwarded message -- From: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Jan 15, 2007 4:57 PM Subject: Urgent :: Custom Serialization exception To:

[flexcoders] Re: Module GC question

2007-04-27 Thread kyle.vanvranken
Think I misread your post the first time. As for being sure you can see it unload the swf in console. Documentation wise I've seen it a couple places. One of them being here: http://www.gskinner.com/blog/archives/2006/08/as3_resource_ma_2.html It's said that you should only use it in testing. -

Re: [flexcoders] Error -1

2007-04-27 Thread André Rodrigues Pena
Michael.. you were right. That was an encoding problem. I was using Primal Script 4 to edit the files. Thaaanks! On 4/25/07, Michael Wills [EMAIL PROTECTED] wrote: I haven't found out just yet but in the process I did find these lists: http://editthis.info/flexerrorcodes/Main_Page André

[flexcoders] Re: Launching a details window

2007-04-27 Thread mark_j_ellul
Hi Rick, Is there any chance you can email a bit of your source about how you trigger the Window to Open? I have tried to do it but to no avail. Any help would be muchly appreciated Regards Mark --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote: one you create

[flexcoders] flex+fms: store vid/audio locally, then send to server (like youtube)

2007-04-27 Thread deecee83
hello, i would like to know if there is a possibility in first recording and storing a video or audio locally, and after confirming, sending the recorded file to the fms server? because i was inspired by youtube and i also want people to first record then sending to server. what i was only able

[flexcoders] Re: Module GC question

2007-04-27 Thread kyle.vanvranken
Well as soon as I removed the call to force GC it started working. I cant be sure, but logically it would make sense.

[flexcoders] Re: Setting the $title field in index .template.html

2007-04-27 Thread simonjpalmer
Interesting, let me try that out... not sure if I need more or not. --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: You can set it via the pageTitle property of the Application tag. Are you specifically looking for something other than that? --- In

[flexcoders] Rotation transition - looking for help

2007-04-27 Thread simonjpalmer
Hi, I have a view stack with a bubble chart on one page and a set of controls (sliders etc) on another. At the moment I have a button which causes one or the other to be shown and the user can switch back and forth. What I am looking for is a sexy transition between the two. Ideally I would

[flexcoders] Re: Will Microsoft's new Sliverlight Player Kill our beloved Flex?

2007-04-27 Thread Merrill, Jason
One person wrote: Everybody uses Windows, almost all the workstations are windows. Macs have IE working OK. Another responded: Think again. Think again? What kind of an argument is that? People keep brining up certain technlogies not working on Mac OS or Linux as a bad thing. Personally,

[flexcoders] Can I lookup a div in the html page and hide it from within my Flex app?

2007-04-27 Thread wdsnapper
Hello, Can someone tell me if it is possible to lookup DOM elements within the web page hosting a flex application? If so, can I manipulate the DOM element from within my application without relying on javascript to do it? The page I am placing my swf on does not allow you to add javascript. I

[flexcoders] Programatic Icon

2007-04-27 Thread Paul Whitelock
Would anyone know if there is a way to create an component that can be used as an icon for any component that accepts an icon? For example, TitleWindow accepts a titleIcon. I would like to create an AS3 class that I can instantiate and specify for the TitleWindow's titleIcon. As conditions change

Re: [flexcoders] Programatic Icon

2007-04-27 Thread Michael Schmalle
Hi, The simple answer is no. Why? The titleIcon class is of type Class. This class cannot be subclassed. My advice to you is create a subclass of TitleWindow and create the method you are talking about there. Since you cannot load icons at runtime, you could create a simple iconLibraryModule

[flexcoders] Re: Cairngorm, is this suitable as Cairngorm event

2007-04-27 Thread bnsmeets
Nice, tnx for the input. I think I am starting to get the hang of it... (Mind the 'starting' ;) ). Grt, Ben --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Imay be a little late here, but no, its not only for calling backend. Anytime you want encapsulate some UI

[flexcoders] Re: Reload detection of a flex application

2007-04-27 Thread Paul DeCoursey
Yeah... when your app starts the client will know, just do the request then. --- In flexcoders@yahoogroups.com, mark_j_ellul [EMAIL PROTECTED] wrote: Forgive me if I am wrong... But wouldn't the CreationComplete event be triggered on the application if a refresh or back/return has been

[flexcoders] [OT] php framework

2007-04-27 Thread Rick Schmitty
This is a bit off topic, but I know there are a lot of PHP developers on the list Which framework do you use if any? Zend, Cake, etc.. TIA

[flexcoders] Re: Module GC question

2007-04-27 Thread kyle.vanvranken
To be honest I couldn't tell you why it was causing the issue. As for your problem, all the documentation I have seen on using the GC hack says that it is just that a hack. You're not supposed to be able to trigger GC and as such that it should only be used as a tool in testing. My advice would

Re: [flexcoders] Games in Flex / Apollo?

2007-04-27 Thread Troy Gilbert
Check out my blog, http://troygilbert.com/. I'm doing some *big* stuff with games and Flex. Troy. On 4/27/07, Erik Price [EMAIL PROTECTED] wrote: On 4/27/07, André Rodrigues Pena [EMAIL PROTECTED] wrote: I was also considering to develop something for flex-based games. But I think

Re: [flexcoders] Can I lookup a div in the html page and hide it from within my Flex app?

2007-04-27 Thread Flexing...
use can invoke JavaScript function from Flex i.e. - write javascript function in the page hosting the flex app to manipulate div/ - invoke Javascript function from Flex. Refer to the documentation of flash.external.ExternalInterface. On Apr 27, 2007, at 7:18 PM, wdsnapper wrote: Hello,

Re: [flexcoders] Find and replace wih regex?

2007-04-27 Thread Erik Price
On 4/26/07, b_alen [EMAIL PROTECTED] wrote: I have a huge XML file with complex DTD. Now I have to parse this into something more usable by stripping the redundant tags and modifying some of them. I see two options: 1. Recursivly visit all the nodes and handle them with if statements. 2. Use

[flexcoders] wmode=transparent : any limitations to expect ?

2007-04-27 Thread ecpmaz
I'm starting a big project relying on a transparent flex application (with some HTML stuff underneath)... and I was wondering wetherr I should expect bugs/limitations of the flash player in this mode?? I saw for instance that the mouse wheel is disabled ? Have you encountered any other bug ?

[flexcoders] Re: Can I lookup a div in the html page and hide it from within my Flex app?

2007-04-27 Thread Paul DeCoursey
No, you can't really do that without using javascript. Have you looked at CSS, it sounds like you want a css selector to set the display to none on objects @allowNetworking='all'... I think even to do that you'll need some javascript as I don't think all browsers support that kind of selector.

[flexcoders] Re: Games in Flex / Apollo?

2007-04-27 Thread Scott Hoff
How about a direct link to something for those of us who are too lazy to search through your blog? --- In flexcoders@yahoogroups.com, Troy Gilbert [EMAIL PROTECTED] wrote: Check out my blog, http://troygilbert.com/. I'm doing some *big* stuff with games and Flex. Troy. On 4/27/07,

Re: [flexcoders] Re: Tile Extra Space

2007-04-27 Thread Pan Troglodytes
Okay, here's the kludge I made to make it work. It very much is a kludge, but it seems to work. I'd really like this to just work in the original component, though. package nes { import mx.containers.Tile; import flash.display.DisplayObject; public class TileExt extends Tile { public

[flexcoders] Hiding Viewstack elements in a toggleButtonBar dataprovider

2007-04-27 Thread gotjosh819i
Good morning all, I am working on a project that requires some level permissions. I have a main viewstack that I call viewController and theres some elements in there. One of them in a Admin view that I would like to hide if the user doesnt have those permissions. I am struggling a little

Re: [flexcoders] Programatic Icon

2007-04-27 Thread Paul J DeCoursey
I've been able to get it to work for buttons and the like by extending ProgrammaticSkin and passing in the class. I've never even used the icon on a TitleWindow to even know how it's supposed to work. It should work, because everything is a class, but it might not know what to do with it.

Re: [flexcoders] Programatic Icon

2007-04-27 Thread Manish Jethani
From what I understand, you want to be able to change the icon based on the state of your window. You can do this by setting the titleIcon property every time your state changes. Internally, the old icon object will be discarded and a new one created from the class specified to the titleIcon

[flexcoders] Cairngorm 2.2 on Adobe Labs

2007-04-27 Thread Alistair McLeod
Hi, I've just updated the content on Adobe Labs to announce the release of Cairngorm 2.2. This isn't a major release, with only a few minor additions and some productivity fixes. The major change is that dependancies on fds.swc have been externalised into a separate download, Cairngorm

Re: [flexcoders] Programatic Icon

2007-04-27 Thread Michael Schmalle
Wow, I messed up. I need to rethink this, I was thinking about something else. IFlexDisplayObject is right. :) Peace, Mike On 4/27/07, Manish Jethani [EMAIL PROTECTED] wrote: From what I understand, you want to be able to change the icon based on the state of your window. You can do this

Re: [flexcoders] Selecting a Tree branch/leaf via actionscript

2007-04-27 Thread Manish Jethani
A change event is generally dispatched only on user interaction. You might want to listen for the valueCommit event instead. On 4/26/07, chandan1980_2000 [EMAIL PROTECTED] wrote: Hi All, In order to select a tree branch/leaf via actionscript only a) There is a need to recursively call

Re: [flexcoders] Hiding Viewstack elements in a toggleButtonBar dataprovider

2007-04-27 Thread Manish Jethani
The only thing I can suggest is that you remove the admin view from the view stack. *Or* you can also disable it (and the button will be disabled). On 4/27/07, gotjosh819i [EMAIL PROTECTED] wrote: Good morning all, I am working on a project that requires some level permissions. I have a main

RE: [flexcoders] Constant curve using LineChart

2007-04-27 Thread Sunil Bannur
Manuel, Ely Greenfield's DataDrawingCanvas should help you. http://www.quietlyscheming.com/blog/charts/easy-custom-charts Thanks -Sunil From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of manuel.villarroel Sent: Friday, April

Re: [flexcoders] Re: Tile Extra Space

2007-04-27 Thread Manish Jethani
I think it works much better if you set tileHeight and tileWidth (if you know these). On 4/24/07, Alex [EMAIL PROTECTED] wrote: I'm having exactly the same problem. The Tile component grows taller than expected. It seems to allocate height for an extra row when there's no need to do so :S

Re: [flexcoders] Rotation transition - looking for help

2007-04-27 Thread Manish Jethani
I believe you're looking for the flip effect. http://weblogs.macromedia.com/auhlmann/archives/2007/03/distortion_effe.cfm On 4/27/07, simonjpalmer [EMAIL PROTECTED] wrote: Hi, I have a view stack with a bubble chart on one page and a set of controls (sliders etc) on another. At the moment I

Re: [flexcoders] wmode=transparent : any limitations to expect ?

2007-04-27 Thread Manish Jethani
You should know that transparent mode is not supported on all platforms. On 4/27/07, ecpmaz [EMAIL PROTECTED] wrote: I'm starting a big project relying on a transparent flex application (with some HTML stuff underneath)... and I was wondering wetherr I should expect bugs/limitations of the

Re: [flexcoders] wmode=transparent : any limitations to expect ?

2007-04-27 Thread Paul J DeCoursey
All mouse related events do not detect modifier keys. This was a painful issue because our app depended on being able to select multiple items from a list and that's not possible when control and shift are not registered on a mouse click. MSIE did not appear to have this limitation, but

[flexcoders] Re: wmode=transparent : any limitations to expect ?

2007-04-27 Thread ecpmaz
You should know that transparent mode is not supported on all platforms. Thank you for that, I did not know. Did you have any performance issues on big projects ? {Maz} I'm starting a big project relying on a transparent flex application (with some HTML stuff underneath)... and I was

Re: [flexcoders] wmode=transparent : any limitations to expect ?

2007-04-27 Thread Paul J DeCoursey
Where is this not supported? I have tested most and found it to work as expected. Mostly that html elements can appear over the flash component. Paul Manish Jethani wrote: You should know that transparent mode is not supported on all platforms. On 4/27/07, ecpmaz [EMAIL PROTECTED] wrote:

[flexcoders] Channel.Polling.Error - Using DataService with AtuoCommit and AtutoSync

2007-04-27 Thread parkerwhirlow
Hi I seem to be getting intermittent faults from my data service. Trying the same thing again seems to have it go away. Using DataService w/ HibernateAssembler. AutoSync and AutoCommit are enabled. Destination is configured with the default 'my-polling-amf' channel. see the fault below:

RE: [flexcoders] Problem using a subclass of ComboBox in actionscript

2007-04-27 Thread Tracy Spratt
Make sure you have a non-zero height and width for the dynamically added child. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith Sent: Thursday, April 26, 2007 11:56 AM To: flexcoders@yahoogroups.com Subject: RE:

RE: [flexcoders] Hiding Viewstack elements in a toggleButtonBar dataprovider

2007-04-27 Thread Tracy Spratt
Why do you need to remove it? You have to manually navigate a ViewStack, so build the navigation piece with the logic to exclude the admin view. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gotjosh819i Sent: Friday, April

RE: [flexcoders] problems with repeater

2007-04-27 Thread Tracy Spratt
Create a custom component. Use XML as the dataProvider. Pass the xml node into the component, and have the logic there pull the correct subnode for the current items dataProvider. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] How do I load variables from a loaded swf?

2007-04-27 Thread Tracy Spratt
Use the SWFLoader's content property to access public members of the loaded content. You'll need to listen for the applicationComplete event before you can access the content, though. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Re: Games in Flex / Apollo?

2007-04-27 Thread Troy Gilbert
(There is a nice little categories thing on the side that lists Flash, but what the heck, I'm feeling generous... ;-)): General commentary on the wonders of Flex: http://troygilbert.com/2007/01/18/flex-rhymes-with/ Creating a better game development framework (or what games can learn from web

RE: [flexcoders] Datagrid with row number

2007-04-27 Thread Tracy Spratt
If the dataProvider is XML, then loop through it and insert a rowNum attribute. You will have to do something manual as well for sorting. If it is not XML, I would create a custom item component with a rowNum property, then loop over the dataProvider, creating and populating the customItem

[flexcoders] Re: Games in Flex / Apollo?

2007-04-27 Thread Andrew
Yeah any examples, links or other descriptions would be great. Can't wait to see what you are working on. mx:Platformer mx:world level='mario001' mx:player id='mario'/ mx:enemy id='Koopa'/ /mx:world /mx:Platformer :) -Andrew --- In flexcoders@yahoogroups.com, Troy Gilbert [EMAIL

[flexcoders] Re: Problem using a subclass of ComboBox in actionscript

2007-04-27 Thread johnknyc
Thanks for the help! I was able to figure it out. It was an issue in our base framework. Thanks again! --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Make sure you have a non-zero height and width for the dynamically added child. Tracy

[flexcoders] eWeek.com Lead Story: Adobe Flex Open-Source Move

2007-04-27 Thread greg h
fyi ... The lead story today at eWeek.com is: Adobe Flex Open-Source Move http://www.eweek.com/ (btw, eWeek.com leaves up their Friday lead story as the lead story throughout the weekend) This is GREAT BUZZ ! ! ! Note, the lead story has two parts! Following are permalinks on each:

[flexcoders] Re: Hiding Viewstack elements in a toggleButtonBar dataprovider

2007-04-27 Thread gotjosh819i
Well not sure how I would remove it with this current setup: mx:ApplicationControlBar id=viewAppControllBar width=100% height=31 styleName=viewControlBar mx:Canvas width=100% height=100% mx:Image id=synergyLogo

[flexcoders] Re: Find and replace wih regex?

2007-04-27 Thread b_alen
It's too early for XSLT as there are numerous redundant tags. Just to get an idea, there are about 400 tags with at least 3 attributes average, with some of them needed to be combined, smome of them split into several tags, some of them removed, etc. But I found the solution. I will do the initial

[flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Troy A. Binford
That's weird. Why would the program go into recursion at that point? Is the alert refiring the itemEditEnd? I've tried creating an object to invoke the alert indirectly from the itemEditEnd with the same result. --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: It seems,

[flexcoders]How does Flex work on Mobile devices

2007-04-27 Thread dorkie dork from dorktown
My boss asked, What options does Flex have for deploying to mobile devices?

Re: [flexcoders]How does Flex work on Mobile devices

2007-04-27 Thread Clint Tredway
none at this point as the player for devices is not able to run flex apps. On 4/27/07, dorkie dork from dorktown [EMAIL PROTECTED] wrote: My boss asked, What options does Flex have for deploying to mobile devices? -- I am not a diabetic, I have diabetes my blog -

[flexcoders] Re: Programatic Icon

2007-04-27 Thread Paul Whitelock
Well here's the deal. I've created an simple icon class that draws a red square like this: package components { import mx.skins.ProgrammaticSkin; public class Icon extends ProgrammaticSkin { private var iconColor:uint = 0xFF; public function Icon() {

[flexcoders] using XMLListCollection and it's filterFunction... how to filter children nodes?

2007-04-27 Thread jensen.axel
Problem: Trying to filter a mx:Tree to show only things that I type… when I filter, it filters the folders, and the main root items, but not any children, I'm using an xmlListCollection… I don't know if you've done this with an xml list collection, it seems a lot of people are trying it with an

Re: [flexcoders] Re: Programatic Icon

2007-04-27 Thread Michael Schmalle
Hi, For one I see you are missing; graphics.clear(); Try that, I don't think you are erasing the old color. Peace, Mike PS hehe I was thinking about something else when I responded and forgot the internal icon is typed IFlexDisplayObject. On 4/27/07, Paul Whitelock [EMAIL PROTECTED]

Re: [flexcoders] Re: Programatic Icon

2007-04-27 Thread Michael Schmalle
Ah, I know why you are not seeing updateDisplayList() called. Since this is ProgrammaticSkin, if the size doesn't change, the method will skip. The layoutManager calls setActualSize() and in that call if height or width did not change, you won't get the call. I had this same problem. In your

[flexcoders] Re: Tile Extra Space

2007-04-27 Thread joshua gatcke
I haven't found a solution to this at all. Seems to only happen when I set the width of the tile to 100%. I want the hight to fit the content, so I can't set to a number or percent. - joshua

Re: [flexcoders]How does Flex work on Mobile devices

2007-04-27 Thread Paul J DeCoursey
dorkie dork from dorktown wrote: My boss asked, What options does Flex have for deploying to mobile devices? None at the moment, but I've heard that they are working on a way to compile Flex for Flash Lite which works on many mobile devices.

Re: [flexcoders] Re: Games in Flex / Apollo?

2007-04-27 Thread Troy Gilbert
Well, more like this: game width=640 height=400 backgroundColor=#00 scene width=1 height=400 backgroundColor=blue tickRate=30 layer background=clouds.png scrollSpeedX=3 / layer instance objectRef=coin x=35 y=56 / instance objectRef=mario x=0 y=0 / instance

[flexcoders] embedding multiple images programmatically

2007-04-27 Thread dougco2000
Hi all, I have an array of image names (of PNGs on my server), and I want to load these all up in an object list of images so I can show them when needed in my application. I've found an oddity where some of these, sometimes, don't load properly for whatever reason and are blank when I need to

Re: [flexcoders] embedding multiple images programmatically

2007-04-27 Thread Abdul Qabiz
Embedding the image in your application would increase the application filesize. I would rather suggest you to think of loading these images on runtime. You can load images on runtime using mx;Image or any other class (Loader etc)... -abdul On 4/28/07, dougco2000 [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Games in Flex / Apollo?

2007-04-27 Thread Troy Gilbert
Huh... well, I thought I was replying to Andrew off-list... so, everyone be very quiet... don't tell anyone! Troy. On 4/27/07, Troy Gilbert [EMAIL PROTECTED] wrote: Well, more like this: game width=640 height=400 backgroundColor=#00 scene width=1 height=400 backgroundColor=blue

[flexcoders] Your favorite horizontal menu arrangement

2007-04-27 Thread mapper2255
Hello, Putting up a 100% Flex site. What is everyone using to create horizontal set of links: MenuBar? Creating a custom handler for itemClick? Then using urlLoader? If there are any neat examples, would appreciate it. Thanks.

Re: [flexcoders] embedding multiple images programmatically

2007-04-27 Thread Abdul Qabiz
mx:Image source=http//server/image.png / var image:Image = new Image (); container.addChild (image); image.source = http://foo.com/test.png;; -abdul On 4/28/07, Abdul Qabiz [EMAIL PROTECTED] wrote: Embedding the image in your application would increase the application filesize. I would

[flexcoders] Re: Programatic Icon

2007-04-27 Thread Paul Whitelock
Unfortunately that did not work. It looks like the setter is not really being called after all. When I do this: myPanel.titleIcon.color = 0x00FF00; What seems to be happening is that it is creating a property called color just as if myPanel.titleIcon was a generic Object. I tried creating a

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread mvbaffa
I am sure that no one has a solution so good as Flex. What will adobe do, wait for them to be close. I do not know what are Adobe plans, but if at this moment there is not a solution ready to use, I am afraid that this solution will only be avaiable when Microsoft will have Visual Studio 2007

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread mvbaffa
You are rigth Jeffry. I am sure there are a lot of people that do not work with Windows. And that's OK. I just wanted to say that a lot of people works with Windows and Adobe is letting these developers with no support. I am sure you will agree that the number of windows developers is very

Re: [flexcoders] Re: Programatic Icon

2007-04-27 Thread Michael Schmalle
HAHA, Man, it must be Friday. Ok, the problem is this; titleIcon is the setter for the reference to the class that is creating the icon. You need the actual reference to the icon instance. try this; import mx.core.mx_internal; use namespace mx_internal;

[flexcoders] How to constrain child elements within a flexable parent?

2007-04-27 Thread Ian Skinner
I have a Panel that I have sized to be constrained at 10 pixels top, bottom, left and right so that it is flexible and based on the size of the browser. Inside this I have a VBox that I want to be 100% the width of the Panel. Inside this I have Labels that I want to be 20% of the width of the

[flexcoders] Re: Programatic Icon

2007-04-27 Thread Paul Whitelock
I got a different error this time: TypeError: Error #1034: Type Coercion failed: cannot convert components::[EMAIL PROTECTED] to Namespace. Are you sure it's not Friday the 13th? Paul --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: HAHA, Man, it must be

[flexcoders] Re: Programatic Icon

2007-04-27 Thread Paul Whitelock
Sorry, that error should be: TypeError: Error #1034: Type Coercion failed: cannot convert mx.containers::[EMAIL PROTECTED] to Namespace. My copying and pasting got a little mixed up there :-) Paul --- In flexcoders@yahoogroups.com, Paul Whitelock [EMAIL PROTECTED] wrote: I got a different

Re: [flexcoders] Re: Programatic Icon

2007-04-27 Thread Michael Schmalle
ok, I have wasted enough time here, listening to music, I will go make it work. Will post the class. :) Peace, Mike On 4/27/07, Paul Whitelock [EMAIL PROTECTED] wrote: I got a different error this time: TypeError: Error #1034: Type Coercion failed: cannot convert components::[EMAIL

[flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-04-27 Thread slangeberg
Any one come up with a strategy so that labels in the DataGrid column headers (or elsewhere) can wrap, but not be broken in the midde of a word? EX: Actual Response NOT: Actual Respons e Thanks, : : ) Scott

Re: [flexcoders] Re: Programatic Icon

2007-04-27 Thread Michael Schmalle
Ok, I got it; MXML APP --- ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script ![CDATA[ import mx.core.mx_internal; use namespace

Re: [flexcoders] Re: Programatic Icon

2007-04-27 Thread Michael Schmalle
Maybe I should be listening to whatever music you're listening to You have Chemical Brothers :) haha No, my problem is I try to do 20 things at once. I just needed to focus on what you were witting and I could have had it solved 3 hours ago :) mx_internal is the namespace Adobe engineers use

[flexcoders] Re: Programatic Icon

2007-04-27 Thread Paul Whitelock
Ahhh, the Chemical Brothers -- I haven't heard them in a while. Maybe I should dig them out of my collection :-) Thanks for the colorful description of mx_internal. I also just found a good description here: http://tinyurl.com/3y62jd However, yours is more fun :-) Thanks again for the help.

Re: [flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-04-27 Thread Manish Jethani
On 4/28/07, slangeberg [EMAIL PROTECTED] wrote: Any one come up with a strategy so that labels in the DataGrid column headers (or elsewhere) can wrap, but not be broken in the midde of a word? That's the behaviour of the built-in TextField object and I don't think anything can be done about

Re: [flexcoders] How to constrain child elements within a flexable parent?

2007-04-27 Thread Manish Jethani
Did you mean HBox instead of VBox? From your description of the layout, it should just work. Can you post a simple example that doesn't work? On 4/28/07, Ian Skinner [EMAIL PROTECTED] wrote: I have a Panel that I have sized to be constrained at 10 pixels top, bottom, left and right so that it

Re: [flexcoders] embedding multiple images programmatically

2007-04-27 Thread Manish Jethani
On 4/28/07, dougco2000 [EMAIL PROTECTED] wrote: So I am thinking I should just embed them. But since I have 50+ images, I'd like to run a loop to embed each one, and all the examples of embedding show doing something like: [Embed(source=logo.gif)] [Bindable] public var imgCls:Class;

  1   2   >