[flexcoders] Autocomplete textinput with remote dataprovider

2007-10-25 Thread Giro
Anybody know where I can find an autocomplete textinput component, that use a remote dataprovider for search suggested information? Thk. Giro.

[flexcoders] Escaping data-

2007-10-25 Thread candysmate
Currently I use Janus classes to communicate between Flex and MS SQL Server 2005. It works great. I now need to handle the escaping of user input so that typing in, say, 'Valentine's Day' doesn't break my sql string. Data from the server is returned either as an object or an arraycollection. Any

[flexcoders] changing endpoint for remoting service

2007-10-25 Thread Giles Roadnight
Hi All I am using a renaun:RemoteObjectAMF0 service to communicate with the back end. At the moment I am building an administration tool that will be used for managing the data and fixing problems. The login box has a drop down to select which server you want to log onto. This works fine but if

[flexcoders] Re: Number of lines in mx:text/

2007-10-25 Thread kramus0
Yes I thought so as well, but this doesn't seems to work. Below you can find my code example. So what I see on the screen are the first two lines of text with the following content: This is the fist line of text. And this is the second line. But the trace log (even after

[flexcoders] Can't use an undefined conditional anymore?

2007-10-25 Thread tim
Hi, I used to do conditionals based on undefined all the time in AS 2. For example I would do a data look up and then cast the results to a class called foo. Then I could do a conditional if (foo == undefined) // go and do whatever as the data ovbiously doesn't exist or has not been recieved.

Re: [flexcoders] Can't use an undefined conditional anymore?

2007-10-25 Thread Johannes Nel
if(foo) will give you the same result. basically if the instance is there it'll work else it won't On 10/25/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I used to do conditionals based on undefined all the time in AS 2. For example I would do a data look up and then cast the results

Re: [flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread Tom Chiverton
On Wednesday 24 Oct 2007, [EMAIL PROTECTED] wrote: This is actually a major pet peeve of mine and I find it frustrating to see people post small messages that have multiple copies of the Yahoo Groups footer, large corporate confidentiality sigs, extraneous material or all of the above in some

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-25 Thread Tom Chiverton
On Wednesday 24 Oct 2007, [EMAIL PROTECTED] wrote: Hope Joe doesn't mind :) Cheers Sean. A good read, so it was worth you doing :-) -- Tom Chiverton Helping to challengingly e-enable professional infomediaries on: http://thefalken.livejournal.com

Re: [flexcoders] changing endpoint for remoting service

2007-10-25 Thread Tom Chiverton
On Thursday 25 Oct 2007, [EMAIL PROTECTED] wrote: Is there anyway around this? The only option at the moment is ti refresh the page if you try to log into the wrong server to begin with. How are you defining the end point URL ? -- Tom Chiverton Helping to competently orchestrate B2B

Re: [flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread Tom Chiverton
On Wednesday 24 Oct 2007, [EMAIL PROTECTED] wrote: ), is there anything you can do about that mammoth disclaimer of yours. Maybe you could look in the archives. -- Tom Chiverton Helping to enormously disintermediate robust interfaces on: http://thefalken.livejournal.com

[flexcoders] ModuleManager.getAssociatedFactory returning wrong result ?

2007-10-25 Thread Dennis van Nooij
Hi, I'm trying to split up my application into modules but ran into this weird behaviour. According to the docs getAssociatedFactory should return See if the referenced object is associated with (or, in the managed ApplicationDomain of) a known IFlexModuleFactory implementation The thing is

[flexcoders] webservice inheritance problem

2007-10-25 Thread Hans
Hi list, I use a webservice method that needs a collection of a certain type. This type is an abstract class of which 2 implementations exist. If I call this method and pass in an arraycollection with 2 instances (one for each implementation), it occurs that the SOAP request being created ignores

Re: [flexcoders] changing endpoint for remoting service

2007-10-25 Thread Giles Roadnight
The end point url is a bindable property in the model. This is bound to the service endpoint property. I have traced the end point of the service when I have changed to another server and it is the new correct endpoint but Flex still seems to be talking to the old url. On 10/25/07, Tom Chiverton

Re: [flexcoders] Escaping data-

2007-10-25 Thread Peeyush Tuli
I dont know anything about Janus but do you just want to append escape characters to reserved ones in the user input so that your sql query remains valid? If yes then you can do that either on server or client side by calling a string manipulation function like replace in AS3. Thanks, Peeyush

Re: [flexcoders] Autocomplete textinput with remote dataprovider

2007-10-25 Thread Bart Wttewaall
Here you find the Adobe AutoComplete Input component: http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1047291 I suggest you bind its dataprovider to the result of a service that requests data using the value of the component as the argument. Good luck! 2007/10/25,

Re: [flexcoders] Can't use an undefined conditional anymore?

2007-10-25 Thread tim
Nice - much more elegant - thanks alot if(foo) will give you the same result. basically if the instance is there it'll work else it won't On 10/25/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I used to do conditionals based on undefined all the time in AS 2. For example I would

[flexcoders] really simple xml problem (I hope)

2007-10-25 Thread Giles Roadnight
This is a seemingly very simple problem but so far I have only come up with a complex solution. I have the following xml snippet: properties property name=width type=real units=mm84/property property name=height type=real units=mm10.69204152249135/property /properties How do I change the value

[flexcoders] Problem in showing second series DataTips

2007-10-25 Thread girish_ok
Hi, I have created a chart with 2 series 1st is columnseries 2nd lineseries and i have written code for showing datatips but the problem is the datatip is showing for only 1series either columnseries or lineseries. I want to show both series DataTip on mouseover how can i achieve this. Just

[flexcoders] Copying xml node attributes

2007-10-25 Thread Giles Roadnight
What's the easiest way to copy a load of attributes from one XML node to another? I tried looping over the attributes() array but that didn't seem to work. Thanks

Re: [flexcoders] changing endpoint for remoting service

2007-10-25 Thread Tom Chiverton
On Thursday 25 Oct 2007, [EMAIL PROTECTED] wrote: I have traced the end point of the service when I have changed to another server and it is the new correct endpoint but Flex still seems to be talking to the old url. It all depends on the detail of how you are storing, updating and using the

Re: [flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread hank williams
On 10/25/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 24 Oct 2007, [EMAIL PROTECTED] wrote: ), is there anything you can do about that mammoth disclaimer of yours. Maybe you could look in the archives. /

[flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Mark Ingram
Hi, does anyone know if it's possible to create a reference in MXML (so that you can later use it as a variable and also easily use bindings) but not add it to the parent's children? i.e. mx:Canvas mx:Script Private function someEvent() {

Re: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Scott - FastLane
Mark - You should be able to do something like the following in your mxml file: (you could also construct the titleWindow in a creationComplete() handler after simply decarling it as a member var.) mx:Script ![CDATA[ private var titleWindow:TitleWindow = new TitleWindow(...);

RE: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Mike Krotscheck
Does it have to be MXML? mx:Script ![CDATA[ import mx.managers.PopUpManager; import mx.containers.TitleWindow;

RE: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Mark Ingram
Hi guys, thanks for the fast responses - I'm currently creating the window in action script - but wanted to move it to MXML purely for easier binding: i.e. mx:TitleWindow title={someVar}/ Vs mx:Script creationComplete {

RE: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Mike Krotscheck
You can either: override protected function childrenCreated():void { super.childrenCreated(); removeChild(titleWindow); } Or: mx:TitleWindow id=titleWindow addedToStage=titleWindow.parent.removeChild(titleWindow) / Michael Krotscheck Senior Developer

RE: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Mike Krotscheck
On second thought, addedToStage might be the wrong event to listen for :). You get the idea though. Michael Krotscheck Senior Developer RESOURCE INTERACTIVE http://www.resource.com/ www.resource.com http://www.resource.com [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

Re: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Johannes Nel
use states. mx:State name=red mx:AddChild relativeTo={screenContainer} position=firstChild views:myView id=redView width=100% addedEffect=show horizontalScrollPolicy=off minHeight=484

[flexcoders] Re: webservice inheritance problem

2007-10-25 Thread forums.eyelock
--- In flexcoders@yahoogroups.com, Hans [EMAIL PROTECTED] wrote: Hi list, I use a webservice method that needs a collection of a certain type. This type is an abstract class of which 2 implementations exist. If I call this method and pass in an arraycollection with 2 instances (one for

[flexcoders] Flex 3 Beta 2 : Resource Bundle Problem

2007-10-25 Thread Besite - Bart
Hi, I just tried out some of the new localization features of Flex 3 I learned at Adobe Max Europe (Barcelona was great btw ;) but I had some problems to get it working in Flex 3 Beta 2. This is what I tried : - for the Dutch version of my application I created a map /locale/nl in my project

[flexcoders] Appearance of links in flex

2007-10-25 Thread vandanab
Hello fellow flex coders - I am new to flex and am struggling to find more information on links on flex forums. I wanted to find out if its possible to show the visited links in the browser preferred color. Is this feasible to do in flex? Also can I provide a decoration on the links such that I

Re: [flexcoders] Re: Flex Builder 3 and Coldfusion 8 with LCDS

2007-10-25 Thread Tom Chiverton
On Thursday 25 Oct 2007, [EMAIL PROTECTED] wrote: Does anyone have an answer to this? Please. :) Download the Builder trial and run the wizard ? -- Tom Chiverton Helping to quickly seize killer applications on: http://thefalken.livejournal.com

[flexcoders] NYC, NNJ consultant needed

2007-10-25 Thread Randy Tinfow
Experienced Flex 2 developer needed to assist our team in Fairfield, NJ. Estimated 20 hours per month at the high end of the pay scale. Some on-site required. Please respond off-list to [EMAIL PROTECTED] Thanks, Randy Tinfow IMAGE PLANT

[flexcoders] Best Practice: Receiving XML, Storing the Data in Flex, Using it

2007-10-25 Thread Harald Koebler
Hi, I have been having massive problems understanding the best practice for receiving an XML-File that contains many nested elements and how to deal with them on the client side (Flex). I don't want to define the dataProvider of a control to read directly from my xml, because I need to calculate

[flexcoders] Change color programmically in PlotSeries inside Repeater

2007-10-25 Thread Even
Hi, I want to change colors of items in PlotSeries programmically (launched by event, and modifying colors in a function). However, since the mx:fill and mx:SolidColor belong to the styles of PlotSeries, I can hardly assign a new value to these as modifying properties. Any solution is

[flexcoders] Try again...Error with HTTPService POST making malformed element

2007-10-25 Thread i.yoho
Sorry if this posts twice. I just had an all thumbs moment trying to explain this error... I am new to Flex and need help with getting the appropriate containers set up to send GOOD data from a swf to PHP to do the write to an XML file. // The beginning of the error is... [RPC Fault

[flexcoders] Error with HTTPService POST making malformed element

2007-10-25 Thread i.yoho
I am new to Flex and need help with getting the appropriate containers set up to send GOOD data from a swf to PHP to do the write to an XML file. // The beginning of the error is... [RPC Fault faultString=Error #1090: XML parser failure: element is malformed. // The beginning of the string

[flexcoders] Re: webservice inheritance problem

2007-10-25 Thread forums.eyelock
This type is an abstract class of which 2 implementations exist. If I call this method and pass in an arraycollection with 2 instances (one for each implementation), it occurs that the SOAP request being created ignores the fact that it concerns a subclass. In other words the only thing

[flexcoders] Flex 2.01 Contract in Lawndale, CA 90260 - Good Rate, must work on-site

2007-10-25 Thread Joseph S. Terry, Jr.
I'm looking for a smart individual who can hit the ground running on a Flex 2.01 application immediately. My company is working on a contract in Lawndale, CA. If you don't know where that is ... Google 90260, CA I'm not sure how long the contract will be, but a minimum of three to six months,

[flexcoders] runtime css and Panel skin

2007-10-25 Thread Douglas Knudsen
Ok, got a app here that has a style sheet attached at compile time. It sets Panel.header-colors in this style sheet. At runtime I load a compiled css file into the app via the StyleManager that has a Panel.border-skin set. Because of the previous header-colors setting, the border-skin is not

RE: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Samuel R. Neff
Wrap it inside an mx:Object tag as in the following example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Button label=Test click=trace('instantiated: ' + (textDeferred.parent ? 'Yes' : 'No')) / mx:Button

[flexcoders] Problem with loading multiple external xml files

2007-10-25 Thread msabljic
I have an array named 'source' which consists of external xml file names whose content i am trying to load into another array called 'content'. I tried with following: for (i=0; isource.length; i++){ XML_URL = http://localhost/temp/; + source[i]; myXMLURL = new

RE: [flexcoders] Best Practice: Receiving XML, Storing the Data in Flex, Using it

2007-10-25 Thread Jim Hayes
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Harald Koebler Sent: 24 October 2007 23:52 To: flexcoders@yahoogroups.com Subject: [flexcoders] Best Practice: Receiving XML, Storing the Data in Flex, Using it Hi, I have been having massive

[flexcoders] describeType

2007-10-25 Thread reflexactions
I just want to confirm if my understanding is correct: describeType wont work on a generic Object that is to reveal assigned variables. Similarly it wont work on a Dynamic Class to reveal variables that have been dynamically added (as opposed to those in the original class def). tks

Re: [flexcoders] really simple xml problem (I hope)

2007-10-25 Thread Giles Roadnight
Aha - yes I knew that really!! (thanks a lot, make sense now but when I was reading the docs I didn't work that out). Giles On 10/25/07, Daniel Freiman [EMAIL PROTECTED] wrote: heightNode.text()[0] = 5; - Dan Freiman On 10/25/07, Giles Roadnight [EMAIL PROTECTED] wrote: This is a

RE: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Mark Ingram
Great idea - thanks :-) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Samuel R. Neff Sent: 25 October 2007 14:13 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Add reference in MXML without adding to children Wrap it

Re: [flexcoders] really simple xml problem (I hope)

2007-10-25 Thread Daniel Freiman
heightNode.text()[0] = 5; - Dan Freiman On 10/25/07, Giles Roadnight [EMAIL PROTECTED] wrote: This is a seemingly very simple problem but so far I have only come up with a complex solution. I have the following xml snippet: properties property name=width type=real units=mm84/property

[flexcoders] Dynamic layout

2007-10-25 Thread hergy80
I'm new to the Flex world, so please bear with me. I'm trying to figure out a way to construct a basic 'form' that will display various information stored in an XML in a nice formatted way. Currently we have a system that collects credit applications, but they vary in the fields/information

[flexcoders] Components best practices for a newb

2007-10-25 Thread Phill B
I'm putting together my first Flex app and need some help. I have all my code in one mxml file and it is getting hard to read. So, I would like to break out code in to components. Should I put my remoteObjects in a component? Should I break out all of my vars as well? Are there any good

Re: [flexcoders] Components best practices for a newb

2007-10-25 Thread Derrick Anderson
sounds like you need a framework, check out cairngorm or pureMVC ( puremvc.org), they have lots of tutorials and example apps. On 10/25/07, Phill B [EMAIL PROTECTED] wrote: I'm putting together my first Flex app and need some help. I have all my code in one mxml file and it is getting hard

RE: [flexcoders] Components best practices for a newb

2007-10-25 Thread Dimitrios Gianninas
You are looking for an architecture :) One of the most popular for Flex is Cairngorm, check it out here: http://labs.adobe.com/wiki/index.php/Cairngorm But yes, you should definily break things out into their own components, the smaller the better, it will help you manage code, more easily add

RE: [flexcoders] Copying xml node attributes

2007-10-25 Thread Alex Harui
What does your code look like? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Thursday, October 25, 2007 4:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Copying xml node attributes What's the

[flexcoders] Re: addChild creationCompleteEffect

2007-10-25 Thread johantrax
What I have done is setting a breakpoint on the line of the move-effect-tag in which both width and height are 0. So Now I have added some 'debugging-alerts' (1) one in the creationcomplete-event of the popupwindowcomponent, before the inner form is added (2) one in the creationcomplete-event

RE: [flexcoders] ModuleManager.getAssociatedFactory returning wrong result ?

2007-10-25 Thread Alex Harui
The module will share the button w the main app From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dennis van Nooij Sent: Thursday, October 25, 2007 2:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] JS - How to send a byteArray using HTTPService??

2007-10-25 Thread Jeff Schuenke
Hello All, I need to do a screen capture of a UIComponenet and allow the user to save this to their local drive. I understand thsi will need to go throu the server. I have read about the ImageSnapshot and PNGEncode methods in SDK 3 so I can get the BitmapData ( this example is using SDK 2).

[flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread droponrcll
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 24 Oct 2007, [EMAIL PROTECTED] wrote: ), is there anything you can do about that mammoth disclaimer of yours. Maybe you could look in the archives. Maybe I good. But Tom Chiverton long disclaimer

[flexcoders] Re: Changing alpha for modal window?

2007-10-25 Thread fnfethan
Curious as to what other properties if any can be set on the modal style. Color would be nice Anyone know? cheers, ethan --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, var global:CSSStyleDeclaration = StyleManager.getStyleDeclaration(global);

RE: Re[flexcoders] peater

2007-10-25 Thread Tracy Spratt
If your repeated component has an id=myId, you can refer to individual instances it by doing: myId[n]. where n is the index of the repeater item. But from your description, I do not think this is what you want. If you want to set the check box states based on data in the dataProvider

RE: [flexcoders] Problem with loading multiple external xml files

2007-10-25 Thread Tracy Spratt
Use HTTPService. The send() method returns an AsyncToken, a dynammic object to which you can add any property name=value you want. In your case, set token.filename = source[i]. then in the result handler, you can access this value and use it as the key in an associative array. The code

[flexcoders] Flex Developer needed in Washington DC area

2007-10-25 Thread Tianzhen Lin
Senior Programmer Analyst for continued design/prototyping of Flex/Flash user interface Full time Flash developer as part of team working on high-visibility rich user interface prototype for the USPTO. Work with customers, IR program and project managers, technical lead, and other IR staff.

RE: [flexcoders] Components best practices for a newb

2007-10-25 Thread Tianzhen Lin
I second to Cairngorm, though you might want to spend a few days picking it up unless you are already familiar with MVC. Even with some of our developers who are already familiar with MVC, it took them more than 3 days to get barely comfortable. The website, http://www.cairgormdocs.org/ has

Re: [flexcoders] Components best practices for a newb

2007-10-25 Thread Jon Bradley
Even then... I believe it should be noted that Cairngorm is more than just an MVC architecture. There are a variety of patterns involved in using the framework, not the least of which is MVC. Even then, i don't think it really has a fully qualified MVC pattern because there are no specific

Re: [flexcoders] Components best practices for a newb

2007-10-25 Thread Jon Bradley
On Oct 25, 2007, at 1:07 PM, Jon Bradley wrote: Even then... I believe it should be noted that Cairngorm is more than just an MVC architecture. There are a variety of patterns involved in using the framework, not the least of which is MVC. Even then, i don't think it really has a fully

RE: [flexcoders] Flex 3 Beta 2 : Resource Bundle Problem

2007-10-25 Thread Robert Vollmar
You shouldn't need en_US. It looks like the properties files required by the framework (collections, containers, etc...) needed to be copied to your locale/nl directory. If you copy those, and translate them if you want, then the framework will have the resources it needs. -Original

[flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread pixelgeek
--- In flexcoders@yahoogroups.com, droponrcll [EMAIL PROTECTED] wrote: As long as we're making suggestions about how others use the forume ;- ), is there anything you can do about that mammoth disclaimer of yours. It usually dwarfs your actual posts. An OT comment to an OT post but I do

[flexcoders] FDS ManualSync and AS [Managed] Metadata

2007-10-25 Thread changlim
Hi All, I am dealing with very large data sets and is thinking of using FDS manualSync (instead of auto-sync-enabledtrue/auto-sync- enabled) for pushing server data updates to the clients. To use manualSync, the client code needs to subscribe to the DataServer for changes. From reading the

[flexcoders] HTTP Cookie via ActionScript

2007-10-25 Thread Sandeep Malik
Guys, We're using flex 3 beta 2 for some project and we're seeing this message: Error #2096: The HTTP request header Cookie cannot be set via ActionScript. ArgumentError: Error #2096: The HTTP request header Cookie cannot be set via ActionScript. at flash.net::URLStream/load() at

[flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread pixelgeek
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: Amen ! You're a funny guy Tom. : P

[flexcoders] Re: Updating a field in a Collection bound to DataGrid

2007-10-25 Thread ben.clinkinbeard
Is there any reason to call itemUpdated() if the row/item is not connected to anything else? More specifically, in the case of the ever popular CheckBox renderer, is there any reason to call itemUpdated() in the click handler after the actual value has been updated? I'm thinking no but want to

Re: [flexcoders] Components best practices for a newb

2007-10-25 Thread Derrick Anderson
i have to say, if your entire application is currently in one mxml file- i'm betting it's not a 'huge' application by any means- if that's the case and you want to organize your code into a framework of some sort, i would put my money on puremvc, i've been down that road and cairngorm was way

[flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread ben.clinkinbeard
Lots of people (including me) can't access web mail from work. Network blocky blocky. --- In flexcoders@yahoogroups.com, pixelgeek [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, droponrcll amyblankenship@ wrote: As long as we're making suggestions about how others use the

Re: [flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread Paul Decoursey
Where are you now? I have to say though, you have to really love your job to put up with that. No company I would work for would pull that kind of crap on me. I work how I want, when I want, and I need full access the the internet to do my job. FREEDOM! On Oct 25, 2007, at 1:08

[flexcoders] Re: OT: Netiquette Question

2007-10-25 Thread ben.clinkinbeard
LMAO, you're like the William Wallace of flexcoders. That was hilarious. I work for a large financial services company so we are under all sorts of regulations concerning logging and retention of all communications, electronic and otherwise. So its part company policy, part federal law. --- In

[flexcoders] Re: describeType

2007-10-25 Thread Mike Morearty
That's correct, for the same reason in both case: describeType only finds properties that were defined at compile time. It doesn't find dynamic properties. If you need to find dynamic properties, you can see them with a for loop, e.g. for (propname in myObject). - Mike Morearty, Adobe Flex

[flexcoders] RemoteObject... help!!

2007-10-25 Thread danny_yoo88
Hi, I have a class that instantiates RemoteObject in the constructor. I use different methods to set the RemoteObject endpoint and execute an AMFPHP-based function. For some reason, the first invoked method will always return but any subsequent method will execute but never return a result

[flexcoders] VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread lrdvadersith
Does anyone know what this error is? I get it in both Flex 2.01 hotfix 3 and Flex 3 beta 2. Some background: I think the problem is with the following lines: in my mxml, I have a headerRelease=model.sortFunctions(event); in my dataGrid, and in my ActionScript, I have a public function

[flexcoders] Re: Components best practices for a newb

2007-10-25 Thread squillets
This discussion of 'EasyMVC' may help if you're not quite ready for Cairngorm. http://www.clockobj.co.uk/2007/10/17/simplified-cairngorm-easy-mvc-for-adobe-flex --- In flexcoders@yahoogroups.com, Phill B [EMAIL PROTECTED] wrote: I'm putting together my first Flex app and need some help. I have

RE: [flexcoders] VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread Alex Harui
Is sortFunctions defined on model or on the app? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Thursday, October 25, 2007 11:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] VerifyError: Error #1025: An

RE: [flexcoders] Re: Updating a field in a Collection bound to DataGrid

2007-10-25 Thread Alex Harui
True, you don't have to call itemUpdated, but if anyone else wanted to know that it was updated, they'll never be notified. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, October 25, 2007 10:39 AM To:

[flexcoders] Change all other DataGrid rows from target row

2007-10-25 Thread mrand02
I have a custom inline itemRenderer in one of my datagrid columns that contains a LinkButton. When this button is pressed, I'd like to be able to change something on every row except the one that was clicked in the same column (so same itemRenderer). Is it possible to do this? I can't find any

Re: [flexcoders] Change all other DataGrid rows from target row

2007-10-25 Thread Scott - FastLane
I would try dispatching an event and letting it bubble out to the parent of the grid control... then update all rows in the grid's dataProvider and then invalidate. This should cause the custom renderer to re-display the altered data. hth Scott Scott Melby Founder, Fast Lane Software LLC

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread lrdvadersith
There are no sortFunctions on the mxml page. I'm trying to follow the example in http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0598.html In that example, there were no sortFunctions on the data grid columns, all the sorting was done in

[flexcoders] Binding question

2007-10-25 Thread dbronk
I'm having problems with a binding issue. I'll dumb down my component a bit in hopes to make this easier. I have a component, MyComponent, based on Canvas. This Canvas has objects placed around in it and some effects base on what the user clicks. The dynamic part is that there is one spot in

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread lrdvadersith
I think I answered the wrong question before. I have a function called sortFunctions defined in the model, with the signature given in the original post. Steve --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Is sortFunctions defined on model or on the app?

RE: [flexcoders] Change all other DataGrid rows from target row

2007-10-25 Thread Alex Harui
If you call invalidateList(), every row should get re-drawn. It might be easier to do that and defend the one renderer. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott - FastLane Sent: Thursday, October 25, 2007 12:26 PM To:

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread Alex Harui
Are you using modules or SWFLoader or loading other swfs somehow? How is model defined? Can you whittle this down to a small test case? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Thursday, October 25, 2007

[flexcoders] Sending an SWF loader the current percentage of screen width the flex component uses

2007-10-25 Thread Austin Kottke
Hi, I have an SWFloader object that loads an SWF. I want to tell the SWF the percentage of screen realestate the parent container widget from flex is using. That way I can make the SWF scale itself. Currently the Stage.width from the loaded SWF represents the entire stage as opposed

[flexcoders] Flex 3 Changes to Title Window (and maybe Panel?)

2007-10-25 Thread fnfethan
Greetings - Just imported my Flex 2 project into Flex 3. Basically okay but, in most TitleWindows, content that had been positioned below the title bar is now partiall under it, as though the height of the title bar did not figure in the measurement of where to place the children of the Title

[flexcoders] Foreign Language Characters

2007-10-25 Thread Shaun
I am looking for recommendations on how to most easily enable my users to enter foreign language characters into my Flex TextInput, TextArea, and and RichText controls. (easiest on the users that is) Many Thanks, Shaun

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread lrdvadersith
I'm not sure what you mean by modules vs SWFLoader - I'm pretty new to Flex. I tried to strip out the pertinent parts of my app to make a simple example - if you call 4 actionscript classes and an mxml simple }:-). I don't get the problem in my simple test, but I still can't sort correctly.

[flexcoders] Remoteobject and http parameters

2007-10-25 Thread nxzone
Hi, I'm try to put my server url in the http file because i want test on different server without recompiling. The problem is the remoteobject read my SoftwareModelLocator.serverUrl before my initapp in my main application is called. ServerUrl is Bindable, but the endPoint is not refreshing the

[flexcoders] AIR DnD onto a Tree, how to use calculateDropIndex ?

2007-10-25 Thread Ivo
I want to evaluate over which node of a Tree a NativeDragEvent occurred. The fn calculateDropIndex() tho only accepts DragEvents. How do I go about getting this information? Thanks, - Ivo

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread Alex Harui
I suspect there might be an easier way, but I'm not sure I fully understand what you are trying to accomplish. Let's start with the data objects: what do they look like? Then, what does the DG look like? Then we can talk about sorting. itemRenderers shouldn't affect your ability to

RE: [flexcoders] Sending an SWF loader the current percentage of screen width the flex component uses

2007-10-25 Thread Alex Harui
If you set scaleContent=true, the SWFLoader will try to resize the underlying SWF. From the loaded SWF, if it is a Flex app, the systemManager.parent or grandparent is the SWFLoader, I don't remember which off-hand. From: flexcoders@yahoogroups.com

[flexcoders] flash player 9.0.60

2007-10-25 Thread danielvlopes
Hello, Anyone know when adobe will release flash player 9.0.60 for every user? If i'm not wrong, i think flash player 9.0.60 only can be downloaded from labs and in adobe site the final release is 9.0.47 I don't know if im right, but html wrapper generated by flex builder template only can

[flexcoders] Video() Question

2007-10-25 Thread Christopher Olsen
I am having a weird issue When i am watching a streamed flv file as soon as the file is done downloading the vidoe gets choppy however while it's still uploading it plays fine Has anyone ever seen this?

[flexcoders] getElementByID equivalent

2007-10-25 Thread suman.karumuri
Hi all, I am a flex noob. I am writing an application in which I have to change the height and width of the buttons and other elements in a VBox based on some user action. To do this, I have assigned id's like button1, button2 .. to the buttons, I want to modify when the user clicks on a

[flexcoders] Re: flex 3 deeplinking. BrowserManager not picking up fragments on very first page load

2007-10-25 Thread aaron smith
got it figured out. I had commented out the init() on browserManager. dah. On 10/25/07, aaron smith [EMAIL PROTECTED] wrote: I've got a slight problem that I don't know if this is something with my application, or with FL3. If I reset my browser / clear cache, and go to my page with a

[flexcoders] flex 3 deeplinking. BrowserManager not picking up fragments on very first page load

2007-10-25 Thread aaron smith
I've got a slight problem that I don't know if this is something with my application, or with FL3. If I reset my browser / clear cache, and go to my page with a fragment in the link. The BrowserManager doesn't pick it up. Now as soon as I refresh the page it works. It's like something is being

[flexcoders] Re: Adobe Bug Tracking Power Tool

2007-10-25 Thread Dejan Nenov
Andriy - MakeTime is probably not going to add huge benefit to a casual user - it is a power tool targetted to people that manage overall releases, rather than specific issues. The other group of people that tend to adopt it are teams that have lived in JIRA as the primary platform for 1-2 years

  1   2   >