[flexcoders] Installing Flex on a JRun 4 Server (Windows)

2005-05-31 Thread Tim Whitehead
I've attempted to install Flex on a JRun 4 Server, and am just hoping for some feed back on how I did it, wether I have the right idea or am off. Installed JRun 4 to N:\Daemon\JRun\ After install I started the Admin Service on port 8000 and created a new server called test so that it sits at

[flexcoders] margintop in textarea?

2005-05-31 Thread rockmoyosa
Is ther a way to set a margintop in a textarea? I can force a top margin with: .content_txt.border_mc.borderMetrics.top = 10; but than the scrollbar has also an margin-top but that's very very ugly. So only the content needs a margin-top. Yahoo! Groups Links * To visit your group on the

RE: [flexcoders] Columns of data-grid and not in right order if dataprovider is set dynamically

2005-05-31 Thread Erik Westra
The only way to specify an exact order of columns is to specify the columns before u set the dataprovider. Greetz Erik -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ashish Abrol Sent: dinsdag 31 mei 2005 13:40 To: flexcoders@yahoogroups.com

[flexcoders] Post 60 Days - Development Mode?

2005-05-31 Thread Rick Bullotta
Seems like although Flex server-side will run, Flex Builder doesnt run in developer mode after 60 days. Whats the scoop? Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ To unsubscribe from this group, send an email to:[EMAIL

RE: [flexcoders] Installing Flex on a JRun 4 Server (Windows)

2005-05-31 Thread Dimitrios Gianninas
Hi Tim, Yup, you got it right... it works doesn't it? :) Ya from now on, your ant build script will basically copy all your files to the N:\Daemon\JRun\servers\test\flex\ folder, so you can run the app and test it. Enjoy! Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Dimitrios Gianninas
Hi David, The only thing you need is to use the getURL method. You can use it to communicate with a _javascript_ function back on your JSP page... like so: getURL( "_javascript_:someJSFunction( 'someValue' )", "_top" ); Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

[flexcoders] Headless Server

2005-05-31 Thread Fabio Terracini
Hi guys, Macromedia Flex can failure to render graphics if the *nix running server is headless, i.e. no monitor and graphics card. There is also a technote on this: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19252, that suggest setting headless-server to true in

[flexcoders] Hiding 'Null'...

2005-05-31 Thread jamiebadman
Hi, I have a datagrid and some detail boxes (mostly textInput). If a column is null on the grid, it shows as an empty cell - which is what I want (looks best that way) but the data is shown as 'null' in the textInput box. Is there an easy way to prevent this from happening - and simply not

RE: [flexcoders] Post 60 Days - Development Mode?

2005-05-31 Thread Rick Bullotta
Whats the confusion? Well, since you asked J 1) You cant click on the Buy button to buy a FlexBuilder license (despite its presence in the dialog holdover from the Dreamweaver code?) 2) You cant Buy a MVLP (replacement for DevNet) subscription online 3) You dont seem to be able to

RE: [flexcoders] CF7, CFCs as Remote Objects, and AMF

2005-05-31 Thread Peter Farland
When you say that you inspect the object that gets returned, do you mean the object that is returned to the client back in ActionScript? If so, then I'm confused by your attempt to use Len() as this is a CF function, no? Can you be more specific where the inspection is taking place when you say,

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Dimitrios Gianninas
Maybe you need to send the data to the server directly and have the work done there and not use_javascript_? Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 31, 2005 10:37 AMTo:

Re: [flexcoders] Post 60 Days - Development Mode?

2005-05-31 Thread Dave Carabetta
On 5/31/05, Rick Bullotta [EMAIL PROTECTED] wrote: What's the confusion? Well, since you asked J 1) You can't click on the Buy button to buy a FlexBuilder license (despite its presence in the dialog holdover from the Dreamweaver code?) 2) You can't Buy a MVLP (replacement

Re: [flexcoders] Using custom classes in RSL

2005-05-31 Thread Darron J. Schall
Erik Westra wrote: class fly.language.English { //button labels static public var okLabel:String = OK; snip //=== Language.sws === library url=Language.swf component name=fly.language.English uri=* / /library //=== Test.mxml === ?xml version=1.0 encoding=utf-8? mx:Application

RE: [flexcoders] Using custom classes in RSL

2005-05-31 Thread Erik Westra
Whooohooo! nice :) And ehh is there a way to create the swf with either compc or mxmlc? Or should I use mtasc if I want to compile this class via the commandline? Greetz Erik -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darron J. Schall

RE: [flexcoders] Flex and jsp

2005-05-31 Thread david_gal-reyniez
When someValue is too long I can't call the function. If I reduce my variable to 600 caracters by example it works. I don't know where the limit come from. I though to use fscommand but for that I need to know the id/name of my swf. But this id/name is generated automatically. I don't

[flexcoders] Re: CF7, CFCs as Remote Objects, and AMF

2005-05-31 Thread temporal_illusion
Sure. I've got the object inspector that's part of the FAST toolkit so I can inspect the objects in ActionScript in real time. If I inspect the value object before it gets passed to the remote object it looks fine; lots of values are blank strings but none say null. I then pass the object to

[flexcoders] Accessing the model from the validator

2005-05-31 Thread kevmclachlan79
Hi, I am trying to bind a validator to a field (An object actually) and was following the section in THE flex book (Steven and Alistairs developing rich clients...) on pages 392-3 and I understand the reasoning behind it and think it should work but the problem I am having is accesing the model

RE: [flexcoders] Re: CF7, CFCs as Remote Objects, and AMF

2005-05-31 Thread Peter Farland
The weird thing is even if I put a value in the constructor of the value object and assign it to these properties, the returned object still contains nulls.. but if I update my GUI (controls and validators are bound to the VO) that parameter magically works. [Pete] (It may have

RE: [flexcoders] VO problem

2005-05-31 Thread Peter Farland
Only public bean-like variables (either public member variables or properties that have the correctly named getX/setX accessors as per the bean naming convention) from your Java class can be serialized/deserialized. Only public member variables from your AS class can be serialized/deserialzied

RE: [flexcoders] HTTPService Fault

2005-05-31 Thread Matt Chotin
Sounds like an error on the server-side. Can you check your server logs for any problems, maybe try hitting the JSPs using your browser and see if something jumps out? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Whitehead Sent:

[flexcoders] Flex - the general feeling about the product is...

2005-05-31 Thread jamiebadman
Hey guys, A really general question... We've developed a number of enterprise-style applications here, in pure Flash MX 2004 (oh and one of them also uses Firefly a LOT!). We're considering moving to Flex - particularly to replace the Firefly-based app - but generally as the new standard

RE: [flexcoders] Massive JRun4 Problems - and your advice for resources...

2005-05-31 Thread Tracy Spratt
You may already know this, but if you are running the JRun server as a service, do NOT attempt to start or stop it with the Admin console. When I installed the first time, and accepted the defaults, and said yes to run as a service, I had problems. Normally, stopping and starting a server is a

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Abdul Qabiz
Hi, You are using JSP, the id you provide to mm:mxml tag, that becomes the id of your swf. mm:mxml id="myapp" name="myapp" /mm:mxml so you can use "myapp" to write fscommand handler... -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] RE: Flex - the general feeling about the product is...

2005-05-31 Thread Steven Webster
Jamie, Generally, are people happy with the Flex environment ? Are you finding it a productive development environment and are you happy with the apps you're creating ? If you are used to a declarative workflow (JSP/J2EE development) and using markup + CSS, then Flex is going to work great

[flexcoders] Re: CF7, CFCs as Remote Objects, and AMF

2005-05-31 Thread temporal_illusion
Sure enough, it's something to do with the two way bindings! If I have the binding from the value object to the text field it causes a problem, but if I take off the binding it's fine. I did a two-way binding because I'll probably reuse this form for editing a registration. But it's not for

[flexcoders] HTTPService error strings

2005-05-31 Thread Cindy Lee
I would like to catch custom errors coming back from HTTPService calls, but all Flex returns as the error string is a generic Cound not retrieve data message. I thought I had this working in the Flex 1.0 eval version by having the backend script simply return a string in the format: Status: 400:

RE: [flexcoders] Massive JRun4 Problems - and your advice for resources...

2005-05-31 Thread Mike Anderson
Now when you say run as an application, does that mean you must launch it using a shortcut, after logging into the Console (or remote session)? If so, that really isn't an acceptable solution - as most Servers and Services, are typically run without a face - meaning no monitor. Then you

Re: [flexcoders] Re: CF7, CFCs as Remote Objects, and AMF

2005-05-31 Thread Joe Berkovitz
Unfortunately, bindings have the capability of making properties seem to disappear from the standpoint of serialization. This happens because when a binding is applied to an value object, the bindings system invisibly replaces the var property with a getter/setter pair, and moves the actual

RE: [flexcoders] Massive JRun4 Problems - and your advice for resources...

2005-05-31 Thread Tracy Spratt
JRun has two options for servers, one runs the server as a Windows Service, the other runs it as a normal application. This is an option you get on install, for the default server, and also when you create a new server. The docs recommend service-based servers for development and

RE: [flexcoders] Hiding 'Null'...

2005-05-31 Thread Dimitrios Gianninas
Hi, You will have to set the data in the TextInput manually and verify the value before you set it, like so: myTextInput.text = ( myData == undefined || myData == null || myData == "null" || myData == "" )? "": myData; Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

[flexcoders] Data Grid/Cell Renderers Rendering Issue

2005-05-31 Thread Ben Elmore
All. Has anyone experienced the following (or something similar to it): We have a Data Grid with a height of 400. It has four columns, all but one have custom cell renderer. The Row height is 50 per row (defined in the dg tag). The data grid displays this fine originally but we found that row

RE: [flexcoders] Hiding 'Null'...

2005-05-31 Thread Tracy Spratt
First, I haven't noticed this behavior, but that doesn't mean much. I assume you are binding the textInput to the selectedItem of the datagrid? If you don't have control over the data source, you can use the ternary expression format: Text={(myDataGrid.selectedItem.myProperty == null ) ? :

RE: [flexcoders] Massive JRun4 Problems - and your advice for resources...

2005-05-31 Thread Mike Anderson
Yep I see what you are saying. I agree - and I run in application mode, on my development machine - in order to see the debug messages fly by. But, the one I am trying to get working, is the production/deployment machine - in which this will be the live server that services public web requests.

[flexcoders] Custom preloader question

2005-05-31 Thread pilby1
I am trying to create a customized preloader for my application using an Actionscript class. I am not the best in Actionscript, and all I really wanted was a preloader that displayed a progress bar on top of a background image, and I am unable to do so. I have read the Flex documentation and

RE: [flexcoders] Custom preloader question

2005-05-31 Thread Steven Webster
Flex has been out for a while now, and I wonder why there's only one book out (by Stephen Webster and Alistair McLeod), and it doesn't even discuss preloaders. Apart from pages 648 - 650 ? :-) somebody please be kind enough to alleviate my frustration on this by providing me a simple

[flexcoders] Re: CF7, CFCs as Remote Objects, and AMF

2005-05-31 Thread temporal_illusion
*weeps uncontrollably* ;-) Well, at least I know that I'm not going crazy. I guess the reason it would work with a SOAP web service is before the object goes over the pipe it gets converted to SOAP XML. I wanted to use the VO to bind to to avoid having to write a whole seperate model just to

RE: [flexcoders] margintop in textarea?

2005-05-31 Thread Deepa Subramaniam
If you're just trying to force some space between the text and the top of the component, you can programmatically insert a newline before the text. This keeps the scrollbar in place but the text pushed down. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] flex swc theme flash

2005-05-31 Thread tongfangchen
I have made a new theme swc file. But the panel in that theme is not dynamic. No matter what I put on height (0px) of the header, it always there. Is anybody know how to make new look and feel theme with a dynamic panel? Thanks, Tong Yahoo! Groups Links * To visit your group on the

Re: [flexcoders] TabNavigator - Hiding Tabs

2005-05-31 Thread dave buhler
Hi Alistair, I'm using Cairngorm .99 and have added about 10 mappings to my ModelLocator. Of those 10, 5 are views that need 'tab-ability' and 5 should be hidden. I used the method below, hiding the tab and setting visibility to false. This works, initially. However, when the stage is

Re: [flexcoders] Custom preloader question

2005-05-31 Thread Leif Wells
On 5/31/05, pilby1 [EMAIL PROTECTED] wrote: I've been wracking my brains on this for 2 weeks now, trying different things, but I can't seem to get my preloader to work. Other than asking me to shoot myself in the head, can somebody please be kind enough to alleviate my frustration on this by

[flexcoders] Flex Style Explorer

2005-05-31 Thread Stacy Young
Hi All, Curious to know if anyone knows the customizations used for the parent panels in the Flex Style Explorer? (the outer, dark panels) Thx! Stace Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ To unsubscribe

Re: [flexcoders] Flex Style Explorer

2005-05-31 Thread dave buhler
Stace, I think the panels in the flex style explorer use an image for the header. I could be wrong, but the reflection seems to swoop which you can't do within the Flex styles. And I think the color is #77. DaveOn 5/31/05, Stacy Young [EMAIL PROTECTED] wrote: Hi All,

[flexcoders] Re: flex swc theme flash

2005-05-31 Thread alex_harui
Did you try setStyle(headerHeight, 0); That's supposed to hide the header. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of Yahoo! Groups is

[flexcoders] Re: Flex Style Explorer

2005-05-31 Thread alex_harui
Do you mean the tabs in the right half? They are done via actionscript- based skins. We write code that checks some styles, calculates gradients and rounds some corners. Panel headers are done the same way. You can, however, use image-based skins if you want, but they may not re-size

RE: [flexcoders] Re: Flex Style Explorer

2005-05-31 Thread Stacy Young
Yes, was curious to know if those funky gradients were images in the headersthx! From: alex_harui [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 31, 2005 3:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex Style Explorer Do you mean the tabs in the right

[flexcoders] Re: Cell margins

2005-05-31 Thread alex_harui
The renderer will always be drawn at x=0. I'd probably just add a wrapper around my cell renderer and force it to x=2, or get its contents to layout with the appropriate offset. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ *

[flexcoders] Re: HTTPService Fault

2005-05-31 Thread Tim Whitehead
Heh Yup, I actually checked this yesturday and its a problem with the JSP/Java... I'm kinda new to Java so I'm slowly learning some things are still confusing to me... /***/ Technical Information: HTTP Status Code: 500 Exception Type: class

[flexcoders] Re: Hiding 'Null'...

2005-05-31 Thread alex_harui
The TextInput is kind enough to do a toString() on anything passed to its .text property, which is great for Number and other things, but is the root of your problem. My advice, subclass TextInput and put the null check on the text setter. -Alex --- In flexcoders@yahoogroups.com, Tracy

[flexcoders] Re: margintop in textarea?

2005-05-31 Thread alex_harui
Deepa is correct, but that affects your .text property. Unfortunately, there's no official way to do it. I'd subclass TextArea and override the layoutChildren method to get the inner text field to layout at the desired position. --- In flexcoders@yahoogroups.com, Deepa Subramaniam [EMAIL

[flexcoders] Re: showDataTips for the List within a ComboBox

2005-05-31 Thread alex_harui
Are you setting those fields in an override of get dropdown()? If the ComboBox gets resized or re-styled, it destroys the dropdown and makes a new one. --- In flexcoders@yahoogroups.com, DavidLand [EMAIL PROTECTED] wrote: Im trying to get data tips for the list component embedded within the

[flexcoders] Re: Flex Style Explorer

2005-05-31 Thread temporal_illusion
I would LOVE to see some example code of something like that. ;-) --- In flexcoders@yahoogroups.com, alex_harui [EMAIL PROTECTED] wrote: Do you mean the tabs in the right half? They are done via actionscript- based skins. We write code that checks some styles, calculates gradients and

[flexcoders] Re: Bug? image (html) in textarea

2005-05-31 Thread alex_harui
Unfortunately, there are some known Flash Player bugs with img in TextFields, so you may or may not be successful at working around this. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/30/05, rockmoyosa [EMAIL PROTECTED] wrote: --- In

[flexcoders] Re: Installing Flex on a JRun 4 Server (Windows)

2005-05-31 Thread Tim Whitehead
I've actually found your little write up the other day and read most of it, I'm gonna try it out soon. I've tried using Flex on IIS 6 and it works very easily using the Web Server Congfiguration Tool. I just go over everything to make sure I know how to do it, So next up Apache. I'll let you know

Re: [flexcoders] Flex Style Explorer

2005-05-31 Thread dave buhler
Hi Peter, Do you know the application color of the Flex Style Explorer? DaveOn 5/31/05, Peter Baird [EMAIL PROTECTED] wrote: I'm in the process of doing a write up on the MC Blog with an updated version of the Flex Style Explorer, and was planning on answering some of these questions.

[flexcoders] Click event not firing

2005-05-31 Thread Stacy Young
Hi All, Just noticed a weird quirk with click event on a button Ive got adding rows to a datagrid. If I press the button two times in a row without taking the mouse off the button, the second click does not fire the click event. Yet if I click a third time it does. (if I hover off the

[flexcoders] Re: can someone tell me what a webservice is?

2005-05-31 Thread Kevin Ewok
webservice is a technology that allows 2 (usually remote) systems to communicate with each other independent of what language/platform they are running on. The information that is traded is XML and the protocol is usually SOAP. Check http://www.webopedia.com/TERM/W/Web_services.html or google

[flexcoders] Re: Flex Style Explorer

2005-05-31 Thread temporal_illusion
Great, I'll check it out! Thanks! --- In flexcoders@yahoogroups.com, alex_harui [EMAIL PROTECTED] wrote: If you have Flash MX 2004, you can check out mx.skins.halo.ButtonSkin for some resizable gradient code. Yahoo! Groups Links * To visit your group on the web, go to:

RE: [flexcoders] Click event not firing

2005-05-31 Thread Stacy Young
Ah, its related to the re-draw of the datagrid as it adds the row with multiple cellrenders. Once the grid is scrolling with each addition and is off screen, it no longer happens. Im guessing theres not much I can doaside from waiting for version 8 of the player? ;-) Stace

[flexcoders] Re: showDataTips for the List within a ComboBox

2005-05-31 Thread DavidLand
I get what your saying but what would i put in the override? Im not so sure thats it because I tested this: this.dropdown.selectedIndex = i; this.dropdown.vPosition = i; this.dropdown.showDataTips = true; this.dropdown.dataTipField=pos; First two lines work like a charm, last 2 dont. This

[flexcoders] Re: Click event not firing

2005-05-31 Thread temporal_illusion
Yeah, I've noticed something similar.. I've got a visual component with a bunch of images, and when you mouse over them a pop-up pops up (as they are wont to do). If you click on the image something else happens, but every so often the click event won't fire, no matter how many times I click

RE: [flexcoders] Cell margins

2005-05-31 Thread Tracy Spratt
Ive not done much with cell renderers, but have you tried a mx:Spacer width=2? Or there is always Canvas for those pixel picky people. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Tuesday, May 31, 2005 3:13 PM

RE: [flexcoders] Custom Preloader: SWC Not Found

2005-05-31 Thread Roger Gonzalez
Have you solved this yet? What does doesn't work mean? Do you get an unresolved symbol link error? Or does it just silently fail? -Roger Roger Gonzalez mailto:[EMAIL PROTECTED] -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL

RE: [flexcoders] MXML Schema

2005-05-31 Thread Roger Gonzalez
There are quite a few constructs that turned out to be extremely expensive to put in the schema. In theory, none of them would prevent validation of your document, they would only be unavailable for hinting. As it is, the schema is horribly complex but represents a reasonable compromise in

RE: [flexcoders] can someone tell me what a webservice is?

2005-05-31 Thread Tracy Spratt
You can do it on localhost. There is an example in the flex samples folder that uses a local Webservice. If I recall correctly, the actual work is buried very deep and hard to find though. In the beginners tips section on www.cflex.net, I posted an example of how to call this sample

RE: [flexcoders] Click event not firing

2005-05-31 Thread Tracy Spratt
Any time UI activity interferes with my code, I look to see if a doLater() Might help. Often it does. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Tuesday, May 31, 2005 5:13 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Using custom classes in RSL

2005-05-31 Thread Roger Gonzalez
I have an ant build file I'll be blogging this week (probably tomorrow). It uses the compc.jar for the .sws to make the .swc, then extracts library.swf from it and renames it accordingly. Then it creates the .swf from the .mxml files using mxmlc.jar. Then it moves everything from my

Re: [flexcoders] Re: Flex Style Explorer

2005-05-31 Thread Manish Jethani
On 6/1/05, alex_harui [EMAIL PROTECTED] wrote: If you have Flash MX 2004, you can check out mx.skins.halo.ButtonSkin for some resizable gradient code. I think FlexforFlash.zip in your 'resources' directory in Flex 1.x also includes a similar ButtonSkin.as Yahoo! Groups Links * To visit

Re: [flexcoders] Questions on Containers, and their drag-ability

2005-05-31 Thread Manish Jethani
On 5/30/05, Mike Anderson [EMAIL PROTECTED] wrote: No matter which container I choose however, it would be nice to have them be able to be dragged across the desktop space. Just like the Alert box - which is automatically dragable. [...] The TitleWindow is automatically draggable. The

[flexcoders] Accordion control through html

2005-05-31 Thread nextadvantage
Can I control the state of an embeded accordion with html/javascript? If so how? Thx Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of Yahoo!

RE: [flexcoders] HTTPService error strings

2005-05-31 Thread Matt Chotin
Are you going through the proxy? If you avoid the proxy you wont get any useful information because the Flash Player cant return it. If you go through the proxy it tries to convert the error into something that Flex can interpret and therefore propagate up to you. Matt

RE: [flexcoders] Accordion control through html

2005-05-31 Thread Tracy Spratt
You will need to use a custom html wrapper, containing javascript that calls setVariable(). For example, if your Flash Player object has the id myFlexApp, you can pass a value(or call a setter method) like this: myFlexApp.setVariable(myMethod,myData); In the Flex app you need to have declared a

[flexcoders] Navigation

2005-05-31 Thread flex_script
Hi Is there any way I can add dynamic data to the label in the tabNavigator Container ? So that I can generate the Tab name on run time ? eg mx:TabNavigator id=tabNavigation mx:Canvas id=t1 label=DYNAMIC DATA HERE Thanks for your Help Fx. Yahoo! Groups Links * To visit your

Re: [flexcoders] Navigation

2005-05-31 Thread Jeff Steiner
You sure can. Take a look at the createChild function of the TabNavigator. In short - it would look kind of like this - with myCanvas being a local xmlns: mx:TabNavigator id=tileMe local:myCanvas / /mx:TabNavigator mx:Button label=duplicate myCanvas click=tileMe.createChild(myCanvas, '1')

[flexcoders] Cairngorm .99 + Flex-Config + Services.mxml

2005-05-31 Thread dave buhler
Hi, I am attempting to update the configuration for my services, both the flex-config.xml and services.mxml. This first example works fine, thanks to the trusty wildcard. However, this week, I'll need to work on security and databinding (this begins the segway into my next post) so it's time