[flexcoders] WebService in Firefox not working properly

2006-11-28 Thread Daniel
Im using a very simple Cairngorm example found in Internet. I attached it to a Web Service that I generated in Java (which is working perfectly) Surprisingly when I run my application in Firefox, it just doesn't work but in Internet Explorer works just fine. The error Im getting is the following:

[flexcoders] Re: Announcement: TorontoFlex Users Group

2006-11-30 Thread Daniel
Hi! I'd like to know how can we be an Adobe Certified User Group. We're planning on creating a similar group like yours with a forum about Flex for developers from Venezuela. Any suggestion? Thanks in advance!. --- In flexcoders@yahoogroups.com, Oliver Merk [EMAIL PROTECTED] wrote: I'd like

[flexcoders] Re: Announcement: TorontoFlex Users Group

2006-11-30 Thread Daniel
Thank you! --- In flexcoders@yahoogroups.com, Oliver Merk [EMAIL PROTECTED] wrote: Visit http://www.adobe.com/cfusion/usergroups/index.cfm and you'll see links for starting your own group. Best of luck! Oliver --- In flexcoders@yahoogroups.com, Daniel danboh@ wrote: Hi! I'd

[flexcoders] getDefinitionByName

2006-12-08 Thread Daniel
= Daniel; var nickname:String = danboh; var ClassName:String = AddClient var ClassReference : Class = getDefinitionByName(com.client.+ClassName) as Class; var instance : Object = new ClassReference(name, nickname); Any suggestions??? Thanks for your help!

[flexcoders] Re: getDefinitionByName

2006-12-08 Thread Daniel
Nevermind, for some reason it didnt work in the past, but now its working perfectly. Sweet! --- In flexcoders@yahoogroups.com, Daniel [EMAIL PROTECTED] wrote: Im using the method getDefinitionByName so I can get instances of classes which I only know their name. Now, this classes always

[flexcoders] Re: Cairngorm createPopUp in a command

2006-12-14 Thread Daniel
Great solutions, however... What if I use Cairngorm as a Library. This means that it's outside my Application project and it wouldn't be possible to instance in the Command a TitleWindow located in the project. Any ideas? Thanks in advance! --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL

[flexcoders] Re: Instantiating Class Dynamically

2006-12-14 Thread Daniel
Hi Amol, Try creating an instance of the class before you load your XML, something like: var aux : MyClass; and then you do: try { var dynamicClass: String = com.apps.MyClass; var classRef:Class = flash.utils. getDefinitionByN ame(dynamicClass as Class; var myClass:* = new classRef(); }

[flexcoders] Content Change

2006-12-18 Thread Daniel
Hi All! This time I'm having problems with an object that I can't actually bind to because it is updated with a Web Service and it takes a while to get the information some other object needs, due to the asynchronous call. Is there a way to add an listener to this object that as soon as it

[flexcoders] Re: Idle Timeout

2006-12-18 Thread Daniel
Have you come with any solution yet? Im having the same need. --- In flexcoders@yahoogroups.com, app.developer [EMAIL PROTECTED] wrote: Anyone dealt with a need to watch for an idle timeout for a user in a flex/flash application? I need something that will watch for key stroke and mouse

[flexcoders] Re: Content Change

2006-12-20 Thread Daniel
kind of problems do you see? Cheers, Ralf. On 12/18/06, Daniel [EMAIL PROTECTED] wrote: Hi All! This time I'm having problems with an object that I can't actually bind to because it is updated with a Web Service and it takes a while to get the information some other object needs

[flexcoders] Re: Copy Object

2006-12-21 Thread Daniel
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Thursday, December 21, 2006 1:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Copy Object Hi all! Is there a way to copy the content of an object into another object without losing the reference of the second

[flexcoders] Componentes positioning

2007-08-30 Thread Daniel
Hello... im kind of a noob in flex... I'm working on an application that have a tilelist with a bunch of items renderers in it. I'm trying to show a popup with some information when the event MOUSE_OVER is dispatched from every item renderer, but the information to be shown depends on the item

[flexcoders] Re: Componentes positioning

2007-08-31 Thread Daniel
God... That was so easy... Thanx a lot man... --- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: Daniel wrote: Hello... im kind of a noob in flex... I'm working on an application that have a tilelist with a bunch of items renderers in it. I'm trying to show a popup

[flexcoders] How to use Image encoders?

2007-08-31 Thread Daniel
Hello people... I'm trying to take a snapshot of a DisplayObject and set a defined minimized size of that snapshot, but when I mess with it's size it becomes all blurry... Here it's how I take the snapshot: private function takeSnapshot(comp:DisplayObject):Image {

[flexcoders] Multiple Drag and Drop handlers

2007-09-06 Thread Daniel
Hi coders, I'm trying to implement multiple dragdrop components in the same view, each with a different drop container. The problem is that every container have an dropHandler, and when I'm dragging the first component over the second component's container the drop action is enabled. Of course I

[flexcoders] Parent and owner of the component are missing

2007-09-10 Thread Daniel
Hey guys, I created an abstract class (or a simulation of an abstract class) that extends from Panel, called AbstractPanel. This class draws and layout the max, min and close buttons on top of the panel. This class also have the implementation for dragdrop and resize for the component. I have

[flexcoders] Remove default items in ContextMenu

2007-09-13 Thread Daniel
Hey guys, Does anyone know how to remove the default items from the context menu in my flex application? For default items I mean Print, Configuration and About items. I really need this.. Thanx a lot fellas, DaNooB

[flexcoders] Re: Remove default items in ContextMenu

2007-09-14 Thread Daniel
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Thursday, September 13, 2007 7:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Remove default items in ContextMenu Hey guys, Does anyone know how to remove the default items from

[flexcoders] Real size of the components

2007-09-20 Thread Daniel
Hey guys... I'm setting the size of a panel through the percentWidth property, but after I do that I need to know the real width of that panel... I ask for the width and measuredWidth of the component, but it doesn't give me it's real size. I can't ask for the parents width either, cause it's

[flexcoders] Real size of components

2007-09-21 Thread Daniel
Hey guys... I'm setting the size of a panel through the percentWidth property, but when I ask for the width of the component it doesn't give me the real size... How can I know the real size when I set width and height through percentage? Thanx, DaNooB.

[flexcoders] Re: Real size of components

2007-09-23 Thread Daniel
--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , ben.clinkinbeard ben.clinkinbeard@ wrote: measuredWidth and measuredHeight I think. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Daniel danielterraza@ wrote: Hey guys... I'm setting

[flexcoders] Re: Real size of components

2007-09-24 Thread Daniel
@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: I think you need to call validateNow() on the component's parent. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Sunday, September 23, 2007 11:23 AM

[flexcoders] ComboBox Multiple Selection

2006-09-05 Thread Daniel
Im trying to create a multiple-selection combobox. I'll appreciate any help you can give. Thanks in advance. Daniel -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Dynamic assign itemRenderer to DataGridColumn

2006-09-06 Thread Daniel
Hello! This time Im trying to assing an itemRenderer to a DataGridColumn using this: -- var columna:DataGridColumn = new DataGridColumn(); columna.headerText = something columna.dataField = something else columna.editable = true; columna.rendererIsEditor = true; var aux:TextInput = new

[flexcoders] Re: Dynamic assign itemRenderer to DataGridColumn

2006-09-07 Thread Daniel
, bhaq1972 [EMAIL PROTECTED] wrote: var aux:TextInput = new TextInput(); columna.itemRenderer = aux as IFactory; can you do this instead columna.itemRenderer = new ClassFactory(TextInput); --- In flexcoders@yahoogroups.com, Daniel danboh@ wrote

[flexcoders] Re: Dynamic assign itemRenderer to DataGridColumn

2006-09-07 Thread Daniel
, bhaq1972 [EMAIL PROTECTED] wrote: var aux:TextInput = new TextInput(); columna.itemRenderer = aux as IFactory; can you do this instead columna.itemRenderer = new ClassFactory(TextInput); --- In flexcoders@yahoogroups.com, Daniel danboh@ wrote

[flexcoders] Loading Language

2006-09-07 Thread Daniel
Good day I was wondering if it's possible to change the application Loading and Initializing image language or text. Thanks. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Dynamic assign itemRenderer to DataGridColumn

2006-09-08 Thread Daniel
... }; columna.itemRenderer = textbox; columna.rendererIsEditor=true; etc or you could always put write something here... into a global variable; create a myTextInput component which assigns the global variable string during the intialize event . --- In flexcoders@yahoogroups.com, Daniel

[flexcoders] Handling Login

2006-09-10 Thread Daniel
Im trying to create a Login screen where I can save a user's session information, so I can retrieve that later and use it for some validations. Is there a way that I can save this info as a session that last even when the user closes the browser, and until he signs out? How would you recommend it

[flexcoders] Clone / Copy Array

2006-09-13 Thread Daniel
Good Day all! I need to clone or copy the content of an Array, not to keep reference to the array neither the to objects inside, a complete new array but with the same source as the other. Any ideas? Thanks!. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Clone / Copy Array

2006-09-13 Thread Daniel
and associative arrays, as shown in the following code: import flash.utils.ByteArray; function clone(source:Object):*{ var myBA:ByteArray = new ByteArray(); myBA.writeObject(source); myBA.position = 0; return(myBA.readObject()); } --- In flexcoders@yahoogroups.com, Daniel

[flexcoders] Re: SWFLoader how to access host application

2006-09-14 Thread Daniel
I had the same problem and I solved it using Application.application.variable in the swf application. Dont know if this works for functions as well. Greetings --- In flexcoders@yahoogroups.com, kosir.milan [EMAIL PROTECTED] wrote: Hi all, I'm posting this again after first unseccesfull post.

[flexcoders] Object of a specified type

2006-09-18 Thread Daniel
How can I konw if an object is an instance of a specified type, for example String. Thx! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To

[flexcoders] Re: Object of a specified type

2006-09-23 Thread Daniel
: var str:String trace(typeof(str) : prints string Hope this helps Harish On 9/18/06, Daniel [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: How can I konw if an object is an instance of a specified type, for example String. Thx! -- Flexcoders Mailing List FAQ: http

[flexcoders] Re: Flex 2 y DataGrid

2006-10-02 Thread Daniel
Hola! Si estás usando CellRenderer dentro de las columnas de tu dataGrid, este código te puede servir: public function agregarFila(dataGrid:DataGrid):void{ var objeto:Object = new Object(); ArrayCollection(dataGrid.dataProvider).addItem(objeto); } --- In flexcoders@yahoogroups.com,

[flexcoders] LinkBar ViewStack Problem

2006-10-17 Thread Daniel
Hello all! I've been having this particular problem, I have 2 canvas inside a viewStack, lest say something like: mx:ViewStack id=viewStack width=100% height=100% mx:Canvas id=list label=List mx:DataGrid doubleClickEnabled=true

[flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Daniel
. You have a couple of options. The simplest, is just bind the text of the input to the value you want to store there. mx:TextInput text={list.selectedItem.somevalue}/ There are other options, but that should get you going. On 10/17/06, Daniel [EMAIL PROTECTED] wrote: Hello all

[flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Daniel
:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Tuesday, October 17, 2006 11:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] LinkBar ViewStack Problem Hello all! I've been having this particular problem, I have 2 canvas inside a viewStack, lest say something like: mx:ViewStack

[flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Daniel
the creation Policy to 'all', but that can get intensive as your app grows. On 10/17/06, Daniel [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Clint Tredway grumpee@ wrote: Thanks, binding is a solution. However, I keep thinking how

[flexcoders] DisplayObjects Layout problem

2007-11-02 Thread Daniel
Hey guys, I'm working in an application where I need to layout a bunch of panels called 'windows'. The container of this panels is another panel called 'panelContainer'. I need to layout the windows horizontally, vertically or absolute, depending of the button pressed byt the user. Of course I

[flexcoders] setChildIndex issue

2007-11-02 Thread Daniel
Hey guys... I'm working in a application were I need to let the user set the order of 3 panels using drag and drop. These panels are inside a container. The children of the container are another container that I don't need to do any of this (always in the position 0 of the children array) and the

[flexcoders] Re: DisplayObjects Layout problem

2007-11-07 Thread Daniel
Hey Daniel, the validateDisplayList method it's not found... and the validateSize doesn't work... Any others ideas? --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: Components are resized by their parents, so even if an object is updated/measured

[flexcoders] Re: REALLY wierd compiler problem, honest this is what happened!

2007-12-15 Thread Daniel
Hey man... I had the same error once, and it was my default SDK just stopped working... I changed the default SDK and it builded correctly... Greetings, DaN --- In flexcoders@yahoogroups.com, Ian Thomas [EMAIL PROTECTED] wrote: I have had a similar (not compiler-related) problem on Vista

[flexcoders] Rotating Tabs

2007-12-29 Thread Daniel
Hey guys... I'm trying to apply the distortion effects cube to a Tab Navigator, but the tab is displayed in the background (like in a modal mode) before the effect ends... So I guess I need to code a RotatingTabNavigator component, where I need to override the method that change the

[flexcoders] Who to contain a UIComponent?

2008-01-23 Thread Daniel
Hey guys... I'm working on a component that extends from IUComponent. I need to set it as a child of a container, so that when the size of the UIComponent changes scrollbars will appear in the container. But Flex always draws the UIComponent on top of the container. What container should I

[flexcoders] Problem dropping items on a Canvas

2008-04-05 Thread Daniel
Hey guys! I'm trying to drop some items (treeItems to be specific) in a Canvas, but it seems the DRAG_ENTER event is not being dispatched, so the listener in the Canvas can't accept the drag. This is fixed when I set a color to the Canvas, but I need the Canvas to be transparent ( at least to

[flexcoders] Re: Problem dropping items on a Canvas

2008-04-07 Thread Daniel
thanks man... but if I set alpha to 0, the items I drop in the Container are invisible ( also have alpha 0 ). any other ideas? --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: set the color then alpha=0; - Original Message From: Daniel [EMAIL PROTECTED

[flexcoders] Modules the way to go?

2008-05-05 Thread Daniel
Hey guys, Im actually working on an application that controls several Flex made apps. It's like a desktop manager application that manages several widgets. The applications running in the desktop manager are modules set on the server, that are loaded and unloaded per user request, but when a user

[flexcoders] Re: Modules the way to go?

2008-05-06 Thread Daniel
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Monday, May 05, 2008 8:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Modules the way to go? Hey guys, Im actually working on an application

[flexcoders] Re: Modules the way to go?

2008-05-06 Thread Daniel
is.helpdesk@ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: 06 May 2008 07:22 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Modules the way to go? That's the problem... I won't develop

[flexcoders] Re: Modules the way to go?

2008-05-08 Thread Daniel
and do not necessarily represent those of INPS or any of its affiliates. If you are not the intended recipient please contact [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: 06 May 2008 22:15

[flexcoders] Re: Modules the way to go?

2008-05-14 Thread Daniel
Mmm You guys are right... Every reference to the module from the Module Handler Application is removed on unload, but every module have a ton of internal bindings that are not being unwatched... I'm almost certain that's the problem... We'll try to fix that as soon as possible... Thanx a

[flexcoders] Changing parents throught Drag Drop

2008-05-17 Thread Daniel
Hey guys, Here's the scenario... I have a list of things displayed in a Tree. You can drag one of them, and drop it in a Container. The Container is in charge of creating what the dragged object specifies, generally an UIComponent. If the object is dropped inside a Container, it succesfully sets

[flexcoders] TabNavigator children

2008-05-17 Thread Daniel
Hey guys, Maybe this is easy, but I just can't figure it out! I have a TabNavigator with a few tabs. At some point at run time I want to dispose the TabNavigator and draw the containers in its tabs. The problem is when I get the TabNavigator children and draw them on screen it draws only one tab

[flexcoders] Reading Inspectable tags in AS

2008-06-20 Thread Daniel
Hey guys, I'm trying read the Inspectable metadata tag of the properties of certain components in run time. The idea is when the user clicks a component, the application shows all the variables with Inspectable tags, and the information written in it. I already tried the flash.utils.describeType

[flexcoders] Re: Reading Inspectable tags in AS - SOLVED

2008-06-20 Thread Daniel
That's it guys! Thanx! --- In flexcoders@yahoogroups.com, Daniel [EMAIL PROTECTED] wrote: Hey guys, I'm trying read the Inspectable metadata tag of the properties of certain components in run time. The idea is when the user clicks a component, the application shows all the variables

[flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Daniel
200MB? javaw.exe can take up to 700MB when running builder for a couple of hours... That's a lot of memory... --- In flexcoders@yahoogroups.com, Gus [EMAIL PROTECTED] wrote: I don't think 200meg is a lot these days is it ? Well I think it depends on how many projects, libraries, etc you

[flexcoders] Change shape form with graphics effect!

2008-08-17 Thread Daniel
Hey guys... I made a component that extends from UIComponent and have an item renderer. The renderer have two states, an open state and a closed state. The start state is closed, but when the users click on the renderer it changes to the openedState which is bigger. The container of that item

[flexcoders] AIR Application - Positioning.

2008-12-09 Thread Daniel
Hi, I have a requirement for an application, it provides extensions based on a name entry box. The client would like it to appear as a system tray icon, and when you click it, the application opens above it. When you find results the application window stretches upwards to show the results.

[flexcoders] Updating Help!!!

2012-04-16 Thread Daniel
Hi everyone I'm new to flex and I've been trying to creat a program but i'm stuck on something simple and i'm not sure what im doing wrong please help I'm conecting flex to php using the zen service, and i can load the data on the form with no problem, following the adobe tutorial i'm trying to

[flexcoders] Re: An interesting problem with models....

2005-08-11 Thread Daniel Harfleet
/asdocs_en/mx/controls/listclasses/DataProvider.html hope this helps daniel --- In flexcoders@yahoogroups.com, Tariq Ahmed [EMAIL PROTECTED] wrote: Hi Mika, thanks! That lead me down the right track. Your first suggestion is basically the solution. Thanks! Mika Kiljunen wrote

[flexcoders] Re: help.. passing arguments to a method using remoteobject

2005-08-11 Thread Daniel Harfleet
Amit, can you give the list an idea of what the error actually says ? Are you also getting errors on your J2EE server ? If so what are these ? Have you switched on the gateway debug ? faq snip If your flex server is installed locally we suggest enabling server side debug level logging in

[flexcoders] bug with empty string replaceText() ?

2005-08-29 Thread daniel s.
Does anyone know if the issue explained in the first comment here was ever handled? http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/co mmon/html/wwhelp.htm?context=Flash_MX_2004file=1806.html I'm experiencing the same issue, I have a TextArea and when i try a

[flexcoders] Re: CAIRNGORM 0.99 QUESTION

2005-08-30 Thread Daniel Harfleet
Hi, you would need to be carefull, because the command instances are created once only at creation of the FrontController. By creating a delegate instance, you are using the ServiceLocator to look up the remote object, however, if your service locator hasn't been initialized yet, you may get a

[flexcoders] Re: Cairngorm question

2005-08-30 Thread Daniel Harfleet
Alberto, this seems a fair approach to me, you may also want to include some logic to disconnect from the flash comm server when you know you are not interested in receiving updates and maybe even a 'recovery plan' for the service should the connection to the FCS be broken. rgds dan --- In

[flexcoders] Re: Does Flex have equivalent of JSTL c:if?

2005-09-01 Thread Daniel Harfleet
Hi, if it is always the case that you only have to ouput 1,2 or 3 input fields, you could create a custom component which would be initialized by your object in the dataprovider, it could contain the logic to decide which 'view' to show. Inside your custom component, you can just make TextInputs

[flexcoders] Re: I have an overloaded Java method, How can I call an specific method using Re

2005-09-09 Thread Daniel Harfleet
if you were to map the java params to action script params, what would the params still be different and if so, you may be able to work out what param types you need to supply see the 'Converting data from Java to ActionScript' part of the live docs --- In flexcoders@yahoogroups.com, [EMAIL

[flexcoders] Re: not-explicitly-set VO attribute being lost when passed to CFC

2005-09-09 Thread Daniel Harfleet
can we see the source of you ListVO.as please ? --- In flexcoders@yahoogroups.com, a8i364io [EMAIL PROTECTED] wrote: OK I think this is really weird. I've been making good progress in Cairngorm'ing an app I built but I've run across a problem. I've got this thingy that updates a database

[flexcoders] Error: Cannot invoke method

2005-09-15 Thread Daniel Romero
Guys I don't know what else to do with this error. The problem is that flex do not recognize the mapping between a VO Client Class and the Server VO. In fact I get the following message using the Alert PopUp Window: The expected argument types are (vo.VOEmpleado) but the supplied types were

[flexcoders] Re: Error: Cannot invoke method

2005-09-15 Thread Daniel Romero
. Regards Daniel --- In flexcoders@yahoogroups.com, Daniel Romero [EMAIL PROTECTED] wrote: Guys I don't know what else to do with this error. The problem is that flex do not recognize the mapping between a VO Client Class and the Server VO. In fact I get the following message using the Alert PopUp

[flexcoders] Re: Trying to compile with mxmlc - can't find JVM

2005-09-21 Thread Daniel Harfleet
Hi, this may help you . ?xml version=1.0? project name=Cairngorm default=compile basedir=.. description This build script wraps compc /description property name=bin location=bin / property name=generated_manifest value=cairngorm-manifest.xml/

[flexcoders] Re: Asynchronous notification

2005-10-05 Thread Daniel Harfleet
You should maybe also take a look at Flash Communication Server. FCS allows you to push data to ActionScript clients using RTMP; you can then just implement some kind of 'Listener' class in you client which receives notifications of data changes. You could implement your FCS code in such a way

[flexcoders] Re: hi, i am new to flex, can any one help me how so go with it ?

2005-10-11 Thread Daniel Harfleet
http://www.macromedia.com/devnet/flex/ http://livedocs.macromedia.com/flex/15/ http://groups.yahoo.com/group/flexcoders/message/22504 http://www.amazon.com/exec/obidos/tg/detail/-/0321255666/qid=1129025361/sr=2-1/ref=pd_bbs_b_2_1/002-5980796-8408032?v=glances=books

[flexcoders] Code-only Flex apps

2005-11-03 Thread Daniel Cascais
be, for which I would also like to hear comments besides the yes/no answer. Thanks, Daniel Cascais Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital divide today! http://us.click.yahoo.com/cd_AJB/QnQLAA

[flexcoders] Re: Code-only Flex apps

2005-11-03 Thread Daniel Cascais
increases the user base. But why force it on developers that can handle just as good or maybe better without it (for whatever reason)? -- Daniel Cascais Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet

Re: [flexcoders] Flex2: pricing info

2005-11-03 Thread Daniel Cascais
Hola, I've heard it is going to be under $1000. Daniel Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM

Re: [flexcoders] Flex2: pricing info

2005-11-03 Thread Daniel Cascais
That is Flex Builder... On 11/3/05, Daniel Cascais [EMAIL PROTECTED] wrote: Hola, I've heard it is going to be under $1000. Daniel Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http

Re: [flexcoders] Re: Code-only Flex apps

2005-11-04 Thread Daniel Cascais
with the Flex Framework (and mxml). Now off to get used to a new development paradigm. -- Daniel Cascais Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital divide today! http://us.click.yahoo.com/cd_AJB/QnQLAA

Re: [flexcoders] Code-only Flex apps

2005-11-10 Thread Daniel Cascais
Manish, Thanks for the info. I'll play arround with it, just to get the grip on things. Daniel You'll need some setup MXML, like so: Application initialize=main() Script source=main_script.as / /Application In your main_script.as you write your main function (which

[flexcoders] Flex Charting Components 2 distribution

2005-11-14 Thread Daniel Cascais
Will Flex Builder 2 include the Flex Charting Components 2 or will these be sold separately? If they are to be sold separately, could anyone point me to any [pricing] info regarding this? Thanks, -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 Yahoo

Re: [flexcoders] Flex Charting Components 2 distribution

2005-11-14 Thread Daniel Cascais
Thanks for the info, Matt. On 11/14/05, Matt Chotin [EMAIL PROTECTED] wrote: I think the plan at the moment is separately, pricing hasn't been announced. Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 Yahoo! Groups Sponsor ~-- Fair

Re: [flexcoders] Flex2: version control plugin

2006-03-25 Thread Daniel Nelson
I use http://sourceforge.net/projects/vssplugin/for eclipse. It works pretty good. On 3/24/06, dos dedos [EMAIL PROTECTED] wrote: Is there the eclipse plugin for single-user version control (with diff, label, branch, merge, etc)? New Yahoo! Messenger with Voice. Call regular phones from

[flexcoders] [OT] Collaborative App demo

2006-04-21 Thread Daniel Cascais
Can anyone remember a RIA/Flex demo of a collaborative application that involved a nice agent (video stream) helping the customer out with a problem, live. If you have the link to the demo or the actual SWF, please let me know. Thanks, Daniel -- Flexcoders Mailing List FAQ: http

Re: [flexcoders] Re: [OT] Collaborative App demo

2006-04-21 Thread Daniel Cascais
Hi Doug, Yeah, what I'm after is an actual demo, rather than a sample application. Thanks, Daniel On 4/21/06, Doug Lowder [EMAIL PROTECTED] wrote: I should add the below link is to a tutorial with sample code, not a demo or actual SWF. --- In flexcoders@yahoogroups.com, Doug Lowder

Re: [flexcoders] Re: Flex framework: ARP, Cairngorm... Which to use?

2006-04-21 Thread Daniel Cascais
Flex 2 (beta x) -- Cairngorm 2 (Alpha) -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

Re: [flexcoders] Re: [OT] Collaborative App demo

2006-04-21 Thread Daniel Cascais
Never mind... found it. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To

Re: [flexcoders] Beta 3 - Custom Java Adapter

2006-05-02 Thread Daniel Cascais
Is Flex 2 Beta 3 out? It doesn't look like so in Adobe Labs. On 5/2/06, Jim Schneider [EMAIL PROTECTED] wrote: With beta 3, this is now broken again. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Beta 3 - Custom Java Adapter

2006-05-02 Thread Daniel Cascais
Heheh... not really... On 5/2/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: http://mmbeta.macromedia.com/ does that work for you? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Security WebService Flex 2.0

2006-05-03 Thread Franca Daniel
I have a Problem, when i use a xml WebService like this : mx:WebService id=employeeWS wsdl=http://localhost/EProcPrimariaWS/Service1.asmx?wsdl showBusyCursor=true fault=Alerted(event.fault.faultstring) it work in local machine, but when i try to use that in a remote machine i got this

[flexcoders] Drag and drop DataGrid to Tree

2006-05-06 Thread Franca Daniel
Hey you all, i am trying build a application where i need drag a item from DataGrid to drop in a Tree. Anyone have a idea how to do that ? Please help me ,Thank you! ___ Abra sua conta no Yahoo! Mail: 1GB de espaço, alertas de

[flexcoders] Current Node in tree when drop

2006-05-09 Thread Franca Daniel
How can i get current node of the Tree when i drop a element from grid to that Tree ? Help please, Thank you! ___ Navegue com o Yahoo! Acesso Grátis, assista aos jogos do Brasil na Copa e ganhe prêmios de hora em hora!

RE: [flexcoders] Current Node in tree when drop

2006-05-09 Thread Franca Daniel
called calculateDropIndex() which (according to the docs) you should be able to call from your dragOver and dragDrop handlers to work out the drop location within the tree. Paul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Franca Daniel Sent

[flexcoders] How to use flash movies in mxml flex files ?

2006-05-10 Thread Franca Daniel
i need to put a flash movie inside a mxml page, how cani do that ? thank you! ___ Abra sua conta no Yahoo! Mail: 1GB de espaço, alertas de e-mail no celular e anti-spam realmente eficaz. http://br.info.mail.yahoo.com/ --

[flexcoders] MenuItem with icon

2006-05-10 Thread Franca Daniel
How can i put icon on menuitem ? i have trying this : mx:XML menuitem label=Option menuitem label= A1 data=""> icon=images/ico.png/ menuitem label=A2 data="" / menuitem label=A3 data="" / /menuitem /mx:XML but does not work... HELP PLEASE!

[flexcoders] Re: Cairngorm demo shop and user not found

2006-05-11 Thread Daniel Harfleet
Hi Tom, this is definately to do with the location of the database files for HSQLDB, can I suggest you put the full path of the hsqldb database files into store.cfg or to start with hardcode the full path into the java source in HSQLDBConnectionManager dan --- In flexcoders@yahoogroups.com,

[flexcoders] getting Date from webservices

2006-05-15 Thread Franca Daniel
i wrote a webservice using c# and it return a DateTime object. When i use it in flex the date looks like a stranger number, anyone knows how to convert it to a Date object in flex ? thank you! Daniel ___ Navegue com o Yahoo! Acesso

[flexcoders] Repeater Creationcomplete

2006-05-18 Thread Franca Daniel
Hi All, I am trying to set a dataprovider to a Repeater object on Createcomplete but Repeater dont call it, Anyone knows why ? Thank you! ___ Abra sua conta no Yahoo! Mail: 1GB de espaço, alertas de e-mail no celular e

RE: [flexcoders] Re: ACcess SOAP fault code

2006-07-12 Thread Daniel Tuppeny
!= 200){ // fix response code for flex string sReferrer = Request.UrlReferrer.AbsolutePath.ToLower(); if (sReferrer.EndsWith(".swf")) Response.StatusCode = 200; }} - Kelly From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel TuppenySent: Monday, July 10, 2006

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Daniel Nelson
Maybe this old post will help See: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19784.html Hope it helps. -Dan __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Scrollbar bug (with sample code)

2006-07-14 Thread Daniel Tuppeny
Is there a public bug tracker for Flex now? I want to find out of this is truly a bug (and I have to bodge it), or I'm just doing something silly. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel TuppenySent: 30 June 2006 14:55To: flexcoders

  1   2   3   4   5   6   7   8   9   10   >