Re: [flexcoders] navigateToURL() GET method works fine, but POST doesn't work.

2007-09-24 Thread Manu Dhanda
Anyone with a solution to my following problem Manu Dhanda wrote: Hii On the click of a button, am calling following method: public function openNewWindow(event:MouseEvent):void { var url:URLRequest = new

[flexcoders] relationship mapping

2007-09-24 Thread Toby Tremayne
Can anyone point me to code or tutorials for flex or flash that will allow generation of a display of linked data items? Not quite a mind map but basically something that will scale the display and move items around to make them fit on screen, with various links to each other. Make any

[flexcoders] CircleBox component?

2007-09-24 Thread sgrace99
Has anyone seen a custom component that keeps children arranged in a circle?

[flexcoders] Re: Open SWF from another SWF.

2007-09-24 Thread helix206
Can you please explain a bit more? Whats a shell app? Thanks. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You can't use a shell app with SWFLoader? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Printing custom DataGrid in landscape orientation

2007-09-24 Thread Tom Chiverton
On Thursday 20 Sep 2007, [EMAIL PROTECTED] wrote: Did you try embedding fonts and rotating the PDG? This solves a slightly different user story (I think) - what happens if I offer the user a nice Flex GUI for picking landscape (or not) or just decide landscape for them, and then they choose

Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?

2007-09-24 Thread Tom Chiverton
On Thursday 20 Sep 2007, [EMAIL PROTECTED] wrote: ya but the problem is i dont know what to do, like i have no idea, i even did the projects provided by adobe but there is still alot more to learn I belive there are bugs open on FlexLib on Google Code :-) -- Tom Chiverton Helping to

Re: [flexcoders] Re: Code behind - class extend mxml vs. mxml extend class

2007-09-24 Thread Tom Chiverton
On Friday 21 Sep 2007, [EMAIL PROTECTED] wrote: Eh ? We use data binding with code behind all the time. It's fine. Which code behind approach do you use Tom? The extends approach or the source include? An MXML file who's root tag is an AS class (i.e. extends). -- Tom Chiverton Helping to

RE: [SPAM] [flexcoders] upload file to base64

2007-09-24 Thread Paul Steven
Hi Slash I am doing something similar using Flex 2.0 I am converting a file to binary ByteLoader = new URLLoader(); ByteLoader.dataFormat = URLLoaderDataFormat.BINARY; ByteLoader.addEventListener (Event.COMPLETE, fileLoadComplete);

Re: [flexcoders] Re: Code behind - class extend mxml vs. mxml extend class

2007-09-24 Thread Tom Chiverton
On Thursday 20 Sep 2007, [EMAIL PROTECTED] wrote: You just saw it :) Bizarre. I wonder why they said that ? is rewritten to code behind. Besides a 'code generator' is only an Eclipse plugin away. It's not a point in how long it takes, it's just not meant to be used like that. If it would

[flexcoders] sequential remote calls

2007-09-24 Thread rleuthold
Hi there, I want to have sequential RPC's. More precisly, I'd like to build DataGrids and get the data for each one from a database. My only problem is, that I have to wait for the RPC result to assign the data for the grid. How do I wait for the result handler ? Or better, how do I initiate

[flexcoders] flex ant tasks

2007-09-24 Thread Mubasher Hanif
I am trying to compile my whole flex data services project through flex ant task (adobe labs); First of all, if someone can tell that, when you are building your project through ANT using flex ant task is a good option or not. I used the below mentioned code using flex Ant task and its

[flexcoders] Re: Code behind - class extend mxml vs. mxml extend class

2007-09-24 Thread b_alen
You just saw it :) Bizarre. I wonder why they said that ? You can always pay for consultancy and ask :) Do send me one simple example to see how you're using it exactly. Send me MXML and it's AS, I have to examine it, I think we might not be on the same page here.

[flexcoders] Flash player 9 standalone download

2007-09-24 Thread helix206
Can anyone please tell me where can i download the FP9 standalone player and active X so that i can put them on the CD for my clients? I cant find them anyware on adobe. thansk alot.

Re: [flexcoders] Re: Code behind - class extend mxml vs. mxml extend class

2007-09-24 Thread Tom Chiverton
On Monday 24 Sep 2007, [EMAIL PROTECTED] wrote: You just saw it :) Bizarre. I wonder why they said that ? You can always pay for consultancy and ask :) Or not. Do send me one simple example to see how you're using it exactly. Send me MXML and it's AS, I have to examine it, I think we

[flexcoders] Using special characters in Flex

2007-09-24 Thread helix206
I have a problem with \ character in flex. I want to send it to JS function with external interface, but if i do it like this : ExternalInterface.call(test,dir\\test.exe); in JS i get dir est.exe. Any way to solve that? Thanks

Re: [flexcoders] CircleBox component?

2007-09-24 Thread Bart Wttewaall
Can't be too hard to create something like that on your own? Here's a method for drawing a circle, you can adapt it to arrange children in a circle (from org.as2base.math.Circle2D): function draw( mc:MovieClip, x:Number, y:Number, r:Number ):Void { var segAngle, theta, angle, angleMid, segs,

[flexcoders] SetVariable vs External Interface AS3's root

2007-09-24 Thread Bart Wttewaall
Hi List, I made an application in AS2 a while ago that got fed values externally by LUA code. There were 2 ways of doing this: by making use of External Interface, or by using flashobject.SetVariable(prop, value). After some tests it became clear that the use of External Interface was as much as

Re: [flexcoders] Flash player 9 standalone download

2007-09-24 Thread Bart Wttewaall
After installing Flex 2, you can find the player in the install folder: C:\Program Files\Adobe\Flex Builder 2\Player\debug\Install Flash Player 9.exe 2007/9/24, helix206 [EMAIL PROTECTED]: Can anyone please tell me where can i download the FP9 standalone player and active X so that i can

[flexcoders] localization options in flex 2

2007-09-24 Thread aaron smith
Quick question. I'm looking into localization for an app, and one of my concerns is that every piece of text has to be in the correct language for a region. en, fr, etc. But there is quite a bit of text. So instead of having a .properties files for all these different languages for every piece of

RE: [flexcoders] Flash player 9 standalone download

2007-09-24 Thread Stephane De Jonckheere
Hello, Here is the link for the activex version of flash player 9: http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/i nstall_flash_player_active_x.msi From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of helix206

Re: [flexcoders] JPGEncoder with progress support?

2007-09-24 Thread Jon Bradley
As far as I know, callLater is part of the Flex framework. You can't use that if you're writing your own AS3 classes that do nothing with the framework... cheers, jon On Sep 23, 2007, at 1:29 PM, Arpit Mathur wrote: on using timer for screen updates: Is there any advantage (or

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Mike Krotscheck
We're using something similar for a localization project of our own. The application pulls the configured language from the users preferences, the local system setting, or the application configuration (in that order) and based on that populates a Strings Value Object that's housed on our

Re: [flexcoders] Re: Memory usage by flex

2007-09-24 Thread Scott - FastLane
I have posted a few things on my blog about flex memory leaks and other performance issues. The first post is http://blog.fastlanesw.com/?p=14 That post describes issues I encountered with unbounded memory growth when binding my DataGrid controls directly to e4x XML data returned from an

[flexcoders] Re: localization options in flex 2

2007-09-24 Thread ben.clinkinbeard
Sounds like this might suit your needs: http://brianjoseph31.typepad.com/smashedapples/2007/09/sweet-flex-tr-1.html --- In flexcoders@yahoogroups.com, aaron smith [EMAIL PROTECTED] wrote: Quick question. I'm looking into localization for an app, and one of my concerns is that every piece of

[flexcoders] Re: disable KeyUp/KeyDown on datagrid

2007-09-24 Thread Cyril
To give some feedback on my problem, after replacing some values in my DG with icons, it slowed down the keyboard navigation and solved my problem. Not really a solution, but it's working :-) --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Depends on whose listening.

Re: [flexcoders] Flex 3 Change Tab Order - Doesn'T Seem To Work Correctly

2007-09-24 Thread Tom Chiverton
On Monday 24 Sep 2007, [EMAIL PROTECTED] wrote: doesn't work. I select the index of the panel in the appropriate Accordion so that the panel becomes visible, then I set focus to the field and call the validateNow() method on the field. No workee. What happens if you callLater() the setting

[flexcoders] RTMP over SSL (NOT A RTMP over HTTPS) problem

2007-09-24 Thread imrahil_poland
Hi there, We are trying to implement scenario where Flex based client connects using RTMP over SSL (NOT A RTMP over HTTPS) flex documentation suggests it should be possible (http://livedocs.adobe.com/flex/201/langref/flash/net/NetConnection.html#proxyType). We are currently not planning to use

[flexcoders] Smoother collapsing search panel

2007-09-24 Thread Cyril
Hi, can anyone help me getting my search panel to collapse smoothly ? You can get the source here : http://blogofitz.terapad.com/resources/5282/assets/Flex/testSmoothColla psingPanel.zip Just click on the button (logic removed) to go to the result page, and click on the left bar to go back to

Re: [flexcoders] RTMP over SSL (NOT A RTMP over HTTPS) problem

2007-09-24 Thread Tom Chiverton
using RTMP over SSL (NOT A RTMP over HTTPS) flex documentation Umm. I'm confused (easy enough to do :-) ). Is HTTPS not just what web browsers display when they are using SSL (or TLS rather) ? -- Tom Chiverton Helping to augmentatively fashion efficient solutions on:

Re: [flexcoders] Smoother collapsing search panel

2007-09-24 Thread Tom Chiverton
On Monday 24 Sep 2007, [EMAIL PROTECTED] wrote: can anyone help me getting my search panel to collapse smoothly ? Is there an effect on it ? Such as Resize ? -- Tom Chiverton Helping to completely revolutionize frictionless IPOs on: http://thefalken.livejournal.com

[flexcoders] Re:Memory usage by flex

2007-09-24 Thread Daryl Joseph Ducharme
The actionscript virtual machine grabs needed memory chunks at a time, rather than grabbing it little by little. So that might be why it grabs memory at the beginning. Without the tool that will be coming with flex 3 it is hard to tell what is really happening. However, a good resource for

[flexcoders] Re: RTMP over SSL (NOT A RTMP over HTTPS) problem

2007-09-24 Thread imrahil_poland
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: using RTMP over SSL (NOT A RTMP over HTTPS) flex documentation Umm. I'm confused (easy enough to do :-) ). Is HTTPS not just what web browsers display when they are using SSL (or TLS rather) ? According to the

[flexcoders] Re: Flash player 9 standalone download

2007-09-24 Thread helix206
Thanks but i need the latest version 9.47 standalone. Any links on Adobe website? I think Adobe should make this simpler. --- In flexcoders@yahoogroups.com, Bart Wttewaall [EMAIL PROTECTED] wrote: After installing Flex 2, you can find the player in the install folder: C:\Program

[flexcoders] [Job] Contract and Full-time Game Programming Positions

2007-09-24 Thread Jobe Makar
Electrotank is looking for a combination of contractors and full-time hires. See details below. Electrotank (http://www.electrotank.com) is an established award-winning game development company specializing in multiplayer games. Client list includes MTV, VH1, Comedy Central, Disney, Mattel, and

[flexcoders] Find parent of selected item in tree

2007-09-24 Thread dffmyco
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 name when a species is selected. Note that a species name is not unique to a genus name, Uromyces ingae and Puccinia ingae public var nameData:XML

[flexcoders] Re: Smoother collapsing search panel

2007-09-24 Thread Cyril
Hi Tom, yes, there's a resize effect. I'm using states to show/hide the search panel. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 24 Sep 2007, [EMAIL PROTECTED] wrote: can anyone help me getting my search panel to collapse smoothly ? Is there an

[flexcoders] Detecting click of menubar on root

2007-09-24 Thread Paul Steven
I am creating a menubar that does not have any drop down items and I am not sure how to detect clicks on these root menu items. The following function only appears to detect clicks on drop down items private function menuHandler(event:MenuEvent):void { Alert.show(Label:

[flexcoders] Re: ColorPicker colorField

2007-09-24 Thread Ben Marchbanks
I'm not having much luck either. My colorField is derived from e4x formatted result to query of a colorChart table. Here are all the particulars. mx:ColorPicker x=271 y=352 width=47 height=52 change=colorize(Number(colorPicker.value)) id=colorPicker dataProvider={colorsList}

[flexcoders] MXML value / Difference between default value and a mxml value

2007-09-24 Thread kramus0
Hi, this might sound difficult but I'm sure it isn't. I have written my own ActionScript class that extents from LinkButton. But I want that my LinkButton class uses a normal font (fontWeight = normal) as default instead of the bold font. But how can I distinguish between the default value

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Brian Holmes
Hi Aaron, As Ben pointed out I'm working on a different way to do localization, well, actually I just want to do language translation. A blog entry I wrote about this can be found here http://brianjoseph31.typepad.com/smashedapples/2007/09/sweet-flex-tr-1.h tml And i'm getting a bit further

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

2007-09-24 Thread David Simpson
whats the best way to pass string from flex main application.mxml to some custom component? Thanks. Building a website is a piece of cake. Yahoo! Small Business gives you all the tools to get online.

[flexcoders] Re: Real size of components

2007-09-24 Thread Daniel
Hey guys, I used the validateNow() from the component's parent and didn't worked either... so I used the updateComplete handler and worked perfectly... not the best of ways, cause now I have two more properties in my class, but hey... it worked =D Thanx to all... DaNooB --- In

RE: [flexcoders] Re: Real size of components

2007-09-24 Thread Alex Harui
I suppose that's possible if the final size is actually driven by a grandparent or higher up. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Monday, September 24, 2007 8:27 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: XMLList

2007-09-24 Thread figo2324
Hi alex, thank for response but it doesnt work, i try it var va:String=centro; var jo:XMLList=myDataProvider.data.item.([va]==tolon); but nothing that has a error, it cant compare an array with a string, it take [va] how an array, some suggestion please. Thanks... --- In

[flexcoders] XMLList!!

2007-09-24 Thread figo2324
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 = data item pruebaccct/prueba koalaX/koala /item item pruebasambil/prueba koalaY/koala /item

[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. any

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 = data item pruebaccct/prueba koalaX/koala /item

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]

[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

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

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

[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?

[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.errorString

[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

[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] 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

[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

[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 handle

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:

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] 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 DD move adds to the

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

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

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

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

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:

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 hundred is

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] Re: Open SWF from another SWF.

2007-09-24 Thread Alex Harui
A shell app would look something like: mx:Application mx:SWFLoader source=someapp.swf / mx:SWFLoader source=someapp2.swf / /mx:Application Use of TabNavigator/ViewStack, the visible property and other logic should make it look like your HTML app?

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 :::

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

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

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=1Object=FileobjectI D=690 Tracy From:

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

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

[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 name when

[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: Device

[flexcoders] Problem with rollOver and rollOut

2007-09-24 Thread Guillermo Villasana
Hello everyone, I have the following code: !code -- mx:Canvas id=id_cvs rollOut=Alert.show('Roll out'); rollOver=Alert.show('Roll over'); mx:TileList x=0 top=24 id=id_tile_subnav direction=vertical themeColor=#006633

[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

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

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

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

[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

[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 dffmyco@ wrote: I just can not seem to figure out how to get

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-AppearanceEffects-Use the following method to smooth edges of screen fonts. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

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

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. !code -- mx:Canvas id=id_cvs rollOut=Alert.show('Roll out');

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

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:

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:

[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 in this way

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: 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.

[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?

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,

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

[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 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%40yahoogroups.com [mailto:flexcoders@yahoogroups.com

[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] tabNavigator - dynamic tabs?

2007-09-24 Thread Scott - FastLane
Have you looked at SuperTabNavigator in FlexLib http://code.google.com/p/flexlib/wiki/ComponentList? 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

  1   2   >