[flexcoders] Re: Using "{" character in toolTip text

2007-09-24 Thread wizardry_wiz
Cheers, Seth --- In flexcoders@yahoogroups.com, Manu Dhanda <[EMAIL PROTECTED]> wrote: > > > Hii > > I want to use this char { in the toolTip just as a normal text char. > But whenever I specify "{sometext}" in my string, it consider it as runtime > var specification. > > Any tips for this??

[flexcoders] Shared object, custom types, and registerclassalias not working

2007-09-24 Thread mleembruggen
Hi, The problem I am having is actually reading the custom types back into my flex app from the shared object. They seem to save/flush fine but flex doesn't read them back in as serialized custom types I have an arraycollection of custom type LoginVO objects. [ArrayElementType("com.databa

Re: [flexcoders] Any non-attendee access to Adobe Max presentations?

2007-09-24 Thread Ed Capistrano
I hope they will... But it will take some time. Ed proud & happy member --- flexcoders@yahoogroups.com <[EMAIL PROTECTED]> wrote: > Just wondering, since I can't afford to go to Chicago... > > Will Adobe be providing access to any of the presentation materials > from this year's Max conference? >

Re: [flexcoders] Documentation Tool for Adobe Flex and ActionScript

2007-09-24 Thread Muzak
Look up AsDoc in the flex docs. http://livedocs.adobe.com/flex/201/html/asdoc_127_1.html - Original Message - From: "Pay Hub" <[EMAIL PROTECTED]> To: Sent: Tuesday, September 25, 2007 8:06 AM Subject: [flexcoders] Documentation Tool for Adobe Flex and ActionScript > Hi Guys, > > As pe

RE: [flexcoders] relationship mapping

2007-09-24 Thread J B
Visual Graph is a component which does exactly what you are looking for: Check out -- http://code.google.com/p/flexvizgraphlib/ >From: Toby Tremayne <[EMAIL PROTECTED]> >Reply-To: flexcoders@yahoogroups.com >To: flexcoders@yahoogroups.com >Subject: [flexcoders] relationship mapping >Date: Mon, 2

RE: [flexcoders] CircleBox component?

2007-09-24 Thread J B
Check out: http://code.google.com/p/flexvizgraphlib/ Which is a graph library where children can be arranged in a circle/radial layout. >From: "sgrace99" <[EMAIL PROTECTED]> >Reply-To: flexcoders@yahoogroups.com >To: flexcoders@yahoogroups.com >Subject: [flexcoders] CircleBox component? >Date:

Re: [flexcoders] Entering and Passing Data to a Cairngorm Event?

2007-09-24 Thread Muzak
Another way is to use a ValueObject as the data property of an Event. package com.yourcompany.project.events { import com.yourcompany.project.vo.UserVO; public class UserEvent extends CairngormEvent { public static cons LOGIN_USER:String = "loginUser"; public var data:Use

Re: [flexcoders] simple form post

2007-09-24 Thread Muzak
look up navigateToURL() in the docs. - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Tuesday, September 25, 2007 2:30 AM Subject: [flexcoders] simple form post > How do I go about doing this: > > I have form in a flex application > I hit the submit button > The form is posted

[flexcoders] Documentation Tool for Adobe Flex and ActionScript

2007-09-24 Thread Pay Hub
Hi Guys, As per the requirment, we need to document our entire project, which built on Adobe Flex, Actionscript and Cairngorm as well. Please let me if you know any documentation tools. Thanks Abdul Hadhi

RE: [flexcoders] Setting selectedIndex

2007-09-24 Thread Alex Harui
Not sure what nested has to do with it. Given that you can reference one of the repeated lists, you can call scrollToIndex on it. Or is your issue how to scroll the container full of repeated lists? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Re: Find parent of selected item in tree

2007-09-24 Thread Alex Harui
If you can, you should structure your data to have back pointers to the parents From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shailesh Mangal Sent: Monday, September 24, 2007 10:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] R

[flexcoders] Re: Find parent of selected item in tree

2007-09-24 Thread Shailesh Mangal
This will only work for XMLCollection. What about ArrayCollections? -Shailesh --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Isn't it just selectedItem.parent()? > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTE

[flexcoders] Upgrading SDK to HotFix3 and FDS to LCDS 2.5

2007-09-24 Thread Shailesh Mangal
We are trying to upgrade our existing FDS project from Flex SDK 2.0.1 to HotFix2 and HotFix3 (which also require upgrading FDS to LCDS 2.5). 1. Is there any reason not to upgrade? The only reason this is a confusion is that in the KB, Adobe suggests not to unless you have specific problems. 2. Th

[flexcoders] Re: Entering and Passing Data to a Cairngorm Event?

2007-09-24 Thread philza1985
Got it working, thanks for the help guys. =D --- In flexcoders@yahoogroups.com, Jon Bradley <[EMAIL PROTECTED]> wrote: > > Agree with Mike. > > You can use public vars and at least put them in the class as a > requirement for the event construction. > > A more complete (simple) example: > > p

[flexcoders] Using "{" character in toolTip text

2007-09-24 Thread Manu Dhanda
Hii I want to use this char { in the toolTip just as a normal text char. But whenever I specify "{sometext}" in my string, it consider it as runtime var specification. Any tips for this?? What should I use so that flex can ignore next char.. Thanks. -- View this message in context: http://ww

[flexcoders] SWFObject et al

2007-09-24 Thread Richard Rodseth
What's popular/effective amongst flexcoders as an html wrapper? We are trying SWFObject but have issues on IE7. I seem to recall reading that some Adobe sites use a "modified" SWFObject. Is this what's becoming SWFFix? Is that worth trying yet? Thanks for any experience reports.

RE: [flexcoders] DataGrid item renderers and editors

2007-09-24 Thread Alex Harui
sounds like you set itemrenderer to ccombobox, and not itemeditor. If you set it up properly, you shouldn't need to change anything at runtime From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jllaird02 Sent: Monday, September 24, 2007 5:40

[flexcoders] Problem on fetching and manipulating data from getItem (method from AbstractAssembler)

2007-09-24 Thread KenAragorn
Hi, I have some problem on getting data from the server side properly. To be more specific, I have problem on retrieving data from the getItem method from a class that I created (which extend the AbstractAssembler). Here's are part of the code details for the class that extend the AbstractAssem

Re: [flexcoders] Entering and Passing Data to a Cairngorm Event?

2007-09-24 Thread Jon Bradley
Agree with Mike. You can use public vars and at least put them in the class as a requirement for the event construction. A more complete (simple) example: package com.yourcompany.project.controls { public class LoginUserEvent extends CairngormEvent { public var login

Re: [flexcoders] simple form post

2007-09-24 Thread Jon Bradley
On Sep 24, 2007, at 8:30 PM, [EMAIL PROTECTED] wrote: How do I go about doing this: I have form in a flex application I hit the submit button The form is posted to a PHP page. Ok, you got that far yet? I can access the form variables on that PHP page. I heve been looking for an example for

[flexcoders] DataGrid item renderers and editors

2007-09-24 Thread jllaird02
I'm having issues using an itemRenderer/itemEditor on a DataGrid. I have a DataGrid that on load needs to be nothing but labels. When I click on a particular column I need that cell to change to a ComboBox with 5 status values. I am able to select a cell and change the itemRenderer of the DataGr

[flexcoders] Re: id "mask" is already used or has special meaning

2007-09-24 Thread dodtsair
mask is a variable of DisplayObject. Consider the following: As best as I understand this means that I am creating an image object and assigning it to the theCanvas.mask variable. I don't understand the function of the mask variable enough to understand why it behaved the way it did. Sinc

RE: [flexcoders] Entering and Passing Data to a Cairngorm Event?

2007-09-24 Thread Mike Krotscheck
Urm, right. My bad, didn't realize what you were asking. Notice that in CairngormEvent, data isn't actually initialized to any value. Thus what you'd be looking to do is initialize the object in the constructor of your loginEvent before accessing it when you create the event. public functio

RE: [flexcoders] Entering and Passing Data to a Cairngorm Event?

2007-09-24 Thread Mike Krotscheck
Since you're already storing the data in your event, the only remaining step you have to do is to pull that information from the appropriate command: public class LoginCommand implements ICommand { public function execute(event:CairngormEvent):void { var loginEvent :LoginEvent =

[flexcoders] Entering and Passing Data to a Cairngorm Event?

2007-09-24 Thread philza1985
Hi guys, just wondering how to pass data to a cairngorm event's 'data' object. This is how I've seen it done in the past without using cairngorms 'data' object. // in the view... public function loginHandler ( username : String, password : String):void { var login : Lo

[flexcoders] simple form post

2007-09-24 Thread [EMAIL PROTECTED]
How do I go about doing this: I have form in a flex application I hit the submit button The form is posted to a PHP page. I can access the form variables on that PHP page. I heve been looking for an example for weeks, but I don't see any. They all post to a php page, then whatever is printed on

RE: [flexcoders] flex 3 requirements?

2007-09-24 Thread Matt Chotin
All versions of Player 9 should work with Flex 3. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent: Monday, September 24, 2007 11:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] flex 3 requirements? Is there a specific version of t

RE: [flexcoders] Unique Id's for Instances of PopUp Windows..

2007-09-24 Thread Alex Harui
You'll have to keep track of instances yourself somehow. You can generate UID's via UIDUtil if it helps, but shouldn't be required. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sk_acura Sent: Monday, September 24, 2007 1:41 PM To: flexc

RE: [flexcoders] Re: Is it possible to anti-alias fonts without embedding?

2007-09-24 Thread Alex Harui
That setting makes a difference for me. I don't know how the session scheduler is created. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of williamkusumo Sent: Monday, September 24, 2007 2:51 PM To: flexcoders@yahoogroups.com Subject: [flex

RE: [flexcoders] XML and ArrayCollections problem

2007-09-24 Thread Alex Harui
xmllistcollection From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Warren Sent: Monday, September 24, 2007 2:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] XML and ArrayCollections problem Hey Flexcoders, I'm starting t

RE: [flexcoders] Re: Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread Ely Greenfield
Hmmm. I don't have an easy answer for you. I know there were some issues during CS3 development around classes not getting included unless you did some specific settings, but I thought we had resolved them. One thing to make sure you're _not_ doing is sharing your source files bet

[flexcoders] Re: Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread thegiffman
Hi Ely, Thanks for the tip. Mind if I ask one more question here? I did as you demonstrated (using a SWC), and timeline code now works. I am also able to access methods of classes defined in the linkage base class of the symbol, which is also nice. However - I am not able to execute methods on

[flexcoders] XSLT in Flex

2007-09-24 Thread droponrcll
I have two components I'd like to use in my Flex piece that were developed by two different companies. They both use essentially the same information, but they want it formatted in two different XML formats. My life would be a lot simpler if I could apply XSLT to the XML after it is loaded in

[flexcoders] XML and ArrayCollections problem

2007-09-24 Thread Steve Warren
Hey Flexcoders, I'm starting to learn Flex, coming from a Flash background, trying to wrap my head around the new ways to deal with XML. I'm trying to set a dataProvider for a DataGrid component to an ArrayCollection. Problem is, the XML I'm getting back from my service looks like this:

[flexcoders] Re: ColorPicker colorField

2007-09-24 Thread scalenine
This may not be what you're looking for, but I did this quick example a while back (view source enabled): http://share.scalenine.com/source/Colors/Colors.html Also, there's this article: http://blog.flexexamples.com/2007/07/31/using-the-colorpicker-controls-colorfield-and-labelfield-properties/#

[flexcoders] Re: Buttons in Flex !

2007-09-24 Thread restlessdesign
I'm sorry Alex, but I wasn't able to find anything on http://labs.adobe.com/wiki/index.php/Flex_3:Release_Notes Nothing in the Developer's Guide really stood out either. Would you be so kind as to point me in the right direction? Thanks

Re: [flexcoders] CircleBox component?

2007-09-24 Thread Bruce Hopkins
Hey, The springgraph will do this nicely: http://mark-shepherd.com/blog/2006/11/17/a-flex-component-for-graph-visualization/ All you need to do is plot a single item (we'll call it the center_item), and connect all the items that you want in a circle to the center_item. You can specify line colo

[flexcoders] Re: Is it possible to anti-alias fonts without embedding?

2007-09-24 Thread williamkusumo
Hmm, I guess I misunderstood how anti-alias text supposed to work. So for application like the Adobe Max Session Scheduler (sorry, couldn't think of any other examples), all the text seems to be anti-aliased, even when my effect setting is off, so I assume it is using embedded font, correct? Than

[flexcoders] Re: firefox and FileReference.upload over SSL - error 2038

2007-09-24 Thread wizardry_wiz
I have done EXTENSIVE testing and reduplicating of this problem/bug. Does anyone have APACHE specifically as a server accepting firefox uploads ssl using fileReference.upload? At this point I don't believe it is possible. I have tweaked apache, installed on windows, linux, redhat, everything work

[flexcoders] Re: XMLList!!

2007-09-24 Thread figo2324
hi paul your way to do to that wokk fine but i need the complete object xml for example child("koala").(text()=="Y") and this returns this sambil Y i did it this way var va:String="koala"; var va2:String="Y"; myDataProvider.data.item.(elements(va)==va2) and works fine then if you wanna an

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Gordon Smith
Yes, I'd like to understand your use case. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Monday, September 24, 2007 1:20 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] localization options in fle

Re: [flexcoders] possible solution for RTL (right to left) text input

2007-09-24 Thread Doug McCune
let me save you a bajillion hours of work: give up on this one. RTL is too hard. Wait for player 10, which will support bi-di text. I normally don't try to shoot down people's ideas, but seriously, you're not going to solve this one. It's really damn hard. That said I'll be pretty damn impressed

[flexcoders] mouseOver/rollOver on ToggleButtonBar

2007-09-24 Thread Guillermo Villasana
Hi again, well, now I have the following problem: I have this ToggleButtonBar: So when I click the button it brings some information, but what I want to do is that when I go over a button, that it will display a new navegation that I made with the TileList depending on the ind

[flexcoders] mouseOver/rollOver on ToggleButtonBar

2007-09-24 Thread Guillermo Villasana
Hi again, well, now I have the following problem: I have this ToggleButtonBar: So when I click the button it brings some information, but what I want to do is that when I go over a button, that it will display a new navegation that I made with the TileList depending on the ind

Re: [flexcoders] tabNavigator - dynamic tabs?

2007-09-24 Thread Scott - FastLane
Have you looked at SuperTabNavigator in FlexLib ? hth Scott byte.sensei wrote: I have a tabNavigator with 3 mx:Canvas tabs, each containing a dataGrid for a different user/customer. Above the tabNavigator you can select up to 3 different us

[flexcoders] Unique Id's for Instances of PopUp Windows..

2007-09-24 Thread sk_acura
Hi All, I am loading different swf files using the ModuleManager and then using the PopUpManager to display it as a Floating Window.. Now there can be multiple instances of a given Module/SWF File. There is no unique Id to differentiate these instances.(I mean there is no built in support

Re: [flexcoders] Problem with rollOver and rollOut

2007-09-24 Thread Guillermo Villasana
Yes the alert was giving me problems. Thanks. Alex Harui wrote: > > Works fine for me. I didn't use Alert as it will cause a rollout. > > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:flexcoders@yahoogroups.com >

[flexcoders] tabNavigator - dynamic tabs?

2007-09-24 Thread byte.sensei
I have a tabNavigator with 3 mx:Canvas tabs, each containing a dataGrid for a different user/customer. Above the tabNavigator you can select up to 3 different users/customers, and this populates the associated grid in the tabNavigator. Pretty straightforward -- *except* that I don't want the

RE: [flexcoders] Problem with rollOver and rollOut

2007-09-24 Thread Alex Harui
Works fine for me. I didn't use Alert as it will cause a rollout. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guillermo Villasana Sent: Monday, September 24, 2007 1:07 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Problem with r

RE: [flexcoders] Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread Ely Greenfield
Never mind, Alex pointed out that you included the code at the bottom of your email. When you bring a symbol across from CS3 in flex using Embed, we strip off code and replace it with an implementation that allows it to be usable as a skin. If you need to keep the code on the symbol,

[flexcoders] Re: Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread thegiffman
Well, it works - naturally! So embedding is a no-no? --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > What happens if you don't embed humanGuy and load it externally? >

[flexcoders] Re: Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread thegiffman
Hi Ely, I'm using AS3, and embedding it as a symbol from a swf at compile time. As Alex points out, dynamically doing it at runtime seems to fix this particular problem, but of course I hate to do that if I don't have to.

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Brian Holmes
>> and then access those resources in the same way that you access the compiled ones Gordon, accessing them the same way is the problem. I have several reasons for this if you're interested as to why. Brian.. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: XMLList!!

2007-09-24 Thread figo2324
thanks so much man, it works fine, thanks --- In flexcoders@yahoogroups.com, Paul deCoursey <[EMAIL PROTECTED]> wrote: > > .item.child("koala").(text()=="Y") > > > > figo2324 wrote: > > > > Hi people, i need your help, i have a xmllist object so i need to > > query this xmllist, im doing it

RE: [flexcoders] JPGEncoder with progress support?

2007-09-24 Thread Gordon Smith
callLater() is a method of the UIComponent class. JPEGEncoder is part of the Flex 3 framework (mx.graphics.codec.JPEGEncoder) but it doesn't extend UIComponent. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent:

RE: [flexcoders] passing string between flex main application and custom component

2007-09-24 Thread Gordon Smith
One way is to expose a public property on the custom component and have the main app set it as an attribute on the tag that creates the custom component. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Simpson Sent: Monday,

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Gordon Smith
In Flex 3, the ResourceManager manages ResourceBundle instances, and it doesn't care where they come from. They don't have to be compiled into the application or into resource modules, although this is the primary workflow that we support. You can programmatically create ResourceBundles and populat

Re: [flexcoders] Problem with rollOver and rollOut

2007-09-24 Thread Guillermo Villasana
Now I have this with the same result, actually the tile list is smaller and set to bottom left, so the top right of the canvas I am seeing is white, and even in this area I have the rollOver and rollOut events beeing triggered. Thanks Alex Harui wrote: > > Container’s don’t have backgro

RE: [flexcoders] Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread Ely Greenfield
- Is your CS3 SWF using AS2 or AS3? - Are you bringing it into Flex a) dyanamically, at runtime, as a loaded, played swf, b) dynamically, at runtime, as a class pulled out of a loaded SWF, c) statically at compile time, by embedding a SWF, or d) statically, at compile t

RE: [flexcoders] Re: Is it possible to anti-alias fonts without embedding?

2007-09-24 Thread Alex Harui
Anti-aliasing device text is dependent on your system settings in Windows. ControlPanel->Display->Appearance>Effects->Use the following method to smooth edges of screen fonts. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of williamku

RE: [flexcoders] Problem with rollOver and rollOut

2007-09-24 Thread Alex Harui
Container's don't have backgrounds so you aren't over the container unless you are over its contents. Set a backgroundColor (and backgroundAlpha if you want) so the mouse is over something in the container. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTE

RE: [flexcoders] Setting dataGrid selectedIndex.

2007-09-24 Thread Alex Harui
How did it get set to 0? Maybe that code runs after you set it to 5. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Monday, September 24, 2007 12:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Setting dataG

RE: [flexcoders] Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread Alex Harui
What happens if you don't embed humanGuy and load it externally? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thegiffman Sent: Monday, September 24, 2007 12:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex ignoring Acti

[flexcoders] Flex ignoring Actionscript Timeline Actions

2007-09-24 Thread thegiffman
Hi Folks, I'm running into what appears to me to be a fairly nasty problem. I have a fairly simple animation I want to load into flex. It's a little guy who jumps and waves his hands. The first frame in flash CS3 is an idle frame with a stop, then the "jump" animation (ended with a gotoAndStop(

[flexcoders] Re: Find parent of selected item in tree

2007-09-24 Thread dffmyco
Thats what I needed. Thanks, --- In flexcoders@yahoogroups.com, "m40.regs" <[EMAIL PROTECTED]> wrote: > > I would suggest using: > event.currentTarget.selectedItem.parent()[EMAIL PROTECTED] > > --- In flexcoders@yahoogroups.com, "dffmyco" wrote: > > > > I just can not seem to figure out how to

[flexcoders] Setting dataGrid selectedIndex.

2007-09-24 Thread candysmate
I need to change tabNavigator tabs automagically for the user and then set the selectedIndex of the dataGrid which resides on the tab to a variable value. My code is: adviceTabNav.selectedIndex = 1; dGrid.selectedIndex = x; x is a Number, and currently set to 5. The tab changes OK, but the grid

[flexcoders] Problem with rollOver and rollOut

2007-09-24 Thread Guillermo Villasana
Hello everyone, I have the following code: The problem I have is that the rollOut is triggered even if I am in the area of the canvas and I don't know why. It seems that every item in the tile list generetes the rollOut and roll over,

[flexcoders] Re: Is it possible to anti-alias fonts without embedding?

2007-09-24 Thread williamkusumo
Alex, are you sure about this? You mean, I will get anti-aliased system text by default without having to set anything? I've never seen this happening. I've tried explicitly setting cacheAsBitmaps to false. Thanks! --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Dev

[flexcoders] Re: Find parent of selected item in tree

2007-09-24 Thread m40.regs
I would suggest using: event.currentTarget.selectedItem.parent()[EMAIL PROTECTED] --- In flexcoders@yahoogroups.com, "dffmyco" <[EMAIL PROTECTED]> wrote: > > I just can not seem to figure out how to get the > parent of a selected item ([EMAIL PROTECTED]). > In this case I need to know the genus na

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Brian Holmes
Aaron, email me off list at [EMAIL PROTECTED] and I'll get you the code and talk about what needs to be done. If you'd like to help with it that'd be great. thanks, Brian.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aaron smi

Re: [flexcoders] SetVariable vs External Interface & AS3's root

2007-09-24 Thread Bart Wttewaall
Thanks for answering Alex. At least External Interface works, so I'll just build on that. I'll do a test to see what the difference in speed is with AS2's SetVariable. Not that it matters since we don't have any options, but hey, curiosity ain't a sin, right? I'll post my findings later this week.

RE: [flexcoders] Re: Open SWF from another SWF.

2007-09-24 Thread Tracy Spratt
Timing issues can make communicating with the loaded swf tricky. Here is a full example, built on the one in the docs, that shows how to handle this. http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectI D=690 Tracy From: flexcoders@

Re: [flexcoders] Any non-attendee access to Adobe Max presentations?

2007-09-24 Thread grimmwerks
If you've got any questions you want to know, I've got interviews scheduled during the presentation. Send areas of interest/questions to [EMAIL PROTECTED] Thanks. On Sep 24, 2007, at 1:36 PM, Peter Connolly wrote: > Just wondering, since I can't afford to go to Chicago... > > Will Adobe be p

RE: [flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Alex Harui
Converting to AC will fix it (and avoid some memory utilization issues that Scott (FastLane) has mentioned. However, it really shouldn't be that hard to implement what you need. Like I said, you can copy from Tree. Just do the remove before the add in dragdrop and don't to a remove in dragComplet

Re: [flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Ben Marchbanks
Leave it to me - I 'm an XML terrorist ! Once Tracy showed me how to use it I became a fanatic. Okay - I'll remove the move.enabled so then would a simple solution be to convert XML to AC to avoid having to write all the custom D/D ? or is this just a fact of life ? Ben Marchbanks ::: alQemy

RE: [flexcoders] Re: Open SWF from another SWF.

2007-09-24 Thread Alex Harui
A shell app would look something like: Use of TabNavigator/ViewStack, the visible property and other logic should make it look like your HTML app? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of helix2

RE: [flexcoders] SetVariable vs External Interface & AS3's root

2007-09-24 Thread Alex Harui
setVariable is not supported in AS3. It is reflected back to the JS layer, so getVariable works, but you can't get to it from AS3. I don't know if EI is still that much slower, so give it a try. The last person who ran into this just make a JS wrapper from setVariable to EI. _

Re: [flexcoders] possible solution for RTL (right to left) text input

2007-09-24 Thread Willy Ci
ok, thanks, let me add more to my code. On 9/24/07, paulh <[EMAIL PROTECTED]> wrote: > > wci.geo wrote: > > for me? See if it is working in a real RTL environment. > > actually it's not "just" RTL, technically it's BIDI (bidirectional) as not > > everything's RTL, numbers are still LTR. so one

RE: [flexcoders] Re: Memory usage by flex

2007-09-24 Thread Alex Harui
So what are you doing in the timer? Drawing something, fetching more data? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mohneeshs Sent: Sunday, September 23, 2007 10:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Memo

Re: [flexcoders] localization options in flex 2

2007-09-24 Thread aaron smith
Hey Brian, Thanks for sharing this. This looks really promising. This looks even better than the support Flex 3 will have for localization. What is left on the project? Are there any existing bugs? I'd really love to get a look at this and see if it's something usable for an upcoming project. I c

[flexcoders] flex 3 requirements?

2007-09-24 Thread aaron smith
Is there a specific version of the flash player that is required for flex 3? Didn't see it on Labs, I was curious as flex 3 has a lot I want to use in an upcoming project, but the site needs to run in 9.0. Not a minor version.

RE: [flexcoders] Find parent of selected item in tree

2007-09-24 Thread Tracy Spratt
Use the XML.parent() method. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dffmyco Sent: Monday, September 24, 2007 10:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Find parent of selected item in tree I just

RE: [flexcoders] Find parent of selected item in tree

2007-09-24 Thread Alex Harui
Isn't it just selectedItem.parent()? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dffmyco Sent: Monday, September 24, 2007 7:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Find parent of selected item in tree I just ca

RE: [flexcoders] Any non-attendee access to Adobe Max presentations?

2007-09-24 Thread Matt Chotin
We hopefully will provide some. Not sure on the timing of when they would become available. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Connolly Sent: Monday, September 24, 2007 10:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Any non-att

RE: [flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Alex Harui
Geez, Ben, you keep finding all the ways the XML doesn't behave like normal objects. I think you'll have to handle dragDrop and dragComplete events yourself, calling preventDefault(), and handling the move differently. You'll see code that does this in Tree. A D&D move adds to the destinat

Re: [flexcoders] Re: ColorPicker colorField

2007-09-24 Thread Ben Marchbanks
I used a workaround as follows that allowed me to overcome this bug private function setColorField():void{ var L = colorsList var cArr:Array = new Array() for(var i:int = 0; i < L.length();i++){

RE: [flexcoders] Re: ColorPicker colorField

2007-09-24 Thread Alex Harui
I would convert the XML to objects or class instances. Ben's example uses XML. Did yours? If not, post what you have. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gary_mangum Sent: Monday, September 24, 2007 10:52 AM To: flexcoders

[flexcoders] Re: ColorPicker colorField

2007-09-24 Thread gary_mangum
Alex, is there a way to successfully use the colorField right now, or is this completely broken? If it is usable, do you have an example of how to use it? Thanks, Gary --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Unfortunately, the code looks like it doesn't han

[flexcoders] Flex builder adding size to SWF Files

2007-09-24 Thread illiasdissi
I'm currently working on a Flex app, who's real file size is between 750k and 780k. But it seems for no reason I can pin down, Flex Builder will add size to it resulting in a SWF file that is 1mb. What am I doing wrong? I clean my project and make sure to remove any unused resources in project fold

[flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Ben Marchbanks
I have a TileList with an e4x dataProvider - I want to simply allow the user to re-order the list using builtin drag and drop. I enabled the list with - drag enabled, drop enabled, move enabled and as soon as an item is dragged it throws an error at the following line in TileBase.as dropIndic

[flexcoders] Any non-attendee access to Adobe Max presentations?

2007-09-24 Thread Peter Connolly
Just wondering, since I can't afford to go to Chicago... Will Adobe be providing access to any of the presentation materials from this year's Max conference? TIA, pc

[flexcoders] questions for a flex / flash online show

2007-09-24 Thread grimmwerks
Hey all; I'm offering myself up as a spokesperson for the group :P I'm being sent to Max under On2 to capture segments for a new online show concentrating on Flex/Flash/Air. I've spoken to Mike Chambers about setting up some interviews with the Adobe Illuminati -- I personally want to get to

[flexcoders] validator graphic problem

2007-09-24 Thread yansidi
hi, i wrote a custom validation manger that has a deactivate function that looks like this: public function deactivate():void { for each(var v:Validator in validators) { if (v.source && v.source is UIComponent) { v.source.errorStrin

[flexcoders] JBoss or Tomcat

2007-09-24 Thread Rich Tretola
We have been deploying Flex FDS and now LiveCycle data services on JRUN in the past and are considering moving to TomCat or JBoss. Anyone have anything good or bad to say about their application server choice for Enterprise Flex?

Re: [flexcoders] possible solution for RTL (right to left) text input

2007-09-24 Thread paulh
wci.geo wrote: > for me? See if it is working in a real RTL environment. actually it's not "just" RTL, technically it's BIDI (bidirectional) as not everything's RTL, numbers are still LTR. so one hundred is still 100 in locales w/RTL writing systems, not 001. for data entry, the arrow key direct

RE: [flexcoders] Detecting click of menubar on root

2007-09-24 Thread Alex Harui
Try "change" event From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Steven Sent: Monday, September 24, 2007 7:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Detecting click of menubar on root I am creating a menubar t

[flexcoders] possible solution for RTL (right to left) text input

2007-09-24 Thread wci.geo
Possible solution for RTL (right to left) text input hi guys, other day I was reading online, someone was talking about Flex 2.0 does not support RTL. So I try writing this code to fake it. Since my computer doesn't have any RTL input, can someone try it out for me? See if it is working in a real

RE: [flexcoders] Re: ColorPicker colorField

2007-09-24 Thread Alex Harui
Unfortunately, the code looks like it doesn't handle xml. Please file a bug From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Marchbanks Sent: Monday, September 24, 2007 7:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

Re: [flexcoders] XMLList!!

2007-09-24 Thread Paul deCoursey
.item.child("koala").(text()=="Y") figo2324 wrote: > > Hi people, i need your help, i have a xmllist object so i need to > query this xmllist, im doing it in this way > > var jo:XMLList=myDataProvider.data.item.(koala=="Y"); > > where myDataProvider.data = > > > ccct > X > > > sambil > Y >

[flexcoders] Re: XMLList

2007-09-24 Thread figo2324
hi ben, i doesnt work, i tried this var va:String="centro"; var jo:XMLList=myDataProvider.data.item.([va]=="tolon"); it has a error, it says that it cant compare a string with an array and i tried this too var va:String="centro"; var jo:XMLList=myDataProvider.data.item.({va}=="tolon"); but nothing

  1   2   >