Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-27 Thread Paolo Bernardini
no luck yet, regarding the css files, the get compiled in the swf and non loaded at runtime, so they should be ready to change the style of the bar before the application loads. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] Re: Why icon in DateField appears rough in some cases like hidden state?

2006-09-27 Thread Sergey Kovalyov
Any ideas how to make that icon look correct? ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=onCreationComplete() width=100% height=100% mx:Script ![CDATA[ import mx.controls.DateField;

Re: [flexcoders] Re: MXML Constructor

2006-09-27 Thread Tom Chiverton
On Tuesday 26 September 2006 16:57, tobiaspatton wrote: MyComp.mxml mx:Script ![CDATA[ public function MyComp() { super(); // do some constructor stuff } ]] /mx:Script ITYM: xml . mx:Something creationComplete=setUp() ...

Re: [flexcoders] Re: HTTP Status 500 Error using SSL endpoint

2006-09-27 Thread Tom Chiverton
On Tuesday 26 September 2006 18:27, syndrake7 wrote: Background: I can browse to http://me.com/flex2gateway/ and receive a blank page with no errors. I cannot browse to https://me.com/flex2gateway/ - I get an HTTP: Status 500 error. The SSL cert is setup correctly on the server (I can browse

Re: [flexcoders] How do you handle many transitions between many states

2006-09-27 Thread hank williams
You should be making mxml components. Components allow you to create modular progams, and each component can have different states and transitions.RegardsHankOn 9/26/06, Sam Shrefler [EMAIL PROTECTED] wrote: I'm trying to figure out a way to clean up the transitions from my application.mxml

[flexcoders] [Flex2] Coldfusion startup error regarding RMI and FlexAssembler

2006-09-27 Thread Thomas Rühl
Hello flexcoders, I sporadically get this error when Coldfusion starts: snip --- 09/27 11:08:44 Information [main] - Starting FlexAssembler... 09/27 11:08:45 Error [main] - Unable to initialize FlexAssembler service: coldfusion.server.ServiceException: Unable to register Flex Assembler

[flexcoders] SWF Icon size

2006-09-27 Thread Mozilla By
Hello flexcoders, How can I set size of the SWF icon? I need something like this: mx:Button [EMAIL PROTECTED](source=’/assets/skin.swf’, symbol=’icon’, width=’32’, height=’32’)”/ … ui:ToolButton [EMAIL PROTECTED](source=’ /assets/skin.swf’, symbol=’icon’, width=’16’,

[flexcoders] issue with progress bar loader becoming stuck

2006-09-27 Thread Dan Rossi
Hi there, each time i make a change to my flex app, the default progress bar becomes stuck and doesnt finish loading therefore the applicarton wont load, it takes up to 12 refreshes to actually load properly. It also seems that upon each page reload the progress bar will flash briefly

[flexcoders] Pounds and currencyFormatter

2006-09-27 Thread Tom Chiverton
I'm trying to get the string £34.44 into a text box. The '34.44' is in a Number variable. I've tried (in MXML where text control is) textControl.text=£{myVar} textControl.htmlText=£{myVar} and from a creationComplete function textControl.text=£+myVar and textControl.htmlText=£+myVar All just

Re: [flexcoders] Re: Using mxmlc.jar w/ ANT - SOLVED

2006-09-27 Thread Constantiner
You can use more elegant and crossplatform example of build.xml in this preloader example: http://mxdj.sys-con.com/read/274849.htm -- Best regards, Constantinermailto:[EMAIL PROTECTED] PS Figured it out. Had to change things a bit but it appears to be working. PS

[flexcoders] Re: MXML Constructor

2006-09-27 Thread maxym.hryniv
mx:Something creationComplete=setUp() lol :) you can define a constructor without parameters in code behind. http://www.adobe.com/devnet/flex/quickstart/ building_components_using_code_behind/ - about code behind approach. - Max -- Flexcoders Mailing List FAQ:

[flexcoders] Auto-expand Treenodes

2006-09-27 Thread Sascha
I know this had been brought up before and I found some stuff on it in the archive but it doesn't work for me... I want to auto-expand a Tree when it is displayed ... objectTree.expandChildrenOf(objectTree.dataProvider[0], true); gives me a Cannot access a property or method of a null object

[flexcoders] Re: issue with progress bar loader becoming stuck

2006-09-27 Thread wayneposner
Hi Dan- Just to let you know you're not alone, I've been having issues with my progress bar not displaying at all. I've got code that is supposed to pop up my progress bar when the user clicks on a tree node. After that I dispatch an event that my tree node has been clicked and pass the

Re: [flexcoders]

2006-09-27 Thread Abdul Qabiz
http://www.senocular.com/?id=1.373On 9/26/06, KP [EMAIL PROTECTED] wrote: Hi All, Below is the image which shows different coordinates for resizing. This image is taken from flex editor. Can we some how implement same thing at the run time for

[flexcoders] Re: Adding items to a List Box

2006-09-27 Thread justin_pante
As Tracy said if you have the dataprovider setup as an ArrayCollection any changes to the arraycollection will flow through... here is an example i wrote up...Cheers,Justin?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"layout="absolute"

Re: [flexcoders] Re: MXML Constructor

2006-09-27 Thread Johannes Nel
if he wants a constructer i would imagine that innitialize is betterOn 9/27/06, Tom Chiverton [EMAIL PROTECTED] wrote:On Tuesday 26 September 2006 16:57, tobiaspatton wrote: MyComp.mxml mx:Script![CDATA[ public function MyComp() { super(); // do some constructor stuff } ]] /mx:Script ITYM:xml

Re: [flexcoders] Lots of images and 403 errors

2006-09-27 Thread David Harris
Next time your in Auckland Clint, I'll buy you a beer!I ended up doing: CScript.exe adsutil.vbs set w3svc/MaxConnections 40which made my issue go away.The line in the log was:04:06:01 192.168.5.36 GET [some url here] 403So I guess there is no subcode...I had changed it to as JRUN as the server

[flexcoders] custom RichTextEditor - Half Solved

2006-09-27 Thread John Mazzocchi
Well, I solved my first problem, still stuck on the second ... I've reset fontFamilyArray to [Large, Small, Fixed] ... I don't want the default set to show up. This works (kinda) except that Verdana still shows up until you select something. Then it disappears forever. I've tried initialising

Re: [flexcoders] Add an object via DataService.createItem() to a DataGrid

2006-09-27 Thread Benno Kittelmann
On 27/09/06, Jeff Vroom [EMAIL PROTECTED] wrote: But with integer ids if you call createItem twice in a row before committing you'll end up with two objects that have 0 as their id and that is considered an error. What I don't understand is why a single managed object instantiated via

[flexcoders] Re: currentState index?

2006-09-27 Thread Justin
All Components that inherit from UIComponent contain a variable called 'states'. 'states' returns an array of states assigned to that component, you should then be able to use your index within that array. Cheers, Justin -- Flexcoders Mailing List FAQ:

[flexcoders] Component ID Reference

2006-09-27 Thread akash
Hi all, Can anybody suggest me hw to refer the component defined in the .MXML file from an .as file. Thanks, Akash __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] custom RichTextEditor ... fontFamilyCombo, alignButtons

2006-09-27 Thread John Mazzocchi
Well, I've been working on a custom RichTextEditor, and have come across a couple of issues ... 1. I'd like to remove the full justification alignButton, but it seems that you can only remove all of them at once. 2. I've reset fontFamilyArray to [Large, Small, Fixed] ... I don't want the

Re: [flexcoders] Add an object via DataService.createItem() to a DataGrid

2006-09-27 Thread Benno Kittelmann
Addendum: Quoting myself... I haven't thought deeply about possible implications of this approach, as an alternative an annotation mechnism or some mapping files a la Hibernate come to my mind. Another approach would be to extend the configuration mechanism in data-management-config.xml.

[flexcoders] Background alpha

2006-09-27 Thread dj
I noticed there's always a background in all flex apps, how do make it transparent, if possible. Thanks, Patrick -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo!

[flexcoders] Unable to call a method from a different file

2006-09-27 Thread akash
Hi all, Can anybody tell me the reason why the method destroyUi is not being called out. Its not showing anyError. But the control is not going to LeftAccordian.mxml files destroyUI method. //LeftAccordian.mxml ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] Re: Add an object via DataService.createItem() to a DataGrid

2006-09-27 Thread Benno Kittelmann
On 26/09/06, passive_thoughts [EMAIL PROTECTED] wrote: Meanwhile the employee.hbm.xml file in the crm sample is configured with generator class=native / I modified my country.hbm.xml and the problem went away. My Hibernate mapping has generator class=sequence in the ID element, and the

[flexcoders] HBox inside a vbox - inside an Accordion (possible bug)

2006-09-27 Thread dj
I was having the damnest time adding a little thumbnail component to the inside of a HBox - inside a VBox - inside an Accordion... I had no problem as the code demonstrates inside the first vbox in my accordion: mx:Accordion id=accordion0 width=334 height=180 resizeToContent=true

[flexcoders] Re: Loading External XML error

2006-09-27 Thread grand_master_flash_x
try this... mx:Button text=load xml click=loadXML()/ mx:Script ![CDATA[ private var externalXML:XML; private var loader:URLLoader = new URLLoader(); private var request:URLRequest = new URLRequest(xmlFile.xml); private function loadXML(): void { loader.load(request);

[flexcoders] Attaching a component properties to a data model

2006-09-27 Thread boy_trike
I have a component (called ProspectDetail) which I instatiate twice in my mail application. I want one copy displaying the model.currentProspect object and the other copy displaying the model.previousProspect object. the text properties of the visual controls now says text =

[flexcoders] Re: datgrid fills but content is invisible

2006-09-27 Thread The Crow
This is so because you have not entered the datafield (in the dg) as that in the webservice. Use the same names as that used in the webservice. Problem should be solved. --- In flexcoders@yahoogroups.com, passive_thoughts [EMAIL PROTECTED] wrote: can you post the code for your datagrid and

[flexcoders] cellRender is used in the tree

2006-09-27 Thread Zikey Han
Hi,list who can give a sample that cellRender is used in the tree component(flex1.5)?-- 亲爱的朋友,祝你天天快乐!http://www.flashpixy.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] custom RichTextEditor - SOLVED

2006-09-27 Thread John Mazzocchi
Finally solved it ... public function crippleMe():void { myRTE.toolbar.removeChild(myRTE.colorPicker); myRTE.toolbar.removeChild(myRTE.linkTextInput); myRTE.toolbar.removeChild(myRTE.bulletButton);

[flexcoders] Re: Volume trouble with VideoDisplay

2006-09-27 Thread benjidudu
Thanks Rick, I finally got it working. I added this function: private function changeVolume():void { pubs.volume += 0.01; pubs.volume -= 0.01; } I tried pubs.volume=pubs.volume but that doesn't work. You have to really change the value. And I added this to the VideoDisplay:

[flexcoders] thin online 'Desktop publisher' application

2006-09-27 Thread Joost Saanen
Hi there, Is it possible to make in Flex an online 'desktop publisher'- application (like a thin Indesign client) The application should contain have the following possibilities: - Add some textbox, and type some text in it. - Change the fonts of a text in a textbox; Times, Helvetiva,

Re: [flexcoders] Lots of images and 403 errors

2006-09-27 Thread David Harris
I asked Mr Google, and found this:quoteQ: What limits are on the XP Pro version of IIS (IIS 5.1)? A: There are several. The most significant is that you cannot create more than one website and it is limited to 10 connections./quoteOn 9/27/06, David Harris [EMAIL PROTECTED]

[flexcoders] Re: calendar component

2006-09-27 Thread dirtmediaworld
You guys are so cool! I assume this is going to be open source-ish? Will we be able to look under the hood? Not an SWC only? Always looking for examples on ways to create components. Maybe it will have some treats in it on how to create smooth scrolling components that extend the List class? Or

[flexcoders] Re: Comments appreciated

2006-09-27 Thread cheftimbob
Thanks for the reply. Are there any examples anyone knows of for doing similar? --- In flexcoders@yahoogroups.com, Brian Dunphy [EMAIL PROTECTED] wrote: I've seen things like this done with Flash PHP in the past, so it should be quite straightforward to do with Flex your backend language

[flexcoders] NEEDED: Flex Expert for a few hours of online help

2006-09-27 Thread zivi_y
We are looking for a flex expert to help us online with a few problems we are facing. We have started programming a tool using Flex 2.0 and now we're trying to switch to Flex 1.5 so that Flash 8 users could view it as well. We are looking for someone who is truly experienced with the platform to

[flexcoders] How to refer the component of the .mxml file inside a .as file?

2006-09-27 Thread akash
Hi all, Is there any way in flex1.5 to refer to the component by id from inside .as file. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml borderThickness=1 cornerRadius=5 dropShadow=true fontFamily=Verdana fontSize=18

RE: [flexcoders] Auto-expand Treenodes

2006-09-27 Thread Jonas Windey
public function expandTree():void { treeTest.selectedIndex = 0; treeTest.expandChildrenOf(treeTest.selectedItem , true); } Remember to call this function after a validateNow(), so in my case its: treeTest.dataProvider = treeData; treeTest.validateNow(); expandTree();

Re: [flexcoders] Re: MXML Constructor

2006-09-27 Thread Tom Chiverton
On Wednesday 27 September 2006 12:42, maxym.hryniv wrote: http://www.adobe.com/devnet/flex/quickstart/ building_components_using_code_behind/ That just feels *wrong*... -- Tom Chiverton Helping to interactively e-enable robust information

[flexcoders] Re: TabBar CSS Embedded Font Bug?

2006-09-27 Thread Bruce Denham
Yep. Your example does indeed work! I created another project and imported all my components and code into it, MINUS my projects RSLs and the other project references I was using. And it worked! The fonts embedded properly. WITH the RSLs, however, the embedded fonts disappear! But not all of

RE: [flexcoders] Auto-expand Treenodes

2006-09-27 Thread Sascha
Thanks a lot Jonas, I wasnt sure the Validation is necessary here! Since my Tree has several root nodes I changed the code to open all of the nodes for each (var o:Object in objectTree.dataProvider) { objectTree.expandChildrenOf(o, true); } Works like a charm! Thanks

Re: [flexcoders] Component ID Reference

2006-09-27 Thread Tom Chiverton
On Wednesday 27 September 2006 10:41, akash wrote: Can anybody suggest me hw to refer the component defined in the .MXML file from an .as file. You could use something like Cairngorn's ViewLocator to register an AS class with a MXML view. It may be quicker and simpler to change

[flexcoders] Re: Auto-expand Treenodes

2006-09-27 Thread wayneposner
Depending on how you are calling that code, you may need to add a try catch block around it. I originally had my app loading XML data during the initialize process. It then fed that data directly into a tree. Since the tree had data right away, that line of code worked fine. I've recently

Re: [flexcoders] Pounds and currencyFormatter

2006-09-27 Thread Tom Chiverton
On Wednesday 27 September 2006 12:08, Tom Chiverton wrote: What is going on, and how can I fix it ? This is a feature of the r15 and r16 players when running inside Firefox under WINE on Linux. The same player versions on Windows are fine with the exact same file ! -- Tom Chiverton, really

[flexcoders] Bug?: Array not populating List.

2006-09-27 Thread jnewport
Why is my list not being populated with the data in my array? My trace statement shows that the Array districts (and I have tried districts as ArrayCollection) contains the data, but with my mx:List dataprovider={districts} it shows the list as empty? Is this a bug in flex?

[flexcoders] [Flex 2] Strange behaviour when using RSLs

2006-09-27 Thread Carlos Rovira
Hi,I spend a few ours trying to find the cause of a weird behaviour. I was trying to use RSLs in a project and when I test it in my default browser (Firefox lastest version), a debug dialog comes. I found that launching the app in IE does not have this problem, so I asume that is a Firefox

RE: [flexcoders] Line Chart

2006-09-27 Thread Matt Horn
Chris, here's an example that uses your data format (in a file called alldata.xml). It uses e4x syntax to extract an array of names from the file, then creates a series for each of those names... ?xml version=1.0? !-- charts/XMLFileDataProvider2.mxml -- mx:Application

[flexcoders] Re: HTTP Status 500 Error using SSL endpoint

2006-09-27 Thread syndrake7
Hi, I don't think the problem is caused by the services-config file I used to compile my Flex app. I think the problem is with ColdFusion and how it has defined endpoints for /flex2gateway/, which works fine with http: but not with https:. I can reproduce the error by just typing

[flexcoders] Re: Bug?: Array not populating List.

2006-09-27 Thread Oscar
Did you declare districts as [Bindable]? --- In flexcoders@yahoogroups.com, jnewport [EMAIL PROTECTED] wrote: Why is my list not being populated with the data in my array? My trace statement shows that the Array districts (and I have tried districts as ArrayCollection) contains

[flexcoders] Mapping Fails, CFCs

2006-09-27 Thread lostinrecursion
Hi all, I have a problem with a mapping I have setup in CF 7.0.2 and could really use some help. My hair is at pull out status. ;) First of all, the mapping DOES work when called from a normal Coldfusion Template, so I know this is FLEX specific. I have also set the use-mappings tag in

[flexcoders] Flex 1.5 createClassObject() adding a label error need help

2006-09-27 Thread shawnb457
I'm tring to and a label using the createClassObject(); function createAskUs(){ tabNav.createClassObject (mx.controls.Label,lb,getNextHighestDepth(),{_x:680, _y:0,text:Ask Us,styleName:asktext}); lb.addEventListener(click,call); //Dumper.dump(lb);

Re: [flexcoders] Re: HTTP Status 500 Error using SSL endpoint

2006-09-27 Thread Tom Chiverton
On Wednesday 27 September 2006 15:00, syndrake7 wrote: I don't think the problem is caused by the services-config file I used to compile my Flex app. I think the problem is with ColdFusion and how it has defined endpoints for /flex2gateway/, which works fine with http: but not with https:.

[flexcoders] Eclipse Crash at Analyzing Project'

2006-09-27 Thread joshuajnoble
Has anyone run into a problem with FB2 in Eclipse where it starts to hang at 'Analyzing Project' and then crash? It was working fine until today when it suddenly won't load at all. If I could figure out a way to get the IDE started I could try to fix this, but I can't even open it, which leaves me

[flexcoders] Re: Unable to access UserTransaction in DataService.

2006-09-27 Thread erik_jen5en
It seems that the problem is not isolated to only JBoss. I have deployed the application to Tomcat 5.5 and the same message appears. Rather than being caused by a connection failure this time it is caused by a ClassCastException. See the trace below, [Flex] Exception when invoking service:

[flexcoders] Re: datgrid fills but content is invisible

2006-09-27 Thread bghoward3
here is code i am using it is returning a queryset not an xml string ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=wsUserTeams.getAllTeams.send() mx:Script ![CDATA[ [Bindable]

RE: [flexcoders] Eclipse Crash at Analyzing Project'

2006-09-27 Thread Steve Kellogg @ Project SOC
BUMMER. I had a similar problem. I found that deleting (or renaming) your .MetaData folder will destroy the eclipse settings, and then allow you to proceed. Perhaps you'll need to create a new project, and import your source files, but it should get you going. Heed this advice at your own risk,

Re: [flexcoders] Eclipse Crash at Analyzing Project'

2006-09-27 Thread Tom Chiverton
On Wednesday 27 September 2006 15:29, joshuajnoble wrote: plugin, but it's been ok until today. Any ideas/suggestions? Rename your workspace directory ? -- Tom Chiverton Helping to seamlessly transform performance-oriented markets This

Re: [flexcoders] Re: Unable to access UserTransaction in DataService.

2006-09-27 Thread Dave Carabetta
I'm not sure if this is it, but have you read this TechNote about weaking typing and the ClassCastException? http://www.adobe.com/go/6b9a3b10 Regards, Dave. On 9/27/06, erik_jen5en [EMAIL PROTECTED] wrote: It seems that the problem is not isolated to only JBoss. I have deployed the

[flexcoders] code-hinting disappears in classpath

2006-09-27 Thread wesubotnix
Hi, This is the case: 1. I have some classes from a svn checkout, created as a simple project. 2. I have a Flex Project that adds this first path as its classpath (project build path). This is the problem: - Why doesn´t code-hinting appear when editing my classes (doesn´t matter if I work with

RE: [flexcoders] Re: changing the pageTitle programmatically?

2006-09-27 Thread Matt Horn
There's an example in the Flex docs that does this using the ExternalInterface API here: http://livedocs.macromedia.com/flex/2/docs/1009.html hth, matt horn flex docs -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djbrown_rotonews

[flexcoders] Re: Eclipse Crash at Analyzing Project'

2006-09-27 Thread joshuajnoble
Actually, strangely enough, moving the folder, starting and then closing eclipse, putting my folder back all made everything ok. Very strange. I'm glad it was simple because getting everything set up again with a new project would have been a nightmare. --- In flexcoders@yahoogroups.com, Steve

[flexcoders] Resizable components

2006-09-27 Thread Simon Barber
Has anyone been able to implement a rectangular border with anchor points on each corner which resizes. I am trying to create custom components that can be resized visually at runtime using the bounding box. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Bug?: Array not populating List.

2006-09-27 Thread jnewport
Yes, districts is set to [Bindable] public var districts:Array; j :) --- In flexcoders@yahoogroups.com, Oscar [EMAIL PROTECTED] wrote: Did you declare districts as [Bindable]? --- In flexcoders@yahoogroups.com, jnewport jason_newport@ wrote:

[flexcoders] Flex 2.0 unkown issue

2006-09-27 Thread Igor Costa
Hi GuysI was trying to apply some CSS on application at my development cycle and discovered a new unknown issue for Flex 2.0Here we go.When I create a new Style tag at the root of my Application.mxml here we havemx:Style .MyCostumButton { icon:Embed(source=icon.png); }/mx:StyleSo applying

RE: [flexcoders] Pounds and currencyFormatter

2006-09-27 Thread Stephen Gilson
Try this: mx:CurrencyFormatter id=usdFormatter precision=2 currencySymbol=#163; decimalSeparatorFrom=. decimalSeparatorTo=. useNegativeSign=true useThousandsSeparator=true alignSymbol=left/ Stephen -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Re: FormItem multiline label?

2006-09-27 Thread Jaime Bermudez
Any help with this item would be appreciated. Thanks!On 9/21/06, Jaime Bermudez [EMAIL PROTECTED] wrote:Anyone figure a way to get the label for a FormItem to act like a Text control and wrap? I would hate to have to reimplement the FormItem just to replace the FormItem label with a Text

[flexcoders] Re: Bug?: Array not populating List.

2006-09-27 Thread Oscar
When and where are you calling the function that populates districts This is a working example I put together based on you code below. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script

RE: [flexcoders] Flex 2.0 unkown issue

2006-09-27 Thread Stacy Young
Sorry if I’m misunderstanding what you’re suggestion but if you’re specifying a style for “Button” it *should* apply to all instances. Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Igor Costa Sent: Wednesday, September 27, 2006

[flexcoders] custom DataGridItemRenderer

2006-09-27 Thread Van De Velde Hans
Hi list, does anyone have an example about how to create a custom DataGridItemRenderer? :-} What I want to do is create a list in which only the last field is a clickable More information button. As data, I have an unique identifier. Any input is welcome. Thx, Hans. -- Flexcoders Mailing

RE: [flexcoders] Drag and Drop from a List to a LineChart

2006-09-27 Thread Ely Greenfield
If I'm reading it correctly, with #1 you just need a label function on your list. That allows you to customize the string that is shown to represent the data. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jnewportSent: Tuesday, September 26, 2006 12:47

[flexcoders] Re: HTTP Status 500 Error using SSL endpoint

2006-09-27 Thread syndrake7
I'm a step closer! I edited my web.xml file regarding the line: param-value/WEB-INF/flex/flex-enterprise-services.xml/param-value which I changed to: param-value/WEB-INF/flex/services-config.xml/param-value because there is no flex-enterprise-services.xml file. I also edited the

[flexcoders] plug-in detection not working for IE

2006-09-27 Thread zenwarden
The plug-in detection that is generated by the flex builder ( in the AC_OETags.js file) does not seem to be working for IE (or at least my version: 6. 0.2800). I know that IE has the right plug-in because I can run the swf file directly. But I get the Alternate HTML content should be placed here.

[flexcoders] Re: Loading External XML error

2006-09-27 Thread Bela Hajzer
--- In flexcoders@yahoogroups.com, grand_master_flash_x [EMAIL PROTECTED] wrote: try this... mx:Button text=load xml click=loadXML()/ mx:Script ![CDATA[ private var externalXML:XML; private var loader:URLLoader = new URLLoader(); private var request:URLRequest = new

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-27 Thread Anatole Tartakovsky
Paul, Could you please clarify your question - it seems that there are number of issues that are mixed up here. First, there is no issue of RSL caching in the browser unless you specifically enable some expiration scheme. I have seen people loading multiple applications side by side - using

[flexcoders] Re: datgrid fills but content is invisible

2006-09-27 Thread bghoward3
not using xml,this is a query set --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: I had this issue a while back and I am pretty sure it was a namespace issue. Does the data returned from the WS contain a default namespace? As in

Re: [flexcoders] [Flex 2] Strange behaviour when using RSLs

2006-09-27 Thread Anatole Tartakovsky
looks like you are using debugging plugin in firefox and production release of player in IE Regards, Anatole On 9/27/06, Carlos Rovira [EMAIL PROTECTED] wrote: Hi,I spend a few ours trying to find the cause of a weird behaviour. I was trying to use RSLs in a project and when I test it in

[flexcoders] Problem with RemoteObject Java

2006-09-27 Thread jonathan_merey
Hi, I have an application with flex 2.0, flex data services and java and I want to access methods of my JAVA classes. So I use the remoteObject. Here is the code :Test.javapackage beans;public class Test { public Test() { System.out.println("-= Test start =-"); } public String doTest() {

[flexcoders] Expression for an array object name?

2006-09-27 Thread jnewport
Is it possible to have an array object name be an expression? See below? I am getting errors if I try to use a word with spaces such as New Orleans: it works if I use NewOrleans:. Alternatively, I tried the expression, [EMAIL PROTECTED]:,below to replace New Orleans: and Flex gave me errors.

[flexcoders] Transfer Images with FDS

2006-09-27 Thread cheftimbob
We have a middle layer that is responsible for storing files in a repository. We provide web services using SOAP and attachments, DIME, that allow injection and retrieval of these files, mostly TIFF images. We're planning on utilizing Flex and FDS for various interactions. If I capture these

[flexcoders] FDS+COLDFUSION CFCRM dataservice error

2006-09-27 Thread flexdesigners
Hi, I'm trying to make the CFCRM tutorial works, but i had a lot of issues to make it work. I have CFMX7.2 installed on IIS (port 80) and FDS Express installed on the same server (port 8700). I've successfully installed and tested the CRM version, but when i try to make the Coldufion version,

[flexcoders] Cairngorm Best Practices.

2006-09-27 Thread laidezmon
Here is a question about Cairngorm best practices. In the documentation this is in part four feature driven development, page 3 for cairngorm .99 it says this: First recognize the best practice appraoch of naming all events as constants on the FrontController instance ShopController. Later

[flexcoders] extensions to graphics drawing methods

2006-09-27 Thread dradivoj
Does anybody know any libraries for more advance vector graphics drawings, like support for drawing of arrows, splines etc.. The Graphics class has the basic methods for lineTo, curveTo whics draws the quadratic bezier curve. Would be nice if Adobe provided some of these tools. Thanks, Dusan

[flexcoders] Re: Bug?: Array not populating List.

2006-09-27 Thread jnewport
On the result of my httpService call(see below). private function LoadXML(event:ResultEvent):void{ xmldpAddress = new XML(event.target.lastResult); NumberOfDistricts = new Number(xmldpAddress.month[0].child(*).length());

[flexcoders] Re: Cairngorm Best Practices.

2006-09-27 Thread Tim Hoff
Hi JS, Below is a sample Cairngorm2 FrontController. It's very similar to the .99 version. The store example is using custom events. These are usually created if you need to pass data (VO) with the event to a Command. This isn't necessary if the command doesn't require parameters or data.

[flexcoders] FDS+COLDFUSION CFCRM dataservice error

2006-09-27 Thread Francois Dejardin
Hi,I'm trying to make the CFCRM tutorial works, but i had a lot of issues to make it work.I have CFMX7.2 installed on IIS (port 80) and FDS Express installed on the same server (port 8700).I've successfully installed and tested the CRM version, but when i try to make the Coldufion

[flexcoders] Re: datgrid fills but content is invisible

2006-09-27 Thread ben.clinkinbeard
Not sure what you mean exactly. Web services always return xml (that's how they work), and Flex parses the results into either objects, e4x structure or xml text, depending on what you set the resultFormat attribute of your mx:operation tag to. The default is object, so your ws should be returning

[flexcoders] Re: Cairngorm Best Practices.

2006-09-27 Thread ben.clinkinbeard
This is off the top of my head so if someone out there knows or can explain better feel free to correct me... I've not looked at the actual code but from your snippet it appears that they are in fact still using constants, just not ones that are defined in the ShopController. When you have an

[flexcoders] Re: Loading External XML error

2006-09-27 Thread g_vaccarezza
Thank you! That worked! How come the livedoc provides buggy info? Seems that the loader has to be inside a function to work... --- In flexcoders@yahoogroups.com, Bela Hajzer [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, grand_master_flash_x nick.velloff@ wrote: try

[flexcoders] why isn't the model's data being updated.

2006-09-27 Thread boy_trike
the model variable is bound and in the following snippet mx:TextInput id=manager text={model.currentProspect.manager} width=146 x=71 y=99 / whenever I type something into the manager field the model is NOT updated unless I add the following change event:

Re: [flexcoders] Flex 2.0 unkown issue

2006-09-27 Thread Kevin Newman
It sounds like you are looking for a CSS Selector that will not apply to every Button instance, but only vanilla ones. Is there a selector that does that? Alternatively, can you make your own custom Button Element (MyButton), by extending (inheriting from) the base Button class, then apply the

RE: [flexcoders] Re: Loading External XML error

2006-09-27 Thread Matt Horn
The info is correct, but the audience is different. You have to flex-ify code samples from the Programming ActionScript book because they are written to generally be usable independent of the tool that you use to compile them. One such flexification is that all statements in a script block must be

[flexcoders] Re: Unable to access UserTransaction in DataService.

2006-09-27 Thread jonathan_merey
I had the same problem with Tomcat and when I installed the JOTM I hadn't the problem. Good luck. -- 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 *

RE: [flexcoders] Flex 2.0 unkown issue

2006-09-27 Thread Stacy Young
One option you could do is set the style inside your custom component. That way wherever it’s used afterwards that style will apply. Alternatively you *can* do the following as well …and should work: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-27 Thread Paul Spitzer
Anatole Tartakovsky wrote: Paul, Could you please clarify your question - it seems that there are number of issues that are mixed up here. First, there is no issue of RSL caching in the browser unless you specifically enable some expiration scheme. Certainly. The caching issue I'm

[flexcoders] HTTPService outside of MXML

2006-09-27 Thread Ali Mills
Is it possible to use HTTPService outside of MXML in an ActionScript class? I have a very simple ActionScript project with the code: [CODE] package { import flash.display.Sprite; import mx.rpc.http.HTTPService; public class HTTPServiceExample extends Sprite {

[flexcoders] Re: why isn't the model's data being updated.

2006-09-27 Thread passive_thoughts
mx:Binding source=manager.text destination=model.currentProspect.manager / --- In flexcoders@yahoogroups.com, boy_trike [EMAIL PROTECTED] wrote: the model variable is bound and in the following snippet mx:TextInput id=manager text={model.currentProspect.manager} width=146 x=71 y=99 /

[flexcoders] submission with multiple selec

2006-09-27 Thread g_vaccarezza
suppose I have this select multiple value=items optionWallet/option optionBelt/option optionHat/option /select If the user selects wallet and hat, the following will be submitted to the form's action page: ?items=Walletitems=Hat Quetion: How do I emulate this when calling an action page via a

[flexcoders] passing an instance of a component to a titlewindow

2006-09-27 Thread bghoward3
can somone provide some direction , i am trying to populate a title window dynamically through an argument, the contents of the title window will be in the form of a component thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

  1   2   >