Re: [flexcoders] Record and play back sound on the client in a Flex app

2007-01-29 Thread JesterXL
No. Flash Player needs Flash Media Server to be able to record audio from the Microphone class. You could use a Windows Media Player hosted object to record, but that would end up being a SmartClient style app, not a web delivered one and would require the user have DirectX installed.

Re: [flexcoders] Flex working directory

2007-01-28 Thread JesterXL
Check out the base attribute. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_04157 On Jan 28, 2007, at 12:52 PM, Christoph Guse wrote: Hi List, I try to integrate FLEX 2.0 applications into the Liferay Portal. At a first glance this should not to difficult but as each of us knows

Re: [flexcoders] site-wide adjustments - is it even possible?

2007-01-28 Thread JesterXL
In AS2/AS1, you used to be able to hack the prototype so all instances used a different method at runtime. mx.containers.Container.scrollChildren = mx.containers.Container.old; mx.containers.Container.scrollChildren = function() { // your stuff here }; Unfortunately, I think prototype

Re: [flexcoders] import * vs. import a.b.c performance?

2007-01-27 Thread JesterXL
import * == for slackers import a.b.c == for pimp-tastic Flex coders import * allows the compiler to look in the package to find the class it needs. If you don't have *, you have to set it manually. Both will result in the same amount of classes being exported into the SWF, so file size

Re: [flexcoders] Label vs. Text

2007-01-26 Thread JesterXL
Label is 1 line only, and truncates text that is longer than it is wide via Super becoming Su Text allows multiline and word wrapping whereas Label does not. On Jan 26, 2007, at 10:21 PM, Howard Fore wrote: Can someone tell me what the difference is between the Label and Text controls?

Re: [flexcoders] Ogg Vorbis Tremor in AS3?

2007-01-25 Thread JesterXL
Andre managed to make a mod player. Not sure what mods are, but they have that 8 bit feel. http://lab.andre-michelle.com/8bitboy More of his audio work here, maybe something along the lines of what you are looking for: http://lab.andre-michelle.com/tag/audio/ On Jan 25, 2007, at 1:03

Re: [flexcoders] Flowcharting/Drawing Components

2007-01-24 Thread JesterXL
http://www.gliffy.com/ Don't see a download link, doesn't look like they are sharing the love. On Jan 24, 2007, at 12:08 PM, Jim Zafrani wrote: Hello All, I am just getting started with Flex and was wondering whether or not a component existed that would allow me to draw a flowchart on a

Re: [flexcoders] Simple question- Can I pass a data object in a method from flex 2 into an externally loaded flash 9 built swf?

2007-01-24 Thread JesterXL
With the appendum, Compiled in Flash 9 AND AS3, NOT AS2, then yes. On Jan 24, 2007, at 1:57 PM, Manuel Saint-Victor wrote: To clarify the question- If I'm building my shell in Flex 2 and a library of swf content to load developed in flash- and I load them in with the swfLoader component

Re: [flexcoders] ActionScript Mozill

2007-01-24 Thread JesterXL
Java made Ant, Ruby made Rake, Tamarin made...??? I dig Ant and all, but it'd be neat to have an AS3 alternative. On Jan 24, 2007, at 6:48 PM, Jim Cheng wrote: Abdul Qabiz wrote: What does it mean to me as ActionScript developer? I can use my existing skills and write code in other

[flexcoders] States Transitions Example

2007-01-23 Thread JesterXL
An example of using states and transitions in Flex 2 components. http://www.jessewarden.com/archives/2007/01/flex_2_states_t.html

Re: [flexcoders] how do i pass variables to a swf???

2007-01-23 Thread JesterXL
Why not use a FlashVars tag? On Jan 23, 2007, at 10:48 PM, Bjorn Schultheiss wrote: LocalConnection is the go. I would love to be able to use the query string to be able to set my LocalConnection.connection string at runtime. At the moment where using a IFrame hack to pass the connection

Re: [flexcoders] Need ur help

2007-01-22 Thread JesterXL
What is 10.21.160.125:1935? Is that a Flash Media Server? On Jan 21, 2007, at 10:48 AM, sekar r wrote: Dear Friends, i am getting this error on runtime. [NetConnection object must be connected.]. i have attached image file for error. plz help me for this. this my mxml. file. ?xml

Re: [flexcoders] Need ur help

2007-01-22 Thread JesterXL
with NetConnection.Connect.Success, THEN create the NetStream. Make sense? On Jan 22, 2007, at 9:46 AM, sekar r wrote: Yes this is ipaddress of my flash media server and port. anything wrong this? from sekar JesterXL [EMAIL PROTECTED] wrote: What is 10.21.160.125:1935? Is that a Flash Media Server

Re: [flexcoders] Please Help - Components, States, Transitions

2007-01-22 Thread JesterXL
Components should never know about other components, in this case, a View knowing about another View. They should emit events about their state changing, or some other action being peformed. In the case of a LoginForm, a user clicking the submit button. Additionally, while states are

Re: [flexcoders] Please Help - Components, States, Transitions

2007-01-22 Thread JesterXL
for com.jxl.downloads.views.DownloadsPanel.mxml I'm sure there are way more simpler examles on the interweb from poeple on this list. On Jan 22, 2007, at 1:49 PM, David Terry wrote: Wow! Remember I said I was a beginner. I'm sure this is great information JesterXL, but it is WAY over my head for now. So, a custom

Re: [flexcoders] YouTube and LocalConnection

2007-01-22 Thread JesterXL
Make: - Proxy.swf that loads the YouTube SWF's and interacts with them in Flash 8 - A class that talks to Proxy.swf via LocalConnection While you don't have access to SWF's lower than 9, you can make your own SWF that DOES have a LocalConnection to talk to. You then use this SWF as your

Re: [flexcoders] Using Flash For Authoring Flex 2 Content -- A Definitive Guide?

2007-01-20 Thread JesterXL
I know it's my blog, but this particular entry wasn't cited here, so just in case: http://www.jessewarden.com/archives/2006/12/integrating_a_f.html On Jan 19, 2007, at 5:22 PM, Russell Sprague wrote: Greg, you are right, there doesn't seem to be much about using Flash and Flex together. I

Re: [flexcoders] New Component Released - Animated Gif Loader

2007-01-19 Thread JesterXL
thought it was so yesterday...? You know, the waving flag, the (sorry Doug... I saw your demo) rotating earth, etc... Brendan On 1/18/07, JesterXL [EMAIL PROTECTED] wrote: I musta read like 3 C classes that convert GIF's to SWF's only to realize I'd have to take years to learn C JUST

Re: [flexcoders] New Component Released - Animated Gif Loader

2007-01-18 Thread JesterXL
I musta read like 3 C classes that convert GIF's to SWF's only to realize I'd have to take years to learn C JUST to get Flash Player to support this in converting the C to AS3... and now you've coded it, HOT!!! On Jan 18, 2007, at 5:20 PM, dougmccune wrote: [I apologize if this is a

Re: [flexcoders] pass vars to AVM1Movie

2007-01-17 Thread JesterXL
JavaScript out the values via ExternalInterface, and have JavaScript send in the value to the AVM1Movie (assuming Flash 8 which also supports ExternalInterface). On Jan 17, 2007, at 7:35 PM, Bjorn Schultheiss wrote: Hey, I'm loading AVM1 swfs into my flex app via SWFLoader. I want to be

Re: [flexcoders] movie clip/sprite instances and items in repeaters

2007-01-17 Thread JesterXL
Answering your last question first. MovieClips and Sprites are not allowed willy nilly in Flex. The Flex framework allows UIComponents only. If you control the UIComponent, you are welcome to put what you want in it. Otherwise, you'll get an exception if you try to put a Sprite or

Re: [flexcoders] pass vars to AVM1Movie

2007-01-17 Thread JesterXL
via externalInterface? Regards, Bjorn On 18/01/2007, at 4:08 PM, JesterXL wrote: JavaScript out the values via ExternalInterface, and have JavaScript send in the value to the AVM1Movie (assuming Flash 8 which also supports ExternalInterface). On Jan 17, 2007, at 7:35 PM, Bjorn

Re: [flexcoders] Scrollbars

2006-08-01 Thread JesterXL
If maxVerticalPosition 1? Guessing, can't confirm currently. - Original Message - From: chrislee943 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, August 01, 2006 4:54 AM Subject: [flexcoders] Scrollbars Hi all, Is there any solutions to determine if scrollbar

Re: [flexcoders] Re: Simple way to do Please wait... type window

2006-08-01 Thread JesterXL
eb users actually double click buttons in a web interface still. DK On 8/1/06, Stefan Schmalhaus [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, "JesterXL" [EMAIL PROTECTED] wrote: The spinning watch is what we use 100% of the time; that's the default cursor

Re: [flexcoders] PopUp from within a class

2006-08-01 Thread JesterXL
Don't create the class. The PopUpManager creates it for you. var tw = PopUpManager.createPopUp ( Application.application as DisplayObject, TitleWindow, true); var txt:Label = new Label(); txt.text = "This is a test."; tw.addChild(txt); - Original Message - From: Doug Arthur To:

Re: [flexcoders] Announcing SeeFusion 4!

2006-08-01 Thread JesterXL
I'm not a server geek, but "The Live Demo previously ran under a constant load for 72 consecutive days, during which time SeeFusion processed 833,294,343 queries and 6,265,371 requests." sounds bad ass. - Original Message - From: Shannon Hicks To: flexcoders@yahoogroups.com

Re: [flexcoders] More embedded font fun...

2006-08-01 Thread JesterXL
Are you sure the font is 8 point? What happens if you don't set the font size? What happens if you set it to 7/9/10/11/12/14? - Original Message - From: Shannon Hicks To: flexcoders@yahoogroups.com Sent: Tuesday, August 01, 2006 12:55 PM Subject: [flexcoders] More embedded font

Re: [flexcoders] I need a ColorPicker dataGrid Renderer

2006-08-01 Thread JesterXL
http://kss.korax.ru/flex/cp/index.html - Original Message - From: John Buhl To: flexcoders@yahoogroups.com Sent: Tuesday, August 01, 2006 12:02 PM Subject: [flexcoders] I need a ColorPicker dataGrid Renderer Hello, I'm looking for a colorPicker renderer for a dataGrid. Has anyone

Re: [flexcoders] Embedded Fonts Cause Issue with DataGrid Headers

2006-07-31 Thread JesterXL
Issue with DataGrid Headers Hey Jesse,I'll try to build up my stamina to have a look tonight again... however, does the fact that it only affects a particular font size make any sense? Then again, I guess the issue doesn't make sense from the start... Brendan On 7/30/06, JesterXL [EMAIL PROTECTED

Re: [flexcoders] Image Loading causes Flash slowness and high cpu utilization

2006-07-31 Thread JesterXL
How are you loading it? Got some example code? - Original Message - From: Eric Raymond [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 31, 2006 7:02 PM Subject: [flexcoders] Image Loading causes Flash slowness and high cpu utilization We have a Flex application

Re: [flexcoders] Re: Simple way to do Please wait... type window

2006-07-31 Thread JesterXL
One way I did it was making a Singleton class that popups up a small TitleWindow. This TitleWindow has a ProgressBar in it. The ProgressBar's indeterminate is bound to the visibility (you don't want it playing while the window is invisible; takes up resources). You can then do:

Re: [flexcoders] Is it possible to do this in Flex? (quick help needed, please!!!)

2006-07-31 Thread JesterXL
Anything is possible at Zombo.com. Yes, I actually did this in the past and ran into some serious security sandbox issues. Flex can load other Flex apps into it. The Flash Player has the capability to load multiple SWF's into their own security sandbox domains; some are open, others are

Re: [flexcoders] Re: Simple way to do Please wait... type window

2006-07-31 Thread JesterXL
] To: flexcoders@yahoogroups.com Sent: Monday, July 31, 2006 11:06 PM Subject: Re: [flexcoders] Re: Simple way to do Please wait... type window - Original Message - From: JesterXL [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, August 01, 2006 2:26 AM Subject: Re

Re: [flexcoders] PopUp from within a class

2006-07-31 Thread JesterXL
import mx.managers.PopUpManager; PopUpManager.createPopUp(this, MyWindow, false); ??? - Original Message - From: Doug Arthur To: flexcoders@yahoogroups.com Sent: Monday, July 31, 2006 11:21 PM Subject: [flexcoders] PopUp from within a class Does anyone know how to create a

Re: [flexcoders] Re: php and flex

2006-07-30 Thread JesterXL
You'll need XMLSocket. PHP can do it. http://www.enobrev.com/chat_tutorial.php - Original Message - From: arnold_charming [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, July 30, 2006 5:00 AM Subject: [flexcoders] Re: php and flex --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Cairngorm: Managing Popup Windows

2006-07-30 Thread JesterXL
contract as needed. So, we went with a modal popup. DK On 7/27/06, JesterXL [EMAIL PROTECTED] wrote: Popups were really valuble in Flex 1.5.Most didn't know about the depth scoping capabilites in Flash Player, nor needed to care.Popups workedgreat for putting stuff "above every

Re: [flexcoders] Cairngorm: Managing Popup Windows

2006-07-30 Thread JesterXL
...hey, wait a minute, I still win! You're RTE DOES need to be modal. *whew* http://youbeat2trees.ytmnd.com/ - Original Message - From: JesterXL To: flexcoders@yahoogroups.com Sent: Sunday, July 30, 2006 4:49 PM Subject: Re: [flexcoders] Cairngorm: Managing Popup Windows I

Re: [flexcoders] mysql amfphp array parsing

2006-07-30 Thread JesterXL
Maybe labelName for the ComboBox set to teamname? - Original Message - From: Impudent1 [EMAIL PROTECTED] To: flexcoders flexcoders@yahoogroups.com Sent: Sunday, July 30, 2006 11:36 PM Subject: [flexcoders] mysql amfphp array parsing ok I seem to be having a total mindlock on this... I

Re: [flexcoders] Embedded Fonts Cause Issue with DataGrid Headers

2006-07-30 Thread JesterXL
Betcha' the measure function is having issues measure the embedded font. Are you using FlashType or just the regular way? If you're feeling brave, go look in DataGrid.as, and tell us if anything looks like its measuring text. - Original Message - From: Brendan Meutzner To:

Re: [flexcoders] Are the contents of a WSDL document accessible?

2006-07-29 Thread JesterXL
Assuming the WSDL is on the same domain so that your SWF has permission (or you're using a proxy), hell yeah, she's fair game bro. You can use the old skool XML or E4X via a URLLoader. - Original Message - From: ben.clinkinbeard [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Re: TileList Bug Flex Final... pretty serious.

2006-07-28 Thread JesterXL
Hah! Guru... yeah right... He's right, though, sufibaba, if could post your itemRenderer, that might help us identify what TileList's problem is with it. - Original Message - From: Douglas Knudsen To: flexcoders@yahoogroups.com Sent: Friday, July 28, 2006 12:47 PM Subject: Re:

Re: [flexcoders] Command classes that use multiple delegates

2006-07-28 Thread JesterXL
Pass in a RelayResponder / Responder instead of the Command. Like, flash.net.Responder, or your own custom class that implements Cairngorm's Responder. Then, have that responder call specified onResult / onFault functions you've defined in your Command. - Original Message - From:

Re: [flexcoders] Re: Cairngorm Events

2006-07-27 Thread JesterXL
. I don't mind modding Cairngorm, to be sure, just pointing it out. - Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 4:26 AM Subject: Re: [flexcoders] Re: Cairngorm Events On Wednesday 26 July 2006 16:56, JesterXL

Re: [flexcoders] Repositioning pop up window

2006-07-27 Thread JesterXL
popup = PopUpManager.createPopUp(this, YourComp, true); popup.move( 100, 200); - Original Message - From: Robs [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 5:56 AM Subject: [flexcoders] Repositioning pop up window Hi all, Can a popup window created

Re: [flexcoders] Backend/Frontend Application Development (Cairngorm)

2006-07-27 Thread JesterXL
Put 'em in seperate projects, or sub-projects. Like: com.company.project.admin.* com.company.project.client. Or: com.company.projectadmin.* com.company.projectclient.* You should take advantage of the fact you may be using similiar code; both of the above in the same Flex project allows you

Re: [flexcoders] Cairngorm: Managing Popup Windows

2006-07-27 Thread JesterXL
Popups were really valuble in Flex 1.5. Most didn't know about the depth scoping capabilites in Flash Player, nor needed to care. Popups worked great for putting stuff above everything and making it modal. Nowadays, with states and the DisplayList, the only valid reason I can see is

Re: [flexcoders] Re: Local Connection

2006-07-27 Thread JesterXL
provides more evidence (and helps me get it)...that the first swf is still there in Flex... Anyway, Thanks again...if you have any more suggestions...as always appreciated. I'll keep working at it... Jenn --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Oh it's deeper than

Re: [flexcoders] Backend/Frontend Application Development (Cairngorm)

2006-07-27 Thread JesterXL
to the current model locator for a sub app?DK On 7/27/06, JesterXL [EMAIL PROTECTED] wrote: Put 'em in seperate projects, or sub-projects.Like:com.company.project.admin.*com.company.project.client.Or:com.company.projectadmin.*com.company.projectclient.*You should take advantage of the fact you

Re: [flexcoders] Backend/Frontend Application Development (Cairngorm)

2006-07-27 Thread JesterXL
? What I've done so far is used a generic model so to speak in com.company.project.model.GModLoc say. Then the client app and admin app can access it as well as their respective model. DK On 7/27/06, JesterXL [EMAIL PROTECTED] wrote: // Assuming your in your Client Application

Re: [flexcoders] Re: Local Connection - RESOLVED!

2006-07-27 Thread JesterXL
Delete the ho! after close: lc = null; delete lc; - Original Message - From: flexnewbie06 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 10:11 AM Subject: [flexcoders] Re: Local Connection - RESOLVED! Thanks again jesterXL... Added just a few lines

Re: [flexcoders] TextLineMetrics anyone?

2006-07-27 Thread JesterXL
Out of curiosity, turn on autoSize = left; - Original Message - From: jeff tapper [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 10:14 AM Subject: [flexcoders] TextLineMetrics anyone? Has anyone successfully used TextLineMetrics with multiline text

Re: [flexcoders] cairngorm Events and data payloads

2006-07-27 Thread JesterXL
close. Do this, but extend CairngormEvent like you are doing: http://www.darronschall.com/weblog/archives/000191.cfm - Original Message - From: Douglas Knudsen To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 10:01 AM Subject: [flexcoders] cairngorm Events and data

Re: [flexcoders] Re: Local Connection - RESOLVED!

2006-07-27 Thread JesterXL
w00t! GC got PWND!!!. - Original Message - From: flexnewbie06 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 10:48 AM Subject: [flexcoders] Re: Local Connection - RESOLVED! ..works perfect. --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED

Re: [flexcoders] Re: TextLineMetrics anyone?

2006-07-27 Thread JesterXL
. They inherently automatically size themselves to fit the contained text. Am i misunderstanding you? --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Out of curiosity, turn on autoSize = left; - Original Message - From: jeff tapper [EMAIL PROTECTED] To: flexcoders

Re: [flexcoders] Manuals/tutorials on subclassing, custom components? (1.5)

2006-07-27 Thread JesterXL
Some of the component preso's here help. I know they aren't verbose as you like, but some of the comments and exmaples helped me immednsely. http://www.onflex.org/ted/2006/07/adobe-component-developer-summit.php - Original Message - From: G [EMAIL PROTECTED] To:

Re: [flexcoders] Cast or create local var - which is best \ performant

2006-07-27 Thread JesterXL
Depends. Local variables are faster in some casese because it uses optimized registers. Promotion is also something to watch out for regarding ints in loops. If you're really interested, go ask the FLASM guys to update their tool for Flash Player 9, and you can inspect the bytecode to see

Re: [flexcoders] Re: cairngorm Events and data payloads

2006-07-27 Thread JesterXL
I'm with you. I've been determing type of event based on the event.type in the Command's execute method to get my strong-typing back. - Original Message - From: Ralf Bokelberg To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 12:58 PM Subject: Re: [flexcoders] Re:

Re: [Junk E-Mail - MED] Re: [flexcoders] Flex Builder 2 plugin woes...

2006-07-27 Thread JesterXL
Did you add Flex nature to your closed project? Did you set a default application? :: random guesses :: - Original Message - From: Shannon Hicks To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 2:00 PM Subject: RE: [Junk E-Mail - MED] Re: [flexcoders] Flex Builder 2

Re: [flexcoders] constructObject2() vs. init()? (Flex 1.5)

2006-07-27 Thread JesterXL
Don't know about constructObject2, but init is called for you by UIObject when she's done setting stuff up. You CAN override it in ActionScript, but not MXML. However, you're better off just have your initialize event call a function in your MXML and do non-GUI related stuff there. -

Re: initialize vs. construct/init...Re: [flexcoders] constructObject2() vs. init()? (Flex 1.5)

2006-07-27 Thread JesterXL
Of course I'm not sure. What are you initializing, and who is expecting them to be initialized? - Original Message - From: G [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 3:51 PM Subject: initialize vs. construct/init...Re: [flexcoders]

Re: [flexcoders] Re: cairngorm Events and data payloads

2006-07-27 Thread JesterXL
o we loose if we do it like that? Cheers,Ralf. On 7/27/06, JesterXL [EMAIL PROTECTED] wrote: I'm with you. I've been determing type of event based on the event.type in the Command's execute method to get my strong-typing back. - Original Message - From: Ralf

Re: initialize vs. construct/init...Re: [flexcoders] constructObject2() vs. init()? (Flex 1.5)

2006-07-27 Thread JesterXL
of the differences. They got the same shit over there we got over here, it's just there it's a little different. I'm trying to order a Royal with Cheese, reading from the American menu. Greg --- JesterXL [EMAIL PROTECTED] wrote: Of course I'm not sure. What are you initializing, and who

Re: [flexcoders] Play video files in Flex

2006-07-27 Thread JesterXL
You can also utilize ffmpeg to convert server-side (or client too I guess). It's what Google YouTube do. http://ffmpeg.mplayerhq.hu/ - Original Message - From: Kelly @ Dekayd Media Inc. To: flexcoders@yahoogroups.com Sent: Thursday, July 27, 2006 7:04 PM Subject: RE:

Re: [flexcoders] Re: cairngorm Events and data payloads

2006-07-27 Thread JesterXL
a cast or 'event as MyCutomEvent' inside the execute method. I guess I am just not clear on what the issue is and where the problem lies. Can someone edumacate me? Thanks, Ben http://www.returnundefined.com/ --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Well, my events extend

Re: [flexcoders] Re: cairngorm Events and data payloads

2006-07-27 Thread JesterXL
AS supported method overloading or is there something I am still not getting? Thanks, Ben http://www.returnundefined.com/ --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: My initial frustration was I'd create this event class, which allowed strong-typing, like so: package

Re: [flexcoders] addChild to Loader component

2006-07-26 Thread JesterXL
If you want to show something in Flex, it must implement IUIComponent. Easiest way? var a:UIComponent = new UIComponent(); a.addChild(yourLoader); addChild(a); - Original Message - From: Gadi Srebnik To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 4:57 AM Subject:

Re: [flexcoders] Using filters on text removes antialiasing

2006-07-26 Thread JesterXL
I have the same problem, but don't know of a fix. - Original Message - From: m88e24 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 6:34 AM Subject: [flexcoders] Using filters on text removes antialiasing Flex 2 final Player r15 When using a filter like

Re: [flexcoders] Re: Image Pan - Step 1

2006-07-26 Thread JesterXL
, JesterXL [EMAIL PROTECTED] wrote: Base class is like DisplayObjectContainer, but that's an abstract class; both Sprite and MovieClip extend that. However, if you are using Flex, there is no point to utilize MovieClip since you don't have frames; Sprite's good. Also, the last line should

Re: [flexcoders] Create variables dynamic in Flex 2

2006-07-26 Thread JesterXL
Make the class dynamic or use an object. var o:Object = {}; for (var i:uint=0; i == 10; i++) { var myVar_i:String = new String(); o[myVar_ + i] = new String(); } Or: package { dynamic public class Flexible { publid function Flexible() { } } } var

Re: [flexcoders] Re: Image Pan - Step 1

2006-07-26 Thread JesterXL
it here (http://sephiroth.it/tutorials/flashPHP/scrollRect/). What would I need to do in order to convert this to the container/child image code in Flex 2? Rich --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: 1. You could use the old skool Object (hash / associative array

Re: [flexcoders] Re: Cairngorm Events

2006-07-26 Thread JesterXL
If you use dispatchEvent, yes. If you use CairngormEventDispatcher, no. - Original Message - From: Ryan Stewart To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 11:27 AM Subject: Re: [flexcoders] Re: Cairngorm Events Thanks guys, I know the usual method for

Re: [flexcoders] Question ANSWERED! Re: Embed images in one MovieClip, use in another?

2006-07-26 Thread JesterXL
I needed! Greg --- JesterXL [EMAIL PROTECTED] wrote: Hah! I don't care what anyone says, the Flex 1.5 docs are good. http://livedocs.macromedia.com/flex/15/flex_docs_en/1157.htm - Original Message - From: G [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday

Re: [flexcoders] Re: Cairngorm Events

2006-07-26 Thread JesterXL
: Cairngorm Events On Wednesday 26 July 2006 16:35, JesterXL wrote: If you use dispatchEvent, yes. If you use CairngormEventDispatcher, no. For more information about Halliwells LLP visit www.halliwells.com. Though couldn't the Controller dispatchEvent() for the components to listen too ? -- Tom

Re: [flexcoders] Easy way to publish flex app as standalone EXE?

2006-07-26 Thread JesterXL
This didn't work in the beta, but apparently works now. I went here: C:\Program Files\Adobe\Flex Builder 2 Plug-in\Player\debug and opened the SAFlashPlayer.exe. Then I opened a compiled Flex 2 SWF using that. You then go to File Create Projector. This appears to create an exe like old.

Re: [flexcoders] TitleWindow - Positioning and Background Blurring

2006-07-26 Thread JesterXL
1. Application has a global style, modalTransparencyBlur, that you can set to 0. 2. PopUpManager.centerPopUp ( YourPopUpHere ); - Original Message - From: Stefan Schmalhaus [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 12:53 PM Subject: [flexcoders]

Re: [flexcoders] Local Connection

2006-07-26 Thread JesterXL
Can you paste a snippet of your LocalConnection code in the Flash SWF? - Original Message - From: flexnewbie06 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 1:02 PM Subject: [flexcoders] Local Connection I think I am going to go crazy over this. I

Re: [flexcoders] Re: Local Connection

2006-07-26 Thread JesterXL
= function () { gotoAndPlay(1); } lc.getframeNum = function () { } lc.connect(swfConnect); *** --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Can you paste a snippet of your LocalConnection code in the Flash SWF? - Original Message - From: flexnewbie06 [EMAIL

Re: [flexcoders] Re: Local Connection

2006-07-26 Thread JesterXL
could do in flex was to set the SWFLoader source to = before loading the next swf. I could not find any unload methods. Thanks again for helping. --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Try again, but put an underscore in front of the name for both SWF's

Re: [flexcoders] Cairngorm 2 - Sample Application?

2006-07-26 Thread JesterXL
Here's one, source at bottom: http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html - Original Message - From: jakana1566 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 3:25 PM Subject: [flexcoders] Cairngorm 2 - Sample Application? I'm new

Re: [flexcoders] Alert + background blurring

2006-07-26 Thread JesterXL
Try this in your CSS: Application { modalTransparencyBlur: 3; // default modalTransparencyColor: #99; // default is #FF I think } - Original Message - From: Chris [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 26, 2006 6:59 PM Subject:

Re: [flexcoders] Best practices for organizing base code library and project specific code

2006-07-25 Thread JesterXL
The only reason I don't keep com.jxl.utils.* as an SWC Library project in FlexBuilder to allow 50 billion projects to use it is because those classes get tweaked every single project... so, rather than tweak something, and break a ton of other projects that have dependencies on it, I just put a

Re: [flexcoders] Anyone know the answer? Embed images in one MovieClip, use in another?

2006-07-25 Thread JesterXL
about, please tell me! But what we are wondering is if it's possible to load a swf containing embedded images, then use those images in the loading (host) swf? Thank you! Greg --- JesterXL [EMAIL PROTECTED] jesterxl%40jessewarden.com wrote: Don't use SWF's. Flex 1.5 2

Re: [flexcoders] Re: has anyone ever disabled selectability for a textArea??

2006-07-25 Thread JesterXL
It does, but TextArea extends Sprite, not TextField. It uses the UITextField via composition. Unfortunately (or fortunately?) the textField variable is protected. Additionally, the textField is selectable by default. You could do: package { import mx.controls.TextArea; class

Re: [flexcoders] Anyone know the answer? Embed images in one MovieClip, use in another?

2006-07-25 Thread JesterXL
is if it's possible to load a swf containing embedded images, then use those images in the loading (host) swf? Thank you! Greg --- JesterXL [EMAIL PROTECTED] jesterxl%40jessewarden.com wrote: Don't use SWF's. Flex 1.5 2 have ways to embed them

Re: [flexcoders] Re: Pointing to Dynamic variables

2006-07-25 Thread JesterXL
Try: this[ label + i ].text = xmlOut.zalozbe.zalozba[i]; - Original Message - From: arnold_charming [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, July 25, 2006 2:47 PM Subject: [flexcoders] Re: Pointing to Dynamic variables Anyone? --- In

Re: [flexcoders] Flex2 Event Calendar

2006-07-25 Thread JesterXL
You could maybe snag this. http://weblogs.macromedia.com/khoyt/archives/2005/03/custom_calendar.cfm - Original Message - From: David Brown [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, July 25, 2006 2:31 PM Subject: [flexcoders] Flex2 Event Calendar I would like to

Re: [flexcoders] Re: dispatching TextEvent on image click

2006-07-25 Thread JesterXL
- import the event - create it - dispatch it Don't know the classpath, but something like: mx.events.TextEvent; var te:TextEvent = new TextEvent ( TextEvent.TEXT, false, true ); dispatchEvent(te); Then at the top of your class, do: [Event(name=TextSomething, type=mx.events.TextEvent)] Make

Re: [flexcoders] TextSnapshot not working in Flex 2

2006-07-25 Thread JesterXL
You don't... unless you use Flash. As far as x y, no clue, I suck at text. Maybe this? http://www.quasimondo.com/archives/000620.php - Original Message - From: Jignesh Satra To: flexcoders@yahoogroups.com Sent: Monday, July 24, 2006 12:51 AM Subject: Re: [flexcoders]

Re: [flexcoders] Image Pan - Step 1

2006-07-25 Thread JesterXL
2. If they are children, they too will scale. Add them to the Sprite's displaylist. 3. We've done this successfully in Flex 1.5. In Flex 2, you can set the toolTipClass on the ToolTipManager class to utilize your own class. 4. To combine multiple effects at the same time, utilize the

Re: [flexcoders] Re: has anyone ever disabled selectability for a textArea??

2006-07-25 Thread JesterXL
Namespace the ho! Think of namespaces like imports. import mx.controls.TextArea; That allows you to do: var a:TextArea = new TextArea(); So do like: view:MyClass xmlns:view=your.package.path.* / Or, if you are going to use MyClass multiple times, but the xmlns:view stuff in your root tag

Re: [flexcoders] What is the difference between an Array and an ArrayCollection?

2006-07-25 Thread JesterXL
A drawer from Disney's "Beauty and the Beast" that goes, "Dude, you just put something in me!". It does this by emitting an event, collectionChanged, when this happens. Controls can listen for this event and knowwhen the array is updatedin order to redraw themselves, like theDataGrid,

Re: [flexcoders] What is the difference between an Array and an ArrayCollection?

2006-07-25 Thread JesterXL
e commonly used Interfaces which allows other controls to support ArrayCollection, making it just as flexible. http://livedocs.macromedia.com/flex/2/langref/mx/collections/ArrayCollection.html - Original Message ----- From: JesterXL To: flexcoders@yahoogroups.com Sent: Tuesday, July 25, 20

Re: [flexcoders] Caringorm - Visual Flowchart Poster!

2006-07-25 Thread JesterXL
Only change homey is: - Command creates Delegate, and calls method on it, passing itself (usually) in as a responder - Delegate gets service from ServiceLocator, and then calls server - upon response, either massages it (via Factory) or just simply gives it back as is to the Command All in

Re: [flexcoders] Re: has anyone ever disabled selectability for a textArea??

2006-07-25 Thread JesterXL
TextArea just got owned. http://www.jessewarden.com/archives/2006/07/nonselectable_t.html - Original Message - From: jpc14_99 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, July 25, 2006 7:37 PM Subject: [flexcoders] Re: has anyone ever disabled selectability for a

Re: [flexcoders] Re: Image Pan - Step 1

2006-07-25 Thread JesterXL
and how do I attach it? I don't think I need a movie clip becuase it says it basically is a sprite with a timeline. Rich --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: 2. If they are children, they too will scale. Add them to the Sprite's displaylist. 3. We've done

Re: [flexcoders] Flex arrows?

2006-07-24 Thread JesterXL
onth end basis, the datechoser is really not the right tool for this. I'm just using mxml to do this currently...suppose I will have to go off and lear the way of the force for building components soon. DK On 7/19/06, JesterXL [EMAIL PROTECTED] wrot

Re: [flexcoders] Flex arrows?

2006-07-24 Thread JesterXL
as the one in the DateChoser thus seemlessly interacting with the Flex framework. Adobe has let loose the source code for DateChooser. Does Adobe envision some of us copying some of their code in order to fulfill such a community benefiting component? DK On 7/24/06, JesterXL [EMAIL PROTECT

Re: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread JesterXL
Flex 2 can utilize AMF0 or AMF3; you just set the ObjectEncoding. CF 7.0.2 can use AMF3; anything before only AMF0. Flex 2 can talk to both old CF and new CF. Talking to the old sucks from a client-side perspective. - Original Message - From: Battershall, Jeff [EMAIL PROTECTED] To:

Re: [flexcoders] Flex arrows?

2006-07-24 Thread JesterXL
mx.skins.halo.DateChooserMonthArrowSkin" disabledSkin="mx.skins.halo.DateChooserMonthArrowSkin" styleName="DateChooser" autoRepeat="true" focusEnabled="false" /mx:Buttonall it does is display a arrow. Can't tell it to use left or rig

Re: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread JesterXL
Jessie, When you say, talking to the old sucks from a client-side perspective are we talking performance or the ability to pass custom objects or what? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, July 24, 2006 12:20

  1   2   3   4   5   6   7   8   9   10   >