[flexcoders] Error: Problem finding external stylesheet:

2009-11-23 Thread cholid cholid
Hi all i've new problem when i compile some app the message is show Error: Problem finding external stylesheet: /diagrammer/assets/style/style.css actually the data is there any help? thanks cholid.r

Re: [flexcoders] Error: Problem finding external stylesheet:

2009-11-23 Thread Guy Morton
My guess is that the path isn't right for your operating system. / is an absolute path referring to the root of your application, but you may need to specify it as a relative path instead, eg ../ diagrammer (or whatever) when running locally On 23/11/2009, at 7:47 PM, cholid cholid wrote:

[flexcoders] Change the caret in TextArea

2009-11-23 Thread rituraj_tiwari
Folks, I need to implement and editable text area where the cursor (caret) is different from the default vertical flashing caret. Is the caret a skinnable property of TextArea? In case the flashing vertical line is deeply entrenched, I would like to be able to overlay my own floating caret on

Re: [flexcoders] Change the caret in TextArea

2009-11-23 Thread Shabir Gilkar
Nice question friend, even i do wanna to know the answer On 11/23/09, rituraj_tiwari rituraj.tiw...@gmail.com wrote: Folks, I need to implement and editable text area where the cursor (caret) is different from the default vertical flashing caret. Is the caret a skinnable property of

Re: [flexcoders] Re: how to insert checkbox value into database

2009-11-23 Thread Chris Downey
Ooops. By pragmatically I meant programmatically On Mon, Nov 23, 2009 at 12:30 AM, Chris Downey cdow...@gmail.com wrote: I'm not sure how much my code examples will help - I'm using SQL Server and before the data gets to SQL, I translate the boolean value to a 1 or 0. If I were in your

[flexcoders] Re: how to insert checkbox value into database

2009-11-23 Thread stinasius
this is what i have tried to do following your previous example... private var poolSelected: Boolean = false; public function poolselected():void{ if(pool.selected == true){ poolSelected = 1; }

[flexcoders] language switch on mac does not work?

2009-11-23 Thread fotis.chatzinikos
Hello all, I have tried to google this but I do not seem to find anything... Anyone knows if this is a known bug? Is there a solution? TIA, Fotis

Re: [flexcoders] Re: I've got a [Bindable] boolean var - can I setup a eventlistener on it?

2009-11-23 Thread Ninh Hieu
In this situation, the easiest way is using ChangeWatcher.watch function to watch that variable. --- On Sat, 11/21/09, jamesfin james.alan.finni...@gmail.com wrote: From: jamesfin james.alan.finni...@gmail.com Subject: [flexcoders] Re: I've got a [Bindable] boolean var - can I setup a

[flexcoders] D.eval() author Riaone contact information

2009-11-23 Thread hotjugg
. Have tried to contact with the author(s) of D.eval() http://www.riaone.com/products/deval/index.html through their contact form but with no results. Would be grateful if anyone had some more contact information for this company / authors. Alan

[flexcoders] TabNavigator stacking order

2009-11-23 Thread Joel Stransky
By default, a TabNavigator adds its TabBar on top of the viewstack. Is there a way to force it to draw it underneath the subcontainers? -- --Joel Stransky stranskydesign.com

[flexcoders] Regarding removing data from list control using custom Item render

2009-11-23 Thread naveen kumar
Hello Guys,                  I am new to adobe flex and right now i am working as a flex developer. I am not able to do the following task using custom renderer , but i did  using inline itemrenderer. But I need to do using custom renderer. Task:1. There is a Tile window in which there are 4

[flexcoders] Looking for help with Linechart and xml

2009-11-23 Thread shenji_s
I am passing a xml in this fortmat Performance TimeSlot Time=11/1/09 System ID=1 CPU=20 System ID=2 CPU=22 /TimeSlot TimeSlot Time=11/2/09 System ID=1 CPU=34 System ID=2 CPU=15 /TimeSlot /Performance How do I make my linechart to have the the linechart show both system

[flexcoders] Flex's Ant html-wrapper task

2009-11-23 Thread kevin.sorat
Hi guys, According http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_7.html, I cannot add a custom template to Flex Builder 3\sdks\sdk version\templates to create a custom wrapper, because there are only 3 templates to choose from. Is this actually true? I would like to be

RE: [flexcoders] I've got a [Bindable] boolean var - can I setup a eventlistener on it?

2009-11-23 Thread Christopher McArthur
assuming your in the same class as changeme: private var changemeWatcher:ChangeWatcher; this.changemeWatcher = ChangeWatcher.watch(this, changeme, changemeChangedFunction); this function will get called every time it changes: private function

[flexcoders] Errors sorting a arrayCollection ready for searching?

2009-11-23 Thread criptopus
Don't understand why im getting these errors, can anybody help? I have just created an arrayCollection from a HTTPService that reads a table from my database. I am trying to check to see if the new user has entered an already used account name. After reading a number of articles I discovered

[flexcoders] triggering itemsChangeEffect when using filters on an ArrayCollection's

2009-11-23 Thread fatmanchan2009
Hey Guys So what im basically doing is creating a List Component of players scores. The dataprovider is type ArrayCollection, and i have applied a sort filter on the collection so it sorts by players score, but when the filter is applied and the order of the collection changes, the

RE: [flexcoders] TabNavigator stacking order

2009-11-23 Thread Gregor Kiddie
Either write a custom TabNavigator which does it (I can't see any properties or styles for it), or Just use a Viewstack and TabBar yourself to do the same effect (TabNavigator doesn't actually add much to just using them individually). Gk. Gregor Kiddie Senior Developer INPS Tel:

Re: [flexcoders] Re: how to insert checkbox value into database

2009-11-23 Thread Chris Downey
For this problem to be solved, I think you need to find out what value is getting to Access. Something is reaching Access. What is it? On Mon, Nov 23, 2009 at 6:57 AM, stinasius stinas...@yahoo.com wrote: this is what i have tried to do following your previous example... private var

[flexcoders] Re: how to enable stack traceback?

2009-11-23 Thread valdhor
Or you could turn on the local Apache server, set your flex output directory to one of the directories served by Apache and set up a run config in Flex to open a localhost URL. This is what I do on a PC after installing WAMP. --- In flexcoders@yahoogroups.com, mitchgrrt mitch_g...@... wrote:

[flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-23 Thread feiy
this version fixed the can't run/debug air bug! more info:http://code.google.com/p/fb4linux/ 闲云孤鹤 - 清冷香中抱膝吟

[flexcoders] Re: Help! - AdvancedDataGrid - Applying sort as if user clicked column header

2009-11-23 Thread invertedspear
So can anyone tell me how to sort when using a grouping collection? The GC is sorted how I want it, but I want the rest of them to default to being sorted as if the user had clicked on the header of the first column. I can't find help on this anywhere. Thanks in advance. --- In

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-23 Thread Tom Chiverton
On Monday 23 Nov 2009, feiy wrote: this version fixed the can't run/debug air bug! Any update on the Eclipse 3.5 issue ? -- Helping to economically participate unique end-to-end high-end markets as part of the IT team of the year, '09 and '08

[flexcoders] Public method access to a SWF, loaded via an HTML, in AIR. Doable..?

2009-11-23 Thread andr01dm
Hello. :) I'm building a kiosk app in AIR, in which I need to load an .html page using the HTML control, and on that page is a .swf movie. I've gotten this far without a problem. In the loaded .swf movie there are text inputs which I need to have the user type into. But here's the catch;

[flexcoders] Re: the most popular way to be connected with sql server REFdn0085136210

2009-11-23 Thread valdhor
I don't know if it's the most Popular way, but I use PHP/MySQL with WebORB http://www.themidnightcoders.com/products/weborb-for-php/overview.html --- In flexcoders@yahoogroups.com, dennis den...@... wrote: Hello ppl. Which is the most popular way a Flex application to join an internet

[flexcoders] Re: Tilelist: empty cells when refresh dataprovider

2009-11-23 Thread valdhor
It's a little difficult to tell without seeing some code. Can you post a small self contained example? --- In flexcoders@yahoogroups.com, jack_freud jack_...@... wrote: Hi, I have a tilelist with an item renderer, and I refresh the dataprovider that is an arraycollection. The tilelist is

[flexcoders] Re: TabNavigator stacking order

2009-11-23 Thread valdhor
You may like to expand upon this example... http://flexexamples.blogspot.com/2007/12/positioned-tab-navigator-in-flex.html --- In flexcoders@yahoogroups.com, Joel Stransky stranskydes...@... wrote: By default, a TabNavigator adds its TabBar on top of the viewstack. Is there a way to force it

[flexcoders] Re: Change the caret in TextArea

2009-11-23 Thread valdhor
These links should help... http://www.switchonthecode.com/tutorials/flex-custom-cursor-tutorial http://blog.flexexamples.com/2007/09/10/changing-the-cursor-in-a-flex-application-using-the-cursormanager-class/

[flexcoders] Re: Errors sorting a arrayCollection ready for searching?

2009-11-23 Thread valdhor
You are probably better off checking if the new user has entered an already used account name on the back end and sending through a Yes/No answer to Flex. Anyway, You should be able to figure out how to do a sort by perusing this example:

Re: [flexcoders] language switch on mac does not work?

2009-11-23 Thread Fotis Chatzinikos
To clarify a bit more I am interested in ALT-SHIFTing (in windows - what is needed on a Mac) into a different language than the default. Foe example from English to Greek, German, or any other 2nd, 3rd ... language. If i copy and paste Greek text into a text box this works.. But typing directly

Re: [flexcoders] Re: the most popular way to be connected with sql server REFdn0085136210

2009-11-23 Thread Jorge Hernández
valdhor! * * *Thanks for the link, I did not know about this WebORB but is pretty cool! * 2009/11/23 valdhor valdhorli...@embarqmail.com I don't know if it's the most Popular way, but I use PHP/MySQL with WebORB http://www.themidnightcoders.com/products/weborb-for-php/overview.html --- In

[flexcoders] Re: Public method access to a SWF, loaded via an HTML, in AIR. Doable..?

2009-11-23 Thread valdhor
You may be better off finding a Java based virtual keyboard (Like http://www.noamik.de/wiki/index.php/Virtual_Keyboard) and using Merapi (http://merapiproject.net/) to exchange data. --- In flexcoders@yahoogroups.com, andr01dm andr0...@... wrote: Hello. :) I'm building a kiosk app in AIR,

[flexcoders] Re: the most popular way to be connected with sql server REFdn0085136210

2009-11-23 Thread valdhor
Very cool and very useful. We use it here with thousands of connected users. --- In flexcoders@yahoogroups.com, Jorge Hernández jorge.albac...@... wrote: valdhor! * * *Thanks for the link, I did not know about this WebORB but is pretty cool! * 2009/11/23 valdhor valdhorli...@... I

[flexcoders] Re: I've got a [Bindable] boolean var - can I setup a eventlistener on it?

2009-11-23 Thread turbo_vb
Even easier, would be to change the var to a getter/setter, and execute the function in the setter. -TH --- In flexcoders@yahoogroups.com, Christopher McArthur cmcart...@... wrote: assuming your in the same class as changeme: private var changemeWatcher:ChangeWatcher;

[flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread turbo_vb
Use a second series. -TH --- In flexcoders@yahoogroups.com, shenji_s she...@... wrote: I am passing a xml in this fortmat Performance TimeSlot Time=11/1/09 System ID=1 CPU=20 System ID=2 CPU=22 /TimeSlot TimeSlot Time=11/2/09 System ID=1 CPU=34 System ID=2

[flexcoders] First Custom Component

2009-11-23 Thread targetplanet
So I have created my first full custom component and would really like some feedback on it. It replaces a List that uses ItemRenderers. I hate the Flex List component, especially when using variableRowHeight and ItemRenderers. I could never get it to work right, and the size changing

[flexcoders] Re: Errors sorting a arrayCollection ready for searching?

2009-11-23 Thread invertedspear
I agree that you are probably better doing the backend search, but if you need to do it in your app here's the proper way to sort. You just missed declaring a sort as a new object (then since you didn't have an object you were trying to apply sortfields to an AC) and then you apply that new

[flexcoders] Re: language switch on mac does not work?

2009-11-23 Thread seanmcmonahan
I'd start by ensuring you have the Greek framework resources setup for Flex (see: http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization#Huh.3F_French_framework_resources.3F). It's possible that pasting works because you are pasting in UTF-8 characters but

[flexcoders] MAC : TextInput focus

2009-11-23 Thread Suman
Hi, In our application, i am trying to set the focus on the login page which has got textinput field. This works fine in IE as well as Firefox but fails in Mac browser. Any pointers on how to set the focus on the textinput field in Mac browser? Thanks, Suman

Re: [flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread shenji
How do I use the series to point to the CPU attribute in System? I want each series to be based on the ID attribute and graph out by the CPU attribute. I hope I am making sense lol On Mon, Nov 23, 2009 at 9:23 AM, turbo_vb timh...@aol.com wrote: Use a second series. -TH --- In

[flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread turbo_vb
Ah, I see. You're going to have to parse your base data into 2 separate dataProviders; one for id 1 and one for id 2. Then use 2 series based on time slot and cpu. Since the time slots match for the 2 collections, the two lines will align. -TH --- In flexcoders@yahoogroups.com, shenji

Re: [flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread shenji
Thanks for the help turbo, can you give me a pointer on how would the dataprovider look like? I currently is getting the xml returned back to me through a web service. I have something like this in the code. mx:WebService id=PerfData wsdl=http://10.20.33.34/Service1.asmx?WSDL; showBusyCursor=true

[flexcoders] Droppable areas

2009-11-23 Thread bgamblin
Sorry to bother you guys again, but I never found an answer for my strange droppable region problem. The situation is that I have Boxes that respond to dragOver and dragDrop messages. However, the dragOver message doesn't get fired over the whole object. The area that generates a dragOver

Re: [flexcoders] Re: language switch on mac does not work?

2009-11-23 Thread Fotis Chatzinikos
Thanks for the link, i will have a look and let people know if i get it to work... I have a hunch that it might not apply in my case because all localization is server side.. but you never know.. Thanks again, Fotis On Mon, Nov 23, 2009 at 9:10 PM, seanmcmonahan s...@seanmonahan.org wrote:

[flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread turbo_vb
Don't have a lot of time right now, but basically you're looking to massage the data into something like this: first collection for System ID 1: TimeSlot Time=11/1/09 ID=1 CPU=20 TimeSlot Time=11/2/09 ID=1 CPU=34 Second collection for System ID 2: TimeSlot Time=11/1/09 ID=2 CPU=22 TimeSlot

[flexcoders] LocalConnection - Meh!

2009-11-23 Thread djhatrick

[flexcoders] Help setting the selectedChild of a viewstack

2009-11-23 Thread lanekelly5
I'm trying to grab a portion of the BrowserManager.fragment (I bring it in as an object) and then use it to set the selectedChild of a ViewStack. I'm running into a type conversion error. Essentially this is what I'm trying to do: o.view contains the portion of my fragment - say it is set to

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-23 Thread feiy
Eclipse 3.5 issue ?! i don't know any issue about eclipse 3.5,and i work with eclipse 3.5,every work fine! 闲云孤鹤 - 清冷香中抱膝吟 On Mon, Nov 23, 2009 at 11:38 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Monday 23 Nov 2009, feiy wrote: this version fixed the can't run/debug air bug!

RE: [flexcoders] triggering itemsChangeEffect when using filters on an ArrayCollection's

2009-11-23 Thread Christopher McArthur
So I investigated this a lot myself a while ago, and you are pretty much out of luck. itemsChangeEffect does not work with refresh. You can fake it a bit, by instead of doing a sort or a filter, manually adding/removing/moving elements one at a time in the list, which will trigger the

Re: [flexcoders] MAC : TextInput focus

2009-11-23 Thread Julian Alexander
Does the screen look like it has focus but when you type it doesn't actually go there? From: Suman srgayak...@gmail.com To: flexcoders@yahoogroups.com Sent: Mon, November 23, 2009 11:37:49 AM Subject: [flexcoders] MAC : TextInput focus Hi, In our

[flexcoders] How to preload RSL

2009-11-23 Thread Mayur
I am facing some problem with RSL. I have an application contains many different modules. (One base main swf file and other module swf files ) I have created RSL of my some Flex Library projects as well as some third party open source APIs e.g. Papervision3D, Degrafa etc. The problem

[flexcoders] Confirming SDK 3.4 installation

2009-11-23 Thread ynotob
I've downloaded and installed the 3.4 sdk as documented in the release notes. In flex builder preferences Installed Flex SDKs I've removed all other SDKs and only 3.4 exists there. But when I run About Flex builder I cannot see any confirmation of which SDK is being used. Any advice on how I