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

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

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 contro

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 PM

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 en

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 c

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 canva

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 v

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

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

2007-01-22 Thread JesterXL
d look 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

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

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

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. http://w

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
kinda 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'

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 d

Re: [flexcoders] pass vars to AVM1Movie

2007-01-17 Thread JesterXL
a specific swf 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

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 Movie

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 a

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 anyon

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 fon

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 Sen

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 T

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

2006-08-01 Thread JesterXL
really fubar up stuff.  Also note, many web 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

Re: [flexcoders] Scrollbars

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

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: Simple way to do "Please wait..." type window

2006-07-31 Thread JesterXL
age - From: "Paul Andrews" <[EMAIL PROTECTED]> To: 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: Sent: Tuesday, Au

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 res

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

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: Sent: Monday, July 31, 2006 7:02 PM Subject: [flexcoders] Image Loading causes Flash slowness and high cpu utilization We have a Flex application which loads many copies o

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

2006-07-31 Thread JesterXL
Cause 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, Je

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

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" 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 have amfphp runnin

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 Wi

Re: [flexcoders] Cairngorm: Managing Popup Windows

2006-07-30 Thread JesterXL
eight to expand 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 worked

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: Sent: Sunday, July 30, 2006 5:00 AM Subject: [flexcoders] Re: php and flex --- In flexcoders@yahoogroups.com, "Stefan Schmalhaus" <[EMAIL

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: Sent: Sunday, July 30, 2006 12:

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

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

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

2006-07-27 Thread JesterXL
uperclass or common interface? Are you just wishing 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 fru

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

2006-07-27 Thread JesterXL
classing CairngormEvent you get basic checking and then you can just do 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/

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

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

2006-07-27 Thread JesterXL
n the documentation, things in AS and Flex are done slightly differently, but with no acknowledgement 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 men

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

2006-07-27 Thread JesterXL
o far don't make use of the runtime changeability anyways. What do 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

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: Sent: Thursday, July 27, 2006 3:51 PM Subject: initialize vs. construct/init...Re: [flexcoders] constructObject2() vs. init()? (Flex 1

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

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

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

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 how

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: Sent: Thursday, July

Re: [flexcoders] Re: TextLineMetrics anyone?

2006-07-27 Thread JesterXL
ly 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&q

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

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

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 dat

Re: [flexcoders] TextLineMetrics anyone?

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

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: Sent: Thursday, July 27, 2006 10:11 AM Subject: [flexcoders] Re: Local Connection - RESOLVED! Thanks again jesterXL... Added just a few lines...can&#x

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

2006-07-27 Thread JesterXL
in the Command, eh?  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 i

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

2006-07-27 Thread JesterXL
ta 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

Re: [flexcoders] Re: Local Connection

2006-07-27 Thread JesterXL
working. That little experiment just 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, "

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 modal

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 t

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: Sent: Thursday, July 27, 2006 5:56 AM Subject: [flexcoders] Repositioning pop up window Hi all, Can a popup window created with the "createpopup"

Re: [flexcoders] Re: Cairngorm Events

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

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: Sent: Wednesday, July 26, 2006 6:59 PM Subject: [flexcoders] Alert + background b

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: Sent: Wednesday, July 26, 2006 3:25 PM Subject: [flexcoders] Cairngorm 2 - Sample Application? I'm new to cairngorm and have

Re: [flexcoders] Re: Local Connection

2006-07-26 Thread JesterXL
tell all I 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, bu

Re: [flexcoders] Re: Local Connection

2006-07-26 Thread JesterXL
c.resumeFile = function() { play(); } lc.stopandrestart = function() { gotoAndStop(1); } lc.playFile = function () { gotoAndPlay(1); } lc.getframeNum = function () { } lc.connect("swfConnect"); *** --- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wr

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: Sent: Wednesday, July 26, 2006 1:02 PM Subject: [flexcoders] Local Connection I think I am going to go crazy over this. I have tried this a few dif

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: Sent: Wednesday, July 26, 2006 12:53 PM Subject: [flexcoders] TitleWindow - Positioning

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

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

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

2006-07-26 Thread JesterXL
e enough! There's no reason not to list a hundred different rsls in the app tag, if we need to. And it may barely be possible to change the rsl property at runtime. (I find that highly unlikely, but possible.) Anyway, thank you, Jester! It was exactly what I needed! Greg --- JesterXL <[E

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 Cairn

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

2006-07-26 Thread JesterXL
was looking for. You can find 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

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

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

2006-07-26 Thread JesterXL
need to understand how to control the viewport and panning. 3. Memory Management. As you mentioned, tons of objects will have issues, I need to get a feel for how many is too many, if the user switches maps, how to delete the children... Thanks for your help, Rich --- In flexcoders@yahoogrou

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: 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 a GlowEffect on a Text

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] Re: Image Pan - Step 1

2006-07-25 Thread JesterXL
base container class for the DisplayList 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 childr

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: Sent: Tuesday, July 25, 2006 7:37 PM Subject: [flexcoders] Re: has anyone ever disabled selectability for a textArea?? Thanks for al

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 all,

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,

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 know when the array is updated in order to redraw themselves, like the DataGrid

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: Or, if you are going to use MyClass multiple times, but the xmlns:view stuff in your root tag so you only have to write it once. - Orig

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 tag; i

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

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")] Mak

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: Sent: Tuesday, July 25, 2006 2:31 PM Subject: [flexcoders] Flex2 Event Calendar I would like to write a event calendar

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: Sent: Tuesday, July 25, 2006 2:47 PM Subject: [flexcoders] Re: Pointing to Dynamic variables Anyone? --- In flexcoders@yahoogroups.com, "arnold_charming" <

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

2006-07-25 Thread JesterXL
t; images that we can load one time then use > > repeatedly. > > > So when the player first starts the game, they > > will > > > get the images from Set1.swf (for example). Then > > when > > > it's time to change images, we will load a new > >

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 MyText

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

2006-07-25 Thread JesterXL
gt; because > > we have to change the source property of Image > tags > > repeatedly, and this is costly. > > > > If you know another way to do this from what I am > > asking about, please tell me! But what we are > > wondering is if it's possible t

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] ASP.NET and Flex2

2006-07-24 Thread JesterXL
I can answer #3. You can do progressive streaming for FLV from the server. For true streaming, you'll need Flash Media Server. - Original Message - From: "prendergastjames" <[EMAIL PROTECTED]> To: Sent: Monday, July 24, 2006 4:24 AM Subject: [flexcoders] ASP.NET and Flex2 Hi, I'd lik

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

2006-07-24 Thread JesterXL
I thought it was TextArea.selectable = false;  Does it have that property?   - Original Message - From: JClouz To: flexcoders@yahoogroups.com Sent: Monday, July 24, 2006 5:19 PM Subject: [flexcoders] has anyone ever disabled selectability for a textArea?? I'm sorry to be a bothe

Re: [flexcoders] stage.focus problem with input fields

2006-07-24 Thread JesterXL
Try: inputField.setFocus(); inputField.setSelection(0, inputField.text.length); - Original Message - From: "Rick Schmitty" <[EMAIL PROTECTED]> To: Sent: Monday, July 24, 2006 6:04 PM Subject: [flexcoders] stage.focus problem with input fields I'm having display issues after using stag

Re: [flexcoders] Local Connection VS. SWF Loader

2006-07-24 Thread JesterXL
Sounds to me like you are not cleaning up your SWF. If you are going to unload it, make sure you disconnect (in a manner of speaking) and delete all LocalConnection stuff before unloading the SWF. If you don't, it may not work till the Garbage Collector comes along and forcefully removes the

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

2006-07-24 Thread JesterXL
hat I do not see in the Flex2 docs is the ability to use Remote object without FDS. Would you have to write your own custom class to do your remoting calls? I've done such in Flash. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jes

  1   2   3   4   5   6   7   8   9   10   >