RE: [flexcoders] Can Anyone Please Get Me Some Space

2006-05-16 Thread Matt Chotin
Did you see that cfdynamics is offering hosting services for the derby? Check the derby website for more info. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Faisal Abid Sent: Tuesday, May 16, 2006 1:19 PM To: flexcoders@yahoogroups.com Subjec

Re: [flexcoders] Re: OLAP grid with Flex

2006-05-16 Thread jeremy lu
I love jaco pastorius too, btw...On 5/17/06, Tim Hoff <[EMAIL PROTECTED]> wrote: Hi Alessandro,Very cool idea!  You could probably achieve drill-down withexpansion in place.  There is an example in the Flex ComponentExplorer under states.  For pivoting the axis, you could have twoview states, e

Re: [flexcoders] Visual Samples of F2B3 Themes?

2006-05-16 Thread jeremy lu
there's a AeonGraphical.swf inside the framework theme folder. btw, source FLA is included. On 5/17/06, Ethan Miller <[EMAIL PROTECTED]> wrote: Pointer please?thanks, ethan Yahoo! Groups Sponsor ~-->Home is just a click away. Make Yahoo! your home pa

[flexcoders] Re: Flex 1.5: Using columnName + labelFunction in a DataGrid

2006-05-16 Thread nahruka
Thank you very much! It worked perfectly! Barbara. --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > No, I don't believe that will work. > > I would just use the labelFunction to get the string value when I needed > it programmatically: > var sFullName:String =

RE: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Dirk Eismann
Rest assured, it works. Been there, done that :) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael SchmalleSent: Tuesday, May 16, 2006 11:46 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Flex2B3 :: Transitions :: Can I create a tr

[flexcoders] MenuBar Border Re:Re:

2006-05-16 Thread Tim Hoff
Yeah, I know.  This just showed up from B2 to B3 and I'm stumped. Changing the borderStyle does effect it but doesn't remove it completly.  I've been fiddling around with this all day.  Trying different CSS combinations. -TH --- In flexcoders@yahoogroups.com, "jeremy lu" <[EMAIL PROTECTED]>

Re: [flexcoders] FB2B3 programmatically select an item in a ComboBox

2006-05-16 Thread jeremy lu
oh I see, usually I would do more processings inside the loop, so I tends to store it in a local variable then the app don't have to evaluate it over and over, but in this simple case, it is indeed extra step. thanks for the info.On 5/17/06, Gordon Smith <[EMAIL PROTECTED]> wrote:

Re: [flexcoders] MenuBar Border Re:Re:

2006-05-16 Thread jeremy lu
well that's very interesting, I don't know it's that tricky to hide the border, will take a look at it tonight.On 5/17/06, Tim Hoff < [EMAIL PROTECTED]> wrote:Yep,borderStyle:"none";andborderThickness:0; The border, from top-to-bottom looks like a gradient.  If I changethe border color to white

Re: [flexcoders] invalidateList() problem

2006-05-16 Thread Rishikesh Shetty
On 5/12/06, Brian Lesser <[EMAIL PROTECTED]> wrote: For performance reasons I would like to use Array methods to directlymanipulate an array acting as a List component's dataProvider. AfterOne more thing you could try instead of manipulating the underlying Array directly is, calling disableAutoU

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
I was just thinking that you would probably call a command (or function in a viewHelper) anyway to change the enabled items.  I'll get out of the way and let some of the heavy hitters advise.  Nice puzzle though. Cheers, Tim --- In flexcoders@yahoogroups.com, Graham Weldon <[EMAIL PROTECTE

Re: [flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Graham Weldon
Hi Tim + group :P, Interesting idea, I like this one also. It wouldn't be too cumbersome, since the XML is naturally small, being a simple menu. However, what would trigger the "rewrite" of the rawMenuXML variable? Trying to keep this in line with the cairngorm best practices and framework,

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
In for a penny, in for a pound.  What if you put your XML variables in the ModelLocator.  When you want to change the menu, update the ACTION_ENABLED variables first and then rewrite rawMenuXML? [Bindable] private var menuXML : XMLListCollection = new XMLListCollection(rawMenuXML); [Bindable]

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
Well, it was worth a try. :) --- In flexcoders@yahoogroups.com, Graham Weldon <[EMAIL PROTECTED]> wrote: > > Tim, > > That would also introduce an error since the XML is a constructed String > that is passed into an XMLList. > Ie: > > var MyXMLString : String = ' .. ' + MyVariables + '

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
Ok, not regExp, AscII { and }. --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > I'm sorry, should be \x7B and \x7D.  > > --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > > One other thought.  Instead of using the curly braces in the XML, > do > > yo

Re: [flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Graham Weldon
Tim, That would also introduce an error since the XML is a constructed String that is passed into an XMLList. Ie: var MyXMLString : String = ' .. ' + MyVariables + ' .'; var myXMLList : XMLList = new XMLList(MyXMLString); I think this means that the value is included correctly, but i

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
I'm sorry, should be \x7B and \x7D.  --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > One other thought.  Instead of using the curly braces in the XML, do > you think that you could use the special characters like /n7B > and /n7D? > > > --- In flexcoders@yahoog

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
One other thought.  Instead of using the curly braces in the XML, do you think that you could use the special characters like /n7B and /n7D? --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > That's cool Graham.  I might use your solution as well, until the > MenuB

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
That's cool Graham.  I might use your solution as well, until the MenuBar XML items allow databinding. Later, Tim --- In flexcoders@yahoogroups.com, Graham Weldon <[EMAIL PROTECTED]> wrote: > > Hi Tim, > > I like your concept, but I don't feel that it will be practical for the > situatio

Re: [flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Graham Weldon
Hi Tim, I like your concept, but I don't feel that it will be practical for the situation in which I want to use it. I have this data binding working on a tool bar, which I can define completely with MXML... (detailed below). Note that some of the names have changed since my last post, but

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
Yeah, I was afraid of that.  You would probably have to dispatch an event that is listened for by the view, when you want to enable/disable menu options.  The listening function would do something like this: private function enableMenuItems(mb:MenuBar):void   {   for (var i:int = 0;

Re: [flexcoders] MenuBar enable and disable items in MXML with dataProvider (f2b3)

2006-05-16 Thread Graham Weldon
The SAVE_AS public variable is a Boolean type. Regards, Graham Weldon Manish Jethani wrote: > On 5/16/06, Graham Weldon <[EMAIL PROTECTED]> wrote: > > > > Note that in this example, when I use the text values "true" and > > "false", they are enabled and disabled appropriately. However, wh

Re: [flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Graham Weldon
Hi Tim, Curly braces dont work for data binding within ActionScript in the manner you suggest: *    Expecting colon before dot. *    Syntax Error: rightbrace is unexpected. *    Expecting rightbrace before semicolon. Those are the compile errors encountered. Perhaps there is another wya to u

[flexcoders] Re: MenuBar using databinding

2006-05-16 Thread Tim Hoff
Did you try this: (curly braces for binding) --- In flexcoders@yahoogroups.com, "Graham Weldon" <[EMAIL PROTECTED]> wrote: > > I've asked this question previously, but in a slightly different > manner, and since its post, I ahve managed to make some progress. > > I have created a new MXML c

[flexcoders] MenuBar using databinding

2006-05-16 Thread Graham Weldon
I've asked this question previously, but in a slightly different manner, and since its post, I ahve managed to make some progress. I have created a new MXML component that represents a MenuBar with some items within that will not change except for their enabled value. I am building this on top

RE: [flexcoders] Release Dates?

2006-05-16 Thread Gordon Smith
"The first half of the year."   - Gordon   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Gustafson Sent: Tuesday, May 16, 2006 2:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Release Dates?   Has Adobe given any indications on w

RE: [flexcoders] Handling CSS

2006-05-16 Thread Gordon Smith
I meant that the framework isn't designed to make this "just work". The player has some CSS parsing capabilities, you could write your own CSS parser in AS3, you could transform CSS  into XML on the server and send it down to be parsed with E4X, etc.   We will likely make runtime CSS su

Re: [flexcoders] Beta3 Tree With Lines... Possible?

2006-05-16 Thread jeremy lu
well, it's that time to talk about tree and renderers again :P yes, you can use item renderer to draw those line inside to achieve that. On 5/17/06, sufibaba <[EMAIL PROTECTED]> wrote: Hi All,Since Beta3 Tree has undergone a big change, does anyone know how toModify the Beta3 Tree component t

[flexcoders] MenuBar Border Re:Re:

2006-05-16 Thread Tim Hoff
Yep, borderStyle:"none"; and borderThickness:0; The border, from top-to-bottom looks like a gradient.  If I change the border color to white, it goes from white to pink.  That makes me think that it has to do with fillColors and fillAlphas (inherited and local).  Tried those combinations o

[flexcoders] Flex2 Formatted Text

2006-05-16 Thread Clarke Bishop
For instructions and simple reports, I want to have nice formatted text that supports various font faces and font sizes, bold, italic, ordered and unordered lists, simple tables, etc.   HTMLText is close, but doesn't do tables or ordered lists. And it seems to be finicky about the actual H

[flexcoders] Flex2 Beta 3 overriding default .as editor in eclipse and breaking ASDT

2006-05-16 Thread misprintt
Does anyone have any suggestions on the following?After installing Flex2 Beta 3, ASDT file associations no longer behave properly. My workspace is definitely using the ASDT perspective.My default actionscript editor in preferences>general>editors>file associations is definitely the ASDT editor.M

Re: [flexcoders] MenuBar Border Re:Re:

2006-05-16 Thread jeremy lu
have you tried to set borderStyle: "none" on MenuBar ? On 5/17/06, Tim Hoff <[EMAIL PROTECTED]> wrote: This problem pertains to a MenuBar inside of an ApplicationControlBar.  I've tried everything that I know, but I can't remove a three sided border around the MenuBar: __

Re: [flexcoders] a problem of VideoDisplay and TabNavigator

2006-05-16 Thread 海云飞
Yes, Exactly, after I set the historyManagementEnabled property of TabNavigator to "false",the problem disappeared.thanks, Manish.2006/5/16, Manish Jethani < [EMAIL PROTECTED]>:On 5/15/06, calvin33castic < [EMAIL PROTECTED]> wrote:> In my application, I used VideoDisplay and TabNavigator.> But t

[flexcoders] MenuBar Border Re:Re:

2006-05-16 Thread Tim Hoff
This problem pertains to a MenuBar inside of an ApplicationControlBar.  I've tried everything that I know, but I can't remove a three sided border around the MenuBar: ___ |   

Re: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Chris Velevitch
Try:- http://livedocs.macromedia.com/labs/1/flex20beta3/langref/mx/states/Transition.html Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Sear

[flexcoders] Release Dates?

2006-05-16 Thread Steve Gustafson
Has Adobe given any indications on when FlexBuilder and Flash 9 will be released?I'm starting a project for a client and Flex is the right tool... but it has to be out of beta to give to the client.Any insights would be helpful. Thanks. -- Flexcoders Mailing List FAQ: http://groups.yahoo.c

[flexcoders] Flex Style Explorer in Flex Builder

2006-05-16 Thread Graham Weldon
Hi, I think it would be a wonderful idea to have the Flex Style Explorer builtin to the Flex Builder, even just an additional button that launches the SWF in the external Flash player would be great. For the moment, I copy the SWF from the site onto my taskbar, and launch from there. I feel th

Re: [flexcoders] Handling CSS

2006-05-16 Thread Michael Schmalle
BTW, You can achieve this by loading and using regexp. Then set the styles however you feel fit. It's not to hard, but as I said there are things you can't do that the compiler does. This dosn't mean you couldn't create a secondary protocal for such things. Peace, MikeOn 5/16/06, Michael Schm

Re: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Michael Schmalle
Yeah, That is what I thought also, but looking on the b3 docs, mx.transitions is no longer listed. I hadn't tried importing the package. Peace, MikeOn 5/16/06, Dirk Eismann <[EMAIL PROTECTED]> wrote: Don't have the documentation in front of me but it should be mx.states.Transition Dirk.

[flexcoders] Beta3 Tree With Lines... Possible?

2006-05-16 Thread sufibaba
Hi All, Since Beta3 Tree has undergone a big change, does anyone know how to Modify the Beta3 Tree component to display connector lines -- Like the one shown under "Rich Graphics" at the following Link: http://_javascript_.cooldev.com/scripts/cooltree/demos/superdemo/ Cheers, Tim

[flexcoders] Re: No mx.data in "Basic" flex project. Is there an easy way to convert to FDS project?

2006-05-16 Thread Tom Bray
I just found and added the enterpise.swc (C:\fds2\jrun4\servers\default\flex\WEB-INF\flex\libs\enterprise.swc), and that's probably all I need for now.-TomOn 5/16/06, Tom Bray <[EMAIL PROTECTED]> wrote: When creating a Flex Project, if you choose "Basic" instead of "Flex Data Services" and lat

[flexcoders] Re: No mx.data in "Basic" flex project. Is there an easy way to convert to FDS project?

2006-05-16 Thread Tim Hoff
There's probably a better way to do this.  But you could use the same steps as moving from B2 to B3.  Backup your files, delete your project definition, create a new project (same name but with fds), and copy/paste the application mxml file code into the new application file.  A workaround -

Re: [flexcoders] Handling CSS

2006-05-16 Thread Michael Schmalle
< Flex doesn't support runtime CSS. You must compile the CSS into your SWF. Yeah it does ;-) I've got a scheme in my extended workspace component set comming out. You'll have to see then how I implemented it. There are always ways to get in, always... :-) Peace, MikeOn 5/16/06, Gordon Sm

Re: [flexcoders] Handling CSS

2006-05-16 Thread Michael Schmalle
... obviously there are some things 'not supported' I think anybody that is logical can consider the things that couldn't work :) Peace, MikeOn 5/16/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: < Flex doesn't support runtime CSS. You must compile the CSS into your SWF. Yeah it does ;-)

RE: [flexcoders] Using a logical AND in property.

2006-05-16 Thread Gordon Smith
<, >, and & are special characters in XML and therefore in MXML. You can't use them in attribute values as is; you have to encode them as the "entities" < > and & Therefore the way to write && in an attribute value is && It's ugly, but if we broke this rule in MXML you wouldn't be able to mani

[flexcoders] No mx.data in "Basic" flex project. Is there an easy way to convert to FDS project?

2006-05-16 Thread Tom Bray
When creating a Flex Project, if you choose "Basic" instead of "Flex Data Services" and later realize you want to use the data service, is there an easy way to convert the project or at least include the mx.data libraries?Thanks,Tom -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/

RE: [flexcoders] Re: Passing data between two datagrids

2006-05-16 Thread Tracy Spratt
Here is a sample app that does what I think you want. Tracy       initialize="initApp()">           dataProvider="{aDP2}" >           

Re: [flexcoders] Capture a DisplayObject or UIComponent as a jpg? flex2b3

2006-05-16 Thread Rishikesh Shetty
On 5/16/06, rigidcode <[EMAIL PROTECTED]> wrote: Can I (programmatically) get a jpg or bitmap of a DisplayObject or aUIComponent as it looks in the browser?  Like as a bitmap or jpg orsomething.See flash.display.BitmapData.draw (). Should work on VideoDisplay, but havent tried it.-rishi --

RE: [flexcoders] Array filter method

2006-05-16 Thread Francis Cheng
Hi Sergio, Perhaps I'm misunderstanding your question, but I can't reproduce issue #1. The following call to the filter method returns a multidimensional array: import flash.display.Sprite; var arr:Array = [[-1,-2,-3],[3,5,4], "foo"]; function isArray(elem:*, index:int, arr:Array):Boolean {

RE: [flexcoders] Handling CSS

2006-05-16 Thread Gordon Smith
Flex doesn't support runtime CSS. You must compile the CSS into your SWF. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dmandrio Sent: Tuesday, May 16, 2006 2:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Handling CSS

[flexcoders] Re: Trouble getting started with cairngorm-0.99

2006-05-16 Thread Suzy Lawson
Doug,   You have a namespace issue. Few things to check: 1.) Make sure that in your flex-config.xml, you have this in your area: http://www.iterationtwo.com/cairngorm">    /WEB-INF/flex/cairngorm-manifest.xml 2.) make sure the cairngorm-manifest.xml file is actually in the web-inf/flex dir.

[flexcoders] Re: Passing data between two datagrids

2006-05-16 Thread Doug Lowder
I could be wrong, but I think you're missing something here.  The initObj parameter of the PopUpManager.createPopUp() method is an object that contains properties with the same names as the properties of the component you want initialized.  So, if your popup component contains a property nam

RE: [flexcoders] FB2B3 programmatically select an item in a ComboBox

2006-05-16 Thread Gordon Smith
The whole chain of what?   Storing the dataProvider, the loop limit, and the data you're looking for in local vars WOULD be more efficient because they remain the same throughout the loop and it is inefficient to evaluate them over and over. But the item changes with each iteration so s

[flexcoders] Re: Flex B3 - Label's fontSize, fontWeight not available via Actionscript?

2006-05-16 Thread willchapm
Thanks, TH.  That worked like a champ! --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > You can use setStyle: > > sig.setStyle("fontWeight", "bold"); > > TH > > > --- In flexcoders@yahoogroups.com, "willchapm" wrote: > > > > An mx:Label's font attributes are not

RE: [flexcoders] Re: Passing data between two datagrids

2006-05-16 Thread Tracy Spratt
Actually, If I understand what you are trying to do, I would just pass in dgTeamMemberName.selectedItems.  Though be careful, that might be a reference to the original elements in the main array.   Have you traced out the arrays using toString(), to make sure you have what you expect at

Re: [flexcoders] Re: delete class instances

2006-05-16 Thread Darren Houle
This may have already been answered somewhere, but I've searched and if it's out there it's not really obvious... I am pulling data from a CFC and displaying it in a DataGrid.  When I click on a grid header to sort and there's a blank first row in that column I get: Error: Cannot determine c

Re: [flexcoders] Can Anyone Please Get Me Some Space

2006-05-16 Thread Faisal Abid
HUH? what does that have to do with this, but good site. Mahmoud Elsayess wrote: > Hi Faisal, >  > Have you seen my website? I think you would be interested to check it > out and you can type any word in Arabic using my Arabic Abacus. > www.readverse.com >  > Ma

Re: [flexcoders] Can Anyone Please Get Me Some Space

2006-05-16 Thread Mahmoud Elsayess
Hi Faisal,   Have you seen my website? I think you would be interested to check it out and you can type any word in Arabic using my Arabic Abacus. www.readverse.com   Mahmoud Elsayesswww.readverse.com - Original Message - From: Faisal Abid To: flexcoders@yahoogroups

[flexcoders] Can Anyone Please Get Me Some Space

2006-05-16 Thread Faisal Abid
I have been working on an application for the Derby but it involves MYstic and i have a developers version running, Can anyone please give me some space like 5 megs , on there server so i can host my coldfusion/flex application. Please... -- Flexcoders Mailing List FAQ: http://groups.ya

Re: [flexcoders] Running Dreamweaver & Flex builder at the same time

2006-05-16 Thread Dan Radigan
Barry- FlexBuilder 1.5 uses the same codebase as DW.  There is code to see if a "dreamweaver" process already running.  If so, then the one starting up shuts down. Since FB2 is eclipse based, both DW and FB2 run at the same time. Dan João Fernandes wrote: > Are you talking about Flex Build

[flexcoders] Array filter method

2006-05-16 Thread sergio_trejo_r
Hi, two questions regarding the filter method in the Array class. 1) In a two dimensional array the filter method seems to convert the input array into a single dimension array by concatenating the elements of the second array into a CSV string. Is this the expected behavior? 2) Has anyone us

[flexcoders] Re: Passing data between two datagrids

2006-05-16 Thread rgwilson26
I got it to work with the hard coded data.  However, I cannot seem to pass an array in my initObj correctly.  Do I need another loop for my array or is there somthing else I am not seeing? Thanks, ***Main component*public var selectedTeamMembers:Array; public func

RE: [flexcoders] delete class instances

2006-05-16 Thread Darren Houle
Is this what you mean...? ActionScript 3.0 does not support using the delete operator to remove an entire object. In ActionScript 2.0, you could use delete to remove an object or on an object property. In ActionScript 3.0, the delete operator is now ECMAScript compatible, meaning delete can

Re: [flexcoders] Re: delete class instances

2006-05-16 Thread michael . corbridge
did you try 'timer.stop()'  ? private function stopPing():void {     ping = null;     timer.stop();     trace("ping: " +ping); }      

RE: [flexcoders] Re: delete class instances

2006-05-16 Thread Dirk Eismann
You'll have to stop the Timer instance, otherwise the Timer will continue to fire. For example, you could add a public stop() function to the PingTime class: public function stop():void {   if (timer)   {     timer.stop();     timer.removeEventListener(TimerEvent.TIMER, sayPing);     timer = n

RE: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Dirk Eismann
Don't have the documentation in front of me but it should be mx.states.Transition Dirk. -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com im Auftrag von Michael Schmalle Gesendet: Di 16.05.2006 21:19 An: flexcoders@yahoogroups.com Betreff: Re: [flexcoders] Flex2B3 :: Transitio

[flexcoders] Re: delete class instances

2006-05-16 Thread Tim Hoff
I'm not sure, but you might need to stop the timer and remove the eventListener before you set ping to null.  The references may be preventing the class from being available for garbageCollection. TH --- In flexcoders@yahoogroups.com, "Sonja Duijvesteijn" <[EMAIL PROTECTED]> wrote: > > Tha

Re: [Norton AntiSpam] Re: [flexcoders] Borderless Button Component

2006-05-16 Thread Michael Schmalle
Jeff, ;-) Righto I guess I just didn't go the distance to say that. On 5/16/06, Jeff Tapper <[EMAIL PROTECTED]> wrote: I think you could use ProgramaticSkin as the various skins, which is still a valid skin, but which does not have a border. At 03:26 PM 5/16/2006, you wrote: >Hi, > >This

Re: [flexcoders] Attn Adobe - PopupManager.centerPopup() - dosent

2006-05-16 Thread Luís Gustavo Sanabio
I use PopUpManager.addPopUp(DisplayObject(parentApplication), false);  Gustavo Sanabio  On 5/16/06, Jason Hawryluk <[EMAIL PROTECTED]> wrote: My pop-ups are popping up properly.oMyForm = new oMyForm ();PopUpManager.addPopUp(oMyForm,parentApplication.getChildAt (0), false);PopUpManager.centerPopU

Re: [flexcoders] Flex Apps and Google/Search Engines

2006-05-16 Thread Darren Houle
Amazon.com and eBay are (arguably) "apps" and it makes sense to crawl them. Depends on what data you have inside your app and whether you want to make sections of the app or products in the database public, available, and/or easily locatable. Darren >From: "Manish Jethani" <[EMAIL PROTECTED

Re: [flexcoders] Re: delete class instances

2006-05-16 Thread Sonja Duijvesteijn
Thank you for your swift answers, but either I just don't get it, or it's not working. I've changed the function stopPing to the following: private function stopPing():void {    ping = null;        trace("ping: " +ping); }The trace does say (as expected) "ping: null", but it doesn't make the bad

RE: [flexcoders] Using a logical AND in property.

2006-05-16 Thread Darren Houle
Jason, I know this doesn't actually answer your question, but I ran into the same thing recently and found that I was looking at the problem backward. I was trying to set enabled on a Panel based on whether one or more rows were selected in a DataGrid. I tried the same things you did, adding

[flexcoders] deleting display object?

2006-05-16 Thread sof4real03
I'm using states to switch between views of the application. On a certain transition I want the application to delete the instance of the component and not cache it all all for further rendering. So when the user requests that view another time, the application will create a new instance of the

Re: [Norton AntiSpam] Re: [flexcoders] Borderless Button Component

2006-05-16 Thread Jeff Tapper
I think you could use ProgramaticSkin as the various skins, which is still a valid skin, but which does not have a border. At 03:26 PM 5/16/2006, you wrote: >Hi, > >This is a hack but works quick... > >make a var ; > >public var nullSkin:Class > > me.setStyle("upSkin", nullSkin

[flexcoders] Re: Flex Apps and Google/Search Engines

2006-05-16 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, "Rishikesh Shetty" <[EMAIL PROTECTED]> wrote: > Flash 8 swfs and above support Metadata. Google for "flash 8  > swf metadata". The problem with the Flash metadata is that it has to be included before the actual SWF file is compiled. It's pretty useless for a

Re: [flexcoders] delete class instances

2006-05-16 Thread michael . corbridge
To stop the 'ping' just throw a 'timer.stop()' into your stopPing() function.  It worked for me.  I also removed the timer.reset(); timer.start(); from the sayPing() function.  I'm not sure that you need those. This should help cure the 'tinnitus'  :-) Also - did you notice that you did not pl

RE: [flexcoders] Passing data between two datagrids

2006-05-16 Thread Tracy Spratt
This line: teamMemberObj.selectedTeamMembers = dgTeamMemberName.selectedItems[j].name; just puts the last name into the variable.  It needs to be an array, like: var aSelectedMembers:Array; teamMemberObj.aSelectedMembers[j] = dgTeamMemberName.selectedItems[j].name; Then in initPopup: dgTeamMemb

Re: [flexcoders] Flex Apps and Google/Search Engines

2006-05-16 Thread Rishikesh Shetty
  Does anyone have any information or links about how successful Google and other search engine bots are at crawling Flex Apps?  Some of the possibilities for creating online shopping experiences are fantastic, but it has occurred to me that this area of search engine ranking may stumble Fle

Re: [flexcoders] Borderless Button Component

2006-05-16 Thread Michael Schmalle
Hi, This is a hack but works quick... make a var ; public var nullSkin:Class                 me.setStyle("upSkin", nullSkin);                 me.setStyle("overSkin", nullSkin);                 me.setStyle("downSkin", nullSkin); I tried clearStyle() but, that didn't work. Another variation;

[flexcoders] Re: Passing data between two datagrids

2006-05-16 Thread Doug Lowder
Hi Ryan, Define a variable in your popup component that you bind to the grid's dataprovider: var teamMemberData: Array; ...   dataProvider="{teamMemberData}"> Then, in your main component, pass the data for your popup's grid as the initObj.  You can use this as a test: mx.managers.PopUpMa

Re: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Michael Schmalle
Hi Dirk, I have subclassed State classes; I need to create transitions just like I subclassed state classes. Then in my components, I want to use the 'subclassed' transitions to add the the component's transitions array. That is about it, what is the signature, IE class to subclass??? I look

[flexcoders] Borderless Button Component

2006-05-16 Thread flexnadobe
Does anyone have a sample on how to override the border on a Button Component. I would like to turn the Border off completely. Rich -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%4

[flexcoders] Re: delete class instances

2006-05-16 Thread Tim Hoff
Thanks for the clarification Francis. --- In flexcoders@yahoogroups.com, "Francis Cheng" <[EMAIL PROTECTED]> wrote: > > In ActionScript 3.0, the delete operator only works on properties of > objects, not on instances of a class. Setting the 'ping' variable to > null is the way to go. As long

RE: [flexcoders] Re: delete class instances

2006-05-16 Thread Francis Cheng
In ActionScript 3.0, the delete operator only works on properties of objects, not on instances of a class. Setting the ‘ping’ variable to null is the way to go. As long as the variable ‘ping’ is the only reference to the PingTime instance you created in your init() function, you can make

[flexcoders] Re: Flex B3 - Label's fontSize, fontWeight not available via Actionscript?

2006-05-16 Thread Tim Hoff
You can use setStyle: sig.setStyle("fontWeight", "bold"); TH --- In flexcoders@yahoogroups.com, "willchapm" <[EMAIL PROTECTED]> wrote: > > An mx:Label's font attributes are notavailbale in Actionscript in Beta > 3.  I'm using: > > > > I'm trying to change the font size and weight via ac

RE: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Dirk Eismann
Yes, it works - what's your specific problem? Dirk. -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com im Auftrag von Michael Schmalle Gesendet: Di 16.05.2006 20:43 An: flexcoders@yahoogroups.com Betreff: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from Act

Re: [flexcoders] Flex B3 - Label's fontSize, fontWeight not available via Actionscript?

2006-05-16 Thread Michael Schmalle
Hi, fontSize is a style not a property of the Label try; this.serial.setStyle("fontSize", 8); Peace, MikeOn 5/16/06, willchapm <[EMAIL PROTECTED]> wrote: An mx:Label's font attributes are notavailbale in Actionscript in Beta 3.  I'm using: I'm trying to change the font size and weigh

[flexcoders] Re: delete class instances

2006-05-16 Thread Tim Hoff
Make the bad ping go away!  ;) If you are instantiating the class: import PingClass; public var myPingClass : PingClass = new PingClass; I believe that you can either set it to null: myPingClass = null; or delete it: delete myPingClass; -TH--- In flexcoders@yahoogroups.com, "Sonja Duijvesteijn"

[flexcoders] Drag and Drop from TileList to DataGrid

2006-05-16 Thread im_sean_s
I'm having a strange problem with dragging items from a tilelist to a data grid.  The drag and drop work fine, but after I perform the drop, I cannot click on any of the tiles in the first row.  Also, I cannot click on any combo boxes.  I am using Flex 1.5.  Any pointers would be greatly appreci

[flexcoders] Flex B3 - Label's fontSize, fontWeight not available via Actionscript?

2006-05-16 Thread willchapm
An mx:Label's font attributes are notavailbale in Actionscript in Beta 3.  I'm using: I'm trying to change the font size and weight via actionscript at runtime: this.serial.fontSize = 8; However, I can't see the attributes in FlexBuilder.  When I try to override it and set them myself, I

[flexcoders] delete class instances

2006-05-16 Thread Sonja Duijvesteijn
I've been working with Flex since last Februari, and since then I've been having a problem with classes. Since it's seemed foolish that I could not find the solution myself I've been hesitant to ask but here goes.How do you delete and instance of a class?! I've set up a small example with a clas

[flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Michael Schmalle
Hi, This might be obvious but, I can't get it and I have looked everywhere. I need to be able to create classes of transitions to be reused. Adobe, aside from my question, can I even do this? ; create reusable transitions via mxml or as classes? Peace, Mike-- What goes up, does come down.

[flexcoders] Re: Flex2B2 Resolution Change Event

2006-05-16 Thread Tim Hoff
Not completly yet Doug, I'm controlling the view when the application initializes, tabNavigator or Panel, but haven't got it to work when the resize event fires.  I had to move on to other things, but I plan on revisiting it.  Thanks for the link.  I'll check it out. Tim --- In flexcoders@

Re: [flexcoders] Re: [F2B3] Class Library

2006-05-16 Thread Claudia Barnal
Great, that's what I was looking for. Thanks a lot Mike Obviously you are less of a newbie than I am ;) On 5/16/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: > > > Hi, > > Ok, you need to; > > 1) Open you Project in FB2 > 2) Right Click on your Project's main node > 3) Select properties > 4

[flexcoders] Re: [F2B3] Class Library

2006-05-16 Thread Tim Hoff
Thanks Michael, I was wondering how to do this as well. -TH --- In flexcoders@yahoogroups.com, "Michael Schmalle" <[EMAIL PROTECTED]> wrote: > > Hi, > > Ok, you need to; > > 1) Open you Project in FB2 > 2) Right Click on your Project's main node > 3) Select properties > 4) Select Flex Buil

Re: [flexcoders] Re: [F2B3] Class Library

2006-05-16 Thread Michael Schmalle
Hi, Ok, you need to; 1) Open you Project in FB2 2) Right Click on your Project's main node 3) Select properties 4) Select Flex Build Path 5) Select the Source path Tab 6) hit Add Folder 7) Navigate to your shared classes folder    - if say you have /classes/com/teotiGraphix8) Select the classe

[flexcoders] Re: Flex2B2 Resolution Change Event

2006-05-16 Thread Doug Lowder
Hi Tim, Did you ever have any luck getting this to work, and if so did you use the approach in the link below?  I'd be curious to know if this works, since I basically use the same logic for a 1.5 app that needs to keep "maximized" titlewindows correctly sized when the user resizes the brow

Re: [flexcoders] Inline Design View Rich Text Editing - where?

2006-05-16 Thread judah
hi manish, any plans for this? sorry i am not very clear on this. i am not talking about the rich text editor component. i am talking about rich text editing in the flex ide at design time. like in flash, you add static textfields to the stage in the flash ide. you can then double click on t

[flexcoders] Visual Samples of F2B3 Themes?

2006-05-16 Thread Ethan Miller
Pointer please? thanks, ethan -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web. 

Re: [flexcoders] Wanted - A simple WSDL example

2006-05-16 Thread judah
Thanks guys. I got it to work. judah wrote: > I am looking for an super simple working example of an WSDL. I tried to > get the one in the help files working and I get no response success or > fail. I've spent a day working on this and found out the wsdl url is > fake and found plenty of oth

Re: [flexcoders] Re: [F2B3] Class Library

2006-05-16 Thread Claudia Barnal
>I seperate Projects in FB2, but use the same classpath for SHARED core things. This sounds just about what I am looking after... and is what I can't achieve. How do you import these classes if they are outside your project folder/package? It might be an extremely obvious answer, but I can't

  1   2   3   >