Re: [flexcoders] Function from string?

2013-11-06 Thread A. P. Damien
On 11/6/2013 9:16 AM, Keith Reinfeld wrote: > Perhaps the following syntax will help: > > var func:String = “yourFunctionName”; > > this[func](); Thanks. I hadn't fully assimilated the fact that an object can also be treated as an array. Do I have to declare the class 'dynamic' for this trick

[flexcoders] Function from string?

2013-11-05 Thread A. P. Damien
I'm writing a game. Well, actually I guess it's more of a game engine. I want the game logic to be in a script. The script will take the form of a series of rooms, each of which can contain: . doors to other rooms . characters the player can interact with . things the playe

[flexcoders] Designing custom buttons [2 Attachments]

2013-09-23 Thread A. P. Damien
I'm designing a game. I want to model the user interaction after "Cream Babysitting Adventure" by Aval0nX. So the menu at the start of the game will resemble CrStartMenu.png, and the choices and responses will resemble CrChoices.png. So I'm talking about button-like thing

Re: [flexcoders] Flash Builder project to HTML5

2013-05-14 Thread Shyam Sundar A
FalconJS is a project started by Alex Harui. The FalconJS compiler will take an MXML and AS project and output a valid HTML/JS application. More info here: https://cwiki.apache.org/confluence/display/FLEX/ASJS+-+From+Flash+Player+to+web+native https://cwiki.apache.org/confluence/display

Re: [flexcoders] Array literals - odd behavior

2013-04-11 Thread Paul A.
On 11/04/2013 20:45, Dave Glasser wrote: Yes, I think it matters quite a bit. It would be very easy for someone, even in their right mind, to unintentionally have an extra comma somewhere in the middle of a long array literal and not notice it. And the compiler would not tell them, but

Re: [flexcoders] Array literals - odd behavior

2013-04-11 Thread Paul A.
On 11/04/2013 18:30, Dave Glasser wrote: In Java and other C-derived languages, an array literal can have a comma after the last element, for example: int[] numList = {1, 2, 3,}; In ActionScript, you can do the same thing: var numList:Array = [1, 2, 3,]; In both cases, the array has a

Re: [flexcoders] flex frustration...

2013-03-15 Thread Paul A.
On 15/03/2013 07:34, ZIONIST wrote: > hi guys one moment my app was working fine and the next i get this error > > faultCode:Channel.Call.Failed faultString:'error' > faultDetail:'NetConnection.Call.Failed: HTTP: Status 500' > > > any ideas on how to solve this ridiculous flex nonsense of an error

Re: [flexcoders] Re: Binding using as3

2013-01-31 Thread Paul A.
On 31/01/2013 15:13, aceoohay wrote: > Paul, > > BTW I did try BindingUtils.bindProperty(vtiA,"x",this,"_y"); and it did not > seem to work for me. It recognized _y as it required that I change it to a > public variable. I was suprised that you were binding a

Re: [flexcoders] Binding using as3

2013-01-30 Thread Paul A.
On 30/01/2013 23:17, aceoohay wrote: > I have customized textinput control with a property of x. In my program I > instntiate the control as vtiA. My program has a bindable variable called _y. > > I would like everytime that _y is changed by my program that the property x > of t

Re: [flexcoders] Joe G James is out of the office.

2012-11-19 Thread Paul A.
So that's what VerifyError: Error #1014: Class flash.system::Worker could not be found is all about... ;-) On 20/11/2012 00:01, joe.g.ja...@kp.org wrote: I will be out of the office starting 11/19/2012 and will not return until 11/26/2012. I will respond to your message when I return

[flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-03 Thread Mark A. DeMichele
Everybody is talking about "learning" another language. That's the easy part. It's porting an entire application that has several 100,000 lines of code. That's that hard part. Someone mentioned losing flash support on all Macs. Is that true? I hope not. I have over

[flexcoders] Re: What's up Adobe?

2010-02-03 Thread Mark A. DeMichele
I think the new name makes perfect sense. The current FlexBuilder doesn't only "build" "flex". It builds "flash" as well. When you think of it, it is truly a "Flash" "Builder". In fact, before they decided to change them name, I wondere

[flexcoders] More weird&interesting&specific performance issue for RegExp!

2009-11-04 Thread ha a
through big text files by multiple RegExps. a)The biggest text files is about 137K lines, b)In some long line(about 50 lines), there are about 1727 ascii chars, and even one line is about 8534 ascii chars. and air program has about 40 RegExps. c)Matching line with RegExp by "var mateched:Bo

[flexcoders] Weird performance issue

2009-11-03 Thread ha a
run button again, then the air program's performance is OK. ... Then, seems only the second run may have the performance issue. So weird? In fact, each run should do the same thing. BTW, the busy cursor is a clock, when running slow, the clock cursor also run slowly. *About profiler*:

[flexcoders] A weird performance issue about regExp!

2009-11-03 Thread ha a
The further clue about the previous topic: "A weird performance issue" After some investigation, maybe regExp is one of the reasons. One loop in my air program:     var beg1:Date = new Date();     regexMatched = regexpArray[index].test(line);     var end1:Date = new Date();     sum

[flexcoders] i cant refresh datagrid

2009-09-10 Thread Carlos A. Diaz Alvarado
                                                                               Carlos A. Diaz AlvaradoJefe de Informatica & Sistemas Instituto LIBERTADOR SAC Jr. Martir Olaya 327 Chorrillos 995-262870

[flexcoders] Read Items / Loop Through Datagrid Rows

2009-06-11 Thread A. Resa Jones (Resa)
Why not create a bindable class for your data, populate objects of that class into your array collection and use that collection as the source for your data grid? That way you don't have to loop through the datagrid to fill your collection. Quoting: > Hi FlexCoders, > > I

[flexcoders] ASP.NET .ashx handler - POST variables not working

2009-05-08 Thread Matthew A. Wilson
I created a web handler (.ashx) in ASP.NET and it takes 4 post variables, all strings. When I manually type in the URL with the variables (name=this&email=that&comments=this) it works fine, but when I try to POST those variables in an HTTPRequest in Flex, my web handler can

[flexcoders] Tile control: Border style and Zoom

2009-04-12 Thread Matthew A. Wilson
I'm using a tile control to display an image with a short description to the right of it. Basically everything is contained with in an HBox and the I'm programmtically adding that to the tile: thisTile.addchild(myHBox) I'd like to have some sort of visual indicator to let the

[flexcoders] What's your favorite Tip/Trick ?

2009-04-10 Thread Matthew A. Wilson
I've been using .NET for years and recently started developing in Flex. One thing I've noticed (and maybe it's because I'm new) is that I have to write out just about everything. There were so many things in .NET that the IDE would handle for me. Like I could write a f

[flexcoders] Re: Debugger won't break on HTTP Service result function

2009-04-09 Thread Matthew A. Wilson
hose calls asynchronously (I know, I know - stop laughing). So, I was hitting an error in my internal function because it was trying to work with an XMLListCollection that hadn't been populated yet (it was null). I would put a breakpoint in my result function, but of course, the Flex app had already tr

[flexcoders] Debugger won't break on HTTP Service result function

2009-04-08 Thread Matthew A. Wilson
I have a component that I'm adding to my Flex project and it makes 3 HTTP Service calls. On the result="" I have listed a function and inside that function I have created a breakpoint. When I go into debug, it won't stop at that breakpoint. It's like it's not

[flexcoders] Bind ComboBox to returning XML (HOW TO)

2009-03-23 Thread Matthew A. Wilson
Need help with a combobox... I have a combobox that I want to load from a database. The text will be a name, and the value will be an integer. That's it - pretty straightforward. Just can't seem to figure it out. The xml will look like this: Thanks so much in advance for your help!!!

[flexcoders] Flex 3.3 SDK and AdvancedDataGrid

2009-03-03 Thread Troy A. Binford
Hi, I updated to 3.3 today and now AdvancedDataGrid is not found. Is there something I am missing? Thanks.

[flexcoders]

2009-02-27 Thread A chuva imóvel - Campos de Carvalho
HI everyone, A trickly problem is tricking my head. That's about the DataPush feature of BlazeDS, but I think the problem is in the Flex Side. Below there's a little piece of code: http://www.adobe.com/2006/mxml"; width="400" height="314"

Re: [flexcoders] Re: Define repeaters at runtime

2009-02-27 Thread subeesh a
If you are adding the images to some container , you can get it as var ImageArray:Array = yourContainer.getChildren(); Subeesh http://subeesh.co.nr

Re: [flexcoders] DataGrid - variableRowHeight="true" and wordWrap="true" not resizing properly

2009-02-09 Thread A. Resa Jones (Resa)
, Feb 9, 2009 at 1:36 PM, patrickfkellogg wrote: > I have a problem with that uses dynamically generated > columns. When the cell has many characters the row resizes its height > properly with word wrap to show all the cell's contents. But the next > time the is shown when the

[flexcoders] Re:NaN in CSS

2009-01-05 Thread Mark A. DeMichele
I figured it out. You can do width: ClassReference(null)

[flexcoders] Re: Custom itemrenderer in datagrid

2008-11-27 Thread Troy A. Binford
Come on people. It is as simple as this - Seeing that the original question is quite old. I help this helps out anyone with a similar problem. this.data[(this.listData as DataGridListData).dataField]; Problem solved. --- In flexcoders@yahoogroups.com, "B.Brey" <[EMAIL PROT

[flexcoders] DataGrid selection to populate another datagrid

2008-06-10 Thread Just give a guess...
Has anyone here written code that would update the data in another datagrid based upon the selected value in the first datagrid. I'm new to Flex and just getting my hands around all of this. For example, I have a list of tasks in the first datagrid. When a user selects a task, it popu

[flexcoders] Flex and CFC issues

2008-06-05 Thread Just give a guess...
All, I am extremely new to Flex but I have been doing ColdFusion for a while now. I am having an issue with data from a CFC getting back to my Flex app. I have put code into my CFC to write to the log file if it gets hit. I can run a .cfm file against it and it works. However, the moment I

[flexcoders] Application crash due to Channel disconnected

2008-05-23 Thread Tuncay A.
Hi, I hope some of you guys can help me. I made my first company Flex application integrated into a webapplication using Java Dataservice to communicate to backend. On Windows machine it works properly. When deploying into a Linux machine it crashes almost all time when the application either

RE: [flexcoders] charts: disable datatip for values < min_value

2008-03-13 Thread n i p u n a s . c o m

[flexcoders] Swfloader event

2008-02-17 Thread a.
So I'm using SWFloader to load a flash animation and I want to pass an event after its done playingis that possible? So it runs though its timeline, stops and tells Flex...Hey I'm done here. Possible?

[flexcoders] Google Spell Checker Component Error

2008-01-22 Thread subeesh a
Error" bubbles=false cancelable=false eventPhase=2 text="Error #2048: Security sandbox violation: http://dev.meshenergy.com/Modules/MeshAudit/bin/ComponentQuestion.swf cannot load data from https://www.google.com/tbproxy/spell?lang=en.";] i have placed a crossdomain.xml file in th

[flexcoders] Capturing TabClick in

2008-01-08 Thread Dharmendran A
Hi, I need to capture TabClick event in i.e., When user clicks on the tab ( i have three tabs in my UI) each time, i need to do some validation. Can anyone help me. Thanks Dharmendran A Looking

Re: [flexcoders] Webservices problem

2007-12-19 Thread subeesh a
ubject: [flexcoders] Webservices problem Hi, I have a webservice that I invoke back to back on a button click. On the first click the webservice returns the expected result. However, on successive clicks, I get the following error: [FaultEvent fault=[RPC Fault faultString= "Array of input argumen

[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

[flexcoders] Changing Default Timeout Period

2007-10-30 Thread subeesh a
Hi, In my flex application, I am calling a javascript function using external interface which opens a popup(an aspx page) with a rich text editor. When that popup is closed after entering some data, the same javascript function calls an actionscript function to refresh the data. The problem

RE: [flexcoders] Reply Please !!!

2007-09-21 Thread Elangovan A
] Reply Please !!! Please some one reply me, i am still waiting for the answer of the following question Thanks Tehseen Ahmed --- In [EMAIL PROTECTED] <mailto:flexcoders%40yahoogroups.com> ups.com, "ktadawn" <[EMAIL PROTECTED]> wrote: > > Hi, > I've already

[flexcoders] Printing in ASCII

2007-09-07 Thread . /\\/\\ a r c o s . /\\ u g u s t o
Hi there, Can´ t find how to print in ascii ( on those nasty dot matrix printers... ) Was thinking about using some script on a linux box , call it via amfphp, and print using samba.. Any better idea? -- . /\/\ a r c o s/\ u g u s t o ; .eu ando de passo leve que é pra num acordar o

[flexcoders] Re: Throwing DataSyncException Error - Flex Data Management

2007-06-07 Thread Dharmendran A
Hi, Any idea for this bug. I didnot get any reply.. Pls help me out.. Thanks Dharmendran A - Original Message From: Dharmendran A <[EMAIL PROTECTED]> To: flex coders Sent: Wednesday, June 6, 2007 10:59:32 AM Subject: Throwing DataSyncException Error - Flex Data Management H

[flexcoders] setClipboard: Storing tabled data

2007-06-06 Thread Troy A. Binford
Greetings, I have a DataGrid that I want to copy and paste into Word. I would like Word to be able to display the DataGrid as a table not just tab-separated data. I know that you can copy tables off Internet and paste them into Word (or even WordPad) and they will preserve their formatting. I

Re: [flexcoders] DataGrid - ItemRenderer BUG on scrolling.

2007-06-06 Thread Troy A. Binford
I had a similar problem like this. Before the if statement where you are checking if the value is not null, set this.text to "". This has worked for me in the past so give it a shot. Regards, Troy On 6/6/07, alom17959 <[EMAIL PROTECTED]> wrote: Hi, Im Aldo, and i appreci

[flexcoders] Selecting a bunch of cells in DataGrid.

2007-06-06 Thread Dharmendran A
hi, I need to select a bunch of cells (like one in excel) in datagrid, press CTRL+C and export to Excel. Any Idea how to select cells in flex data grid?? dharmendran A Shape Yahoo! in your own image

[flexcoders] Throwing DataSyncException Error - Flex Data Management

2007-06-05 Thread Dharmendran A
Hi, I have built a sample .MXML application for testing Flex Data Management. In client iam using DataService to connect to the destination like, Iam able to view all the records using ds.fill(). Iam able to add a new employee record using addItem() of the ArrayCollection and by calling

Re: [flexcoders] HttpFlexSession Register in web.xml

2007-06-04 Thread Dharmendran A
Hi, Thanks for your reply. I could able to resolve the problem. flex-messaging.jar, flex-messaging-common.jar, flex-messaging-opt.jar and flex-messaging-req.jar were missing in WEB-INF\lib folder. Yes Iam using FDS and Iam using Tomcat 5.5 Thanks, Dharmendran A - Original Message

[flexcoders] HttpFlexSession Register in web.xml

2007-06-04 Thread Dharmendran A
Hi, Iam trying to access a RemoteObject (java class) thru Flex and iam getting this error while calling thru Flex UI. (I have a datagrid dataprovider bound to event.result.) [Flex] [WARN] HttpFlexSession has not been registered as a listener in web.xml f or this application so no events will

[flexcoders] Re: For Loop problem..

2007-05-27 Thread Dharmendran A
Silly... Got it... Dharmendran A - Original Message From: Dharmendran A <[EMAIL PROTECTED]> To: flex coders Sent: Monday, May 28, 2007 10:05:35 AM Subject: For Loop problem.. Hi, Iam facing a peculiar problem in flex. The For loop works in a reverse way. for(var i:Nu

[flexcoders] For Loop problem..

2007-05-27 Thread Dharmendran A
Hi, Iam facing a peculiar problem in flex. The For loop works in a reverse way. for(var i:Number=0; i<3; i++) { Alert.show(i.toString()); } Prints 2,1,0 ?? Could anyone help pls... Dharmendra

[flexcoders] Drawing an Arrow in Flex

2007-05-24 Thread Dharmendran A
Hi, Iam working on Flex Charting components and i need to draw a KPI Tree View. The problem is how can i draw an arrow using flex 2.0?? thanks dharmendran a Looking for a deal? Find great prices on

Re: [flexcoders] Locking Last row in a Flex Data Grid

2007-05-24 Thread Dharmendran A
fixed and scrollable. pls help,, dharmendran a - Original Message From: Dharmendran A <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, May 24, 2007 10:36:12 AM Subject: Re: [flexcoders] Locking Last row in a Flex Data Grid Got It !!! Thanks :))) - Or

[flexcoders] KPI Tree View.

2007-05-24 Thread Dharmendran A
Hi, Does anyone know whether Flex 2.0.1 has KPI Tree View control ?? dharmendran a Luggage? GPS? Comic books? Check out fitting gifts for grads at Yahoo! Search http://search.yahoo.com/search?fr

Re: [flexcoders] Locking Last row in a Flex Data Grid

2007-05-23 Thread Dharmendran A
Got It !!! Thanks :))) - Original Message From: Harish Sivaramakrishnan <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, May 23, 2007 5:46:37 PM Subject: Re: [flexcoders] Locking Last row in a Flex Data Grid http://blogs. adobe.com/ aharui/2007/ 04/dat

[flexcoders] Re: Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid

2007-05-23 Thread Troy A. Binford
in the latest > hotfix. > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Troy A. Binford > Sent: Wednesday, May 23, 2007 11:11 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Vertial Scroll Issue with Using Date Field &

[flexcoders] Re: Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid

2007-05-23 Thread Troy A. Binford
t; <[EMAIL PROTECTED]> wrote: > > Should be fixed in the latest hotfix. > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Troy A. Binford > Sent: Friday, May 18, 2007 10:15 AM > To: flexcoder

[flexcoders] Locking Last row in a Flex Data Grid

2007-05-23 Thread Dharmendran A
hi, Does anybody know how to lock a last row in a datagrid. I know that lockedRowCount can lock all the rows abouve the specified index, but I need to lock the last row in data grid in addition to header row. This last row will show the Total value for each column and it should be locked

Re: [flexcoders] Solutions FREE for Remote SharedObject

2007-05-22 Thread . m a r c o s a u g u s t o
Carlos, "teu empurrãozinho:" www.osflash.org/red5 java btw, there is a great project in PHP , but for remoting AMFPHP: http://amfphp.sf.net (v1.9 hav AMF3 support) On 5/22/07, Carlos Humberto <[EMAIL PROTECTED]> wrote: Hi All, Firstly excuse my terrible English. I'

[flexcoders] Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid

2007-05-18 Thread Troy A. Binford
Hi folks, This is a weird bug and I hope someone can help me with it. In my example code (DateRendererWTF.mxml being the main app and OMGRenderer.mxml being the renderer), everything initially scrolls fine. Then choose a date for any one of the datefields. Now move your mouse down and up so that

[flexcoders] Re: Unable to flush SharedObject

2007-05-17 Thread Troy A. Binford
After reinstalling flash, again. I still have the same problem. What is weird is that any sites that store shared objects work just fine. Apollo works fine too (because it's shared objects are stored in a different place). It's just weird. It is like it lost permissions to write to

[flexcoders] Re: Unable to flush SharedObject

2007-05-17 Thread Troy A. Binford
xyz\Application Data\Macromedia\Flash > Player\#SharedObjects\ > > Did you delete the directory completely? > Or only the directories inside it? > > Prayank > > --- In flexcoders@yahoogroups.com, "Troy A. Binford" > wrote: > > > > Yesterday

[flexcoders] Unable to flush SharedObject

2007-05-15 Thread Troy A. Binford
Yesterday I cleared out all the shared objects in my Application Data directory. Since then, I cannot write shared objects anymore. Did I perhaps delete a permission setting for flash to write to my local drive? I initially thought it may be a problem with a change in the application I am writing

[flexcoders] Re: TextInput Ignoring CursorManager.set()

2007-05-01 Thread Troy A. Binford
I got it working fine for a TextInput, but thanks for the advice. For the TextField, it was a combination of selectable=false and type="dynamic" that got rid of that pesky I-bar. What a load of work, but thanks for naming to properties for me! Thanks again for your help, Troy --- In

[flexcoders] Re: TextInput Ignoring CursorManager.set()

2007-04-30 Thread Troy A. Binford
Setting mouseChildren to false gives me the desirable effect, and I can have an event set and unset the boolean. But how about this same issue for a TextField? It does not have a mouseChildren property. Any advice? Thanks, Troy --- In flexcoders@yahoogroups.com, "Troy A. Binford&quo

[flexcoders] TextInput Ignoring CursorManager.set()

2007-04-30 Thread Troy A. Binford
Is there a way to stop a TextInput control from displaying its I-bar when I hover over it? I have previously set a custom cursor to display and I would like it to stay the same when it moves over a TextInput control. Thanks, Troy

[flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Troy A. Binford
ion 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

[flexcoders] Re: Alert Control Crashing App

2007-04-26 Thread Troy A. Binford
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" error. Thanks for the suggestion, but this didn't seem to fix my problem. Anyone else have any suggestions? It would be much appreciated. Thanks, Troy --

[flexcoders] Re: Alert Control Crashing App

2007-04-25 Thread Troy A. Binford
hing wrong with PopUpManager. The stack trace is large so I'd rather not post it. Thanks, Troy --- In flexcoders@yahoogroups.com, "Manish Jethani" <[EMAIL PROTECTED]> wrote: > > Perhaps you can post a working example somewhere or at least a stack > trace? That'

[flexcoders] Alert Control Crashing App

2007-04-24 Thread Troy A. Binford
This is a little complex, but I'll try to describe what's going on to the best of my ability. 1. Create a new Flex Application. 2. Add a Canvas or whatever and give it an id. 3. Create a new Custom Control that is a DataGrid. 4. Make the DataGrid editable and give it a dataProvider an

[flexcoders] Re: DataGrid: Field Change Event?

2007-04-24 Thread Troy A. Binford
ECTED]> wrote: > > You might be looking for the itemEditEnd event. > > On 4/24/07, Troy A. Binford <[EMAIL PROTECTED]> wrote: > > Is there a way I can listen for a change in a specific column's fields > > and analyze the changed field? > > > > I w

[flexcoders] Re: How to access Variable in Module from sub-component

2007-04-24 Thread Troy A. Binford
If I get your problem straight, you have an App that loads a module. Then that module loads subcomponents, and you want to access a variable that belongs to the module. Have you tried parentDocument.varname? --- In flexcoders@yahoogroups.com, "boy_trike" <[EMAIL PROTECTED]&g

[flexcoders] DataGrid: Field Change Event?

2007-04-24 Thread Troy A. Binford
Is there a way I can listen for a change in a specific column's fields and analyze the changed field? I was thinking about creating an Item Renderer and firing an event from there, but I don't really want to lose the default editing behavior of the field. The field's data is

Re: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread subeesh a
Thanks Tracy, That was a great help. Can u please explain in detail in how can i update the dataprovider Subeesh - Original Message From: Tracy Spratt <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 19 March, 2007 10:29:16 PM Subject: RE: [flexcoders] Check

[flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread subeesh a
Hi All, Can anyone help me with this If i place chek boxes in datagrid column by inline item renderer how can il put al the items in the datagrid in wich the check boxes are ticked to an array. Thanks Subeesh __ Yahoo

Re: [flexcoders] Data Grid and .NET web Service Issue

2007-03-12 Thread subeesh a
Thanks a lot Kelly, That really works!! - Original Message From: Kelly Birr <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 12 March, 2007 5:32:50 PM Subject: Re: [flexcoders] Data Grid and .NET web Service Issue This is what i do: var myCollection:ArrayColl

Re: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread . m a r c o s a u g u s t o
This should be on the TOP priority how I'm suppose to make my app offline without a DB? This is not a should have.. its a must have. sqlite_count+=1; xD -- . m a r c o sa u g u s t o ; .eu vim para confundir e não para explicar!. . . - Chacrinha

Re: [flexcoders] Re: .NET web service and Data Grid

2007-03-08 Thread subeesh a
I am using 2.0.1 - Original Message From: ben.clinkinbeard <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 8 March, 2007 7:42:32 PM Subject: [flexcoders] Re: .NET web service and Data Grid I believe this was a bug that was fixed in 2.0.1. Are you using 2.0.1?

[flexcoders] Data Grid and .NET web Service Issue

2007-03-08 Thread subeesh a
Hi All, I am using a .NET web service to populate datagrid. I am converting the result of the web service call to arraycollection and bind it to the datagrid. The issue is that when there is only one data in the database, the data grid is not showing up anything. I have analyzed the event

[flexcoders] .NET web service and Data Grid

2007-03-08 Thread subeesh a
Hi All, I am using a .NET web service to populate datagrid. I am converting the result of the web service call to arraycollection and bind it to the datagrid. The issue is that when there is only one data in the database, the data grid is not showing up anything. I have analyzed the event

[flexcoders] 0E-8 problem in Flex 1.5

2007-01-25 Thread Dharmendran A
Hi, Iam getting a strange problem in Flex Grid. The problem is 0E-8. I have a column ReceivedQuantity(decimal datatype) in the Database(SQL Server). This data is returned as a resultset using a web-service, converted in to a XML and assigned to flex grid. The bug is if i have a value 0

Re: [flexcoders] Debug version of FP9, into FireFox?

2006-12-30 Thread . m a r c o s a u g u s t o
to get the FP9 that comes with FlexBuilder, installed as the default Flash Player plug-in. What is the most straightforward method of accomplishing this? Thanks in advance for all your help, Mike -- . m a r c o sa u g u s t o ; .eu vim para confundir e não para explicar!. . . - Chacrinha

Re: [flexcoders] Re: Styling in Flex is officially ridiculous

2006-11-30 Thread . m a r c o s a u g u s t o
ROTECTED]> wrote: EDIT :: > In a way, the Button does have a borderStyle, it's the button's name property. supposed to be In a way, the ButtonSkin class does have a borderStyle, it's the button skin's name property assigned in the Button class. Peace, Mike On

Re: [flexcoders] How to change the Link icon at run time

2006-10-09 Thread Dharmendran A
  In the private scope of the class embed the icon like,   [Embed(source="icons/printDown.png")] var image_printDown :String;     In doPrint() event, assign the abouve icon to PrintLink like, PrintLink.icon = image_printDown;   hope this helps.   dharmendranAkash <[EMAIL PROTECTED]

RE: [flexcoders] Exception while using BindingUtils.bindProperty()

2006-08-08 Thread Rostislav A. Siryk
work with neither private nor protected properties. :) On 8/8/06, Rostislav A. Siryk <[EMAIL PROTECTED]com.ua> wrote: Sergey, Maybe you can fix it by providing default value in getter function? There's no such case in your code. So I think adding default case value like

RE: [flexcoders] Exception while using BindingUtils.bindProperty()

2006-08-08 Thread Rostislav A. Siryk
All! I have a class and RegExpValidator instance _validator inside it. When I try to bind _validator.expression with _expression_() getter inside the class, I get exception: ReferenceError: Error #1069: Property _expression_ not found on TextInputMessengerLabel and there is no default value. The

RE: [flexcoders] ICQ, Skype, Yahoo and other messengers id validation

2006-08-04 Thread Rostislav A. Siryk
Sergey,   As I understand, the only requirement for ICQ numbers is to be a number. Historically, ICQ numbers started from 1 and theoretically can have up to infinity digits (now the biggest is 10 but the ICQ community still grows).   Here’s discussion on it in parallel universe

[flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread a a
Hi all! I have just a simple question for starting develop Flex application with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can this be a good configuration for application developing or maybe it's better using JRun with jdk1.4?I hope that you understand my bad english :PT

Re: [flexcoders] Flex 2 addTreeNode

2006-02-06 Thread gunnar a reinseth
http://groups.yahoo.com/group/flexcoders/message/28320On 2/6/06, Brendan Meutzner < [EMAIL PROTECTED]> wrote: Hi, Can someone provide me with an example of addTreeNode for Flex 2?  I have a XML structure that is loaded into my Tree as the dataProvider. I would like to be able to clic

[flexcoders] Closable Panel? (flex2)

2006-02-03 Thread gunnar a reinseth
I know that mx.controls.Panel contains a 'closeButton' which is utilised in the subclass TitleWindow. I really would like to have this close button on panels as well, so i guess i have to subclass Panel to achieve this. However, I have no clue of how to make this button visible and p

[flexcoders] Slow ActionScript editor in Beta1?

2006-02-03 Thread gunnar a reinseth
I don't know if it's just my computer that has suddenly decided to become incredible slow, but when i'm coding AS3 files in the new Beta1 everything is so slow - especially with the autocomplete. All too often the editor just stops - i'm still typing, but the program hal

Re: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-03 Thread gunnar a reinseth
1. The docs should definately display both protected and public methods/properties - just the way it is! (and it's nice to see that the 'override' keyword is used as well)2. The MXML syntax summary is helpful to get a quick overview of the component - e.g. if i'm only look

Re: [flexcoders] Using MX framework without MXML (pure AS3.0)

2006-02-02 Thread gunnar a reinseth
AS3 in the new Flex 2.0 Beta 1. I don't know if this is possible since I read some post out there and it seems we need to create a minimun MXML in order to get it work. I already add the framework SWC to my test project: ${FRAMEWORKS}\framework.swc and trying something like : import mx

Re: [flexcoders] Re: Tree control in Flex 2 Beta 1

2006-02-02 Thread gunnar a reinseth
ant to read or change your data, you would do so on that data without going through the Tree control to do so. Here's a wordy example to add a leaf node:public function addTree() {                var collection:ICollectionView = ICollectionView(myTree.dataProvider);                var cursor:

[flexcoders] Tree control in Flex 2.0 Beta 1

2006-02-01 Thread gunnar a reinseth
Although the changes/fixes to the Tree control are much appreciated (e.g. not selecting the node when expanding it, and percentage width issues), I'm left wondering how you're supposed to add/remove child nodes to a node in the tree... When I use the new tree.getNodeDisplayedAt() m

[flexcoders] Tree control in Flex 2 Beta 1

2006-02-01 Thread gunnar a reinseth
Although the changes/fixes to the Tree control are much appreciated (e.g. not selecting the node when expanding it, and percentage width issues), I'm left wondering how you're supposed to add/remove child nodes to a node in the tree... When I use the new tree.getNodeDisplayedAt() m

Re: [flexcoders] Re: getting an image from java

2006-01-30 Thread gunnar a reinseth
A couple of useful resources the should help you get going:http://www.javaworld.com/javaworld/jw-05-2000/jw-0505-servlets.html http://today.java.net/pub/a/today/2004/04/22/images.htmlOn 1/30/06, sdhfhdgs < [EMAIL PROTECTED]> wrote: thanks for that. I've never dealt with mime t

[flexcoders] Children of container aren't created/laid out (flex2)

2006-01-27 Thread gunnar a reinseth
I have a simple component written in AS3 which extends VBox and contains a single child (a Label). In my Application mxml-file I create an instance of my component in a creationComplete-handler, but i dont add the component to the application (using addChild() )  before the user clicks a button

Re: [flexcoders] Collections...

2006-01-26 Thread gunnar a reinseth
Sorry, I of course meant getItemIndex - not getItemAt. It just puzzles me why there isn't a remove() method. It's a bit verbose to write array.removeItemAt( array.getItemIndex( item ) ) instead of array.remove(item). wouldn't you agree? On 1/26/06, Matt Chotin <[EMAIL

Re: [flexcoders] Stand-alone scrollbar possible?

2006-01-25 Thread gunnar a reinseth
You could use a container width scrollingpolicy set to "on", and have another box inside of that which is the same size as the actual content you wish to scroll.e.g.: ...On 1/25/06, Sreejith Unnikrishnan <[EMAIL PROTECTED]> wrote: Rather strange requirement that

[flexcoders] Collections...

2006-01-24 Thread gunnar a reinseth
hi,For the first time i've tried out the collections api in ActionScript 3, more specifically the IList interface. And it struck me: Where is the remove() method? There's certainly a removeItemAt() and a getItemAt() method. Is remove() just forgotten? --gunnar -- Flexcoders Ma

  1   2   >