Re: [flexcoders] YouTube style video (Video vs VideoDisplay)

2007-06-04 Thread Johannes Nel
for progressive and simple streaming videoDisplay is fine. i find it too limiting to build a robust streaming system (something that needs to try different ports switch to rtmpt etc) and we ended up writing our own wrappers for netstream and netconnection and extending UIComponent and attching

Re: [flexcoders] Please help!! Reduce alpha value of a color in a bitmap image?

2007-05-29 Thread Johannes Nel
loop, getPixel() setPixel32() On 5/28/07, arpan srivastava [EMAIL PROTECTED] wrote: Hi all, I am facing a lot of problem with bitmap image. Can anyone tell me a filter with which i can reduce the alpha value of a particular color. e.g. suppse i have a flag of Japan in which there is a

Re: [flexcoders] Styles and button skins contained in SWF

2007-05-25 Thread Johannes Nel
let me try to rephrase what i understood from what you are asking. you want to compile a css swf that contains skins (which are either png's or swf's) and get them to compile into your css-swf and then when you load the runtime style they are availible. then yes. just use the embed directive in

Re: [flexcoders] star (*) data type vs. Object

2007-05-24 Thread Johannes Nel
good post and i agree, dictionaries and arrays should return * On 5/23/07, Derek Vadneau [EMAIL PROTECTED] wrote: * is just like Object I couldn't disagree more. I really dislike that Object is referred to in the docs about *. There is an implication there that they are similar when they

Re: [flexcoders] Re: Am I using the right technology?

2007-05-21 Thread Johannes Nel
remote shared object would be my guess On 5/21/07, bhaq1972 [EMAIL PROTECTED] wrote: I'd be intersted to know, does LiveCycle Data Services use polling internally? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 21 May

Re: [flexcoders] Difference between getChild and getAtomationChild

2007-05-17 Thread Johannes Nel
attention to the automationChild. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Johannes Nel *Sent:* Tuesday, May 15, 2007 5:37 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Difference between getChild

Re: [flexcoders] Getting Parent's Style

2007-05-16 Thread Johannes Nel
also look into inheritbale style declarations On 5/15/07, Alex Harui [EMAIL PROTECTED] wrote: Parent is of type DisplayObjectContainer which does not have getStyle. So you have to cast: (parent as IStyleClient).getStyle(backgroundColor); Or

Re: [flexcoders] Difference between getChild and getAtomationChild

2007-05-15 Thread Johannes Nel
my guess its the interface for QTP On 5/15/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 15 May 2007, pmotzfeldt wrote: Hi, I am wondering what the difference between a regular child and an automation child of for instance an UIComponent. guess Some children are for purely GUI

Re: [flexcoders] Documentation tool for AS2 AS3

2007-05-13 Thread Johannes Nel
:( running on linux is the greatest need at the moment IMO. On 5/11/07, Jobe Makar [EMAIL PROTECTED] wrote: Tom, It won't run on Linux. It runs on Windows, and will support Mac after the Windows version is complete. Jobe Makar http://www.electrotank.com http://www.electro-server.com phone:

Re: [flexcoders] Flex on Mac

2007-05-13 Thread Johannes Nel
runs fine. On 5/11/07, Arleston Lueders [EMAIL PROTECTED] wrote: Hello everybody! I'm thinking in buy a MacBook. Does anyone have a Mac here? What do you think about it? And the Flex will run normal on Mac, right? Thanks, Arleston -- j:pn http://www.lennel.org

Re: [flexcoders] Problems with xmlns

2007-05-11 Thread Johannes Nel
its in the swc with the namespace declared in your own manifest file. add the cairngorm swc to your project library On 5/10/07, André Rodrigues Pena [EMAIL PROTECTED] wrote: Hi there, I downloaded the CairngormStore 2.1 and tried to compile it with mxmlc. I got the following error at the

Re: [flexcoders] Using SVN (tortoise) with Flex Builder

2007-05-11 Thread Johannes Nel
Tortoise SVN (because he was new to Flex and didn't know about Subclipse) and just checked in his whole project folder... Troy. On 5/8/07, Johannes Nel [EMAIL PROTECTED] wrote: its a standard svn function, command line, tortoise or subclipse. once one dev ignores a file its ignored for all users

Re: [flexcoders] Sysdeo Tomcat Plugin

2007-05-10 Thread Johannes Nel
yeah it does make a difference. FB is extremely stripped down. installing the FB plugin is the way to go. On 5/9/07, hank williams [EMAIL PROTECTED] wrote: I use sysdeo, but I use the flexbuilder plugin into a separate eclipse install rather than using the flexbuilder eclipse. I dont know

Re: [flexcoders] Using SVN (tortoise) with Flex Builder

2007-05-09 Thread Johannes Nel
its a standard svn function, command line, tortoise or subclipse. once one dev ignores a file its ignored for all users On 5/8/07, Jerome Clarke [EMAIL PROTECTED] wrote: Johannes Nel, said. you put them in your ignore list along with your bin folder. as far as I know... you configure

Re: [flexcoders] Re: Flex and XSLT

2007-05-09 Thread Johannes Nel
peter hall implemented xpath which might help you: code.google.com/p/xpath-as3/ On 5/8/07, Steven Lira [EMAIL PROTECTED] wrote: Have you made any progress on this? I have a similar situation and I'm thinking that XSLT is probably the best solution for manipulating the current XML for display

Re: [flexcoders] AMF Netconnection calls

2007-05-09 Thread Johannes Nel
i assume you are spawning a seperate thread so the call does not wait? you could return a remotesharedobject id which the client then listens to and when your 15 second process is finished set the data in there. On 5/8/07, Austin Kottke [EMAIL PROTECTED] wrote: Hi, I'm doing a remoting to

Re: [flexcoders] Using SVN (tortoise) with Flex Builder

2007-05-04 Thread Johannes Nel
you put them on the svn ignore list along with the bin folder On 5/2/07, Mark Ingram [EMAIL PROTECTED] wrote: So you're using SVN with Flex Builder? What do you do with the .actionScriptProperties / .flexProperties / .project files? Are they under source control?

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-23 Thread Johannes Nel
anybody in the long run. On 4/23/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 18 Apr 2007, Johannes Nel wrote: I don't see Flex or ActionScript support in it. And I never had much luck with ANT scripts for Flex from Eclipse either. funny that. i compile fine in eclipse using ant

Re: [flexcoders] Re: Two-Way Communication

2007-04-23 Thread Johannes Nel
? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: as i suggested before look at the netconnection class and tunneling over rtmpt :80 On 19 Apr 2007 09:47:09 -0700, Matt [EMAIL PROTECTED] wrote: Since I don't seem to be getting there with my original

Re: [flexcoders] Two-Way Communication

2007-04-20 Thread Johannes Nel
as i suggested before look at the netconnection class and tunneling over rtmpt :80 On 19 Apr 2007 09:47:09 -0700, Matt [EMAIL PROTECTED] wrote: Since I don't seem to be getting there with my original basic idea of straight communication via port 80, let me rephrase the problem and hopefully

Re: [flexcoders] Re: Socket to Port 80

2007-04-19 Thread Johannes Nel
between the flash client and my web server via port 80. I don't particularly care how I accomplish that so long as it works. ;) Thanks for the tip and if you have any examples using RTMP I'd love to see them. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED

Re: [flexcoders] Can someone please help me? Error message *No Disk*

2007-04-18 Thread Johannes Nel
this is an eclipse issue me thinks as i had this problem with an eclipse version of mine that did not have the FB plugin installed On 17 Apr 2007 06:00:18 -0700, Eric Swann [EMAIL PROTECTED] wrote: I experienced the same issue and put the installer disk into my cdrom when prompted. Assuming

Re: [flexcoders] Socket to Port 80

2007-04-18 Thread Johannes Nel
try specifying a random protocol name and get your servlet to interpret that. its just a guess but it mighyt work as rtmpt and rtmp can be used over port 80 On 18 Apr 2007 02:29:02 -0700, Matt [EMAIL PROTECTED] wrote: I am trying to use ActionScript (in Flex) to communicate back to the HTTP

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-18 Thread Johannes Nel
comments inline. On 17 Apr 2007 06:45:49 -0700, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 17 Apr 2007, Johannes Nel wrote: cruisecontrol (which you use with your svn (for example)) to manage your builds. the great advantage that cruise control gives you is that its build already, I

Re: [flexcoders] Library compilation takes too much time

2007-04-17 Thread Johannes Nel
not having the project open in FB should mean they do not recompile On 17 Apr 2007 04:21:13 -0700, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! Each time I change class in library project it takes to much time to recompile, because all the projects that use this library are recompiled.

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-17 Thread Johannes Nel
as well. spend some time to save a lot of time, is that not a core mantra for all developers :-/ my 2 cents. johan On 16 Apr 2007 06:50:32 -0700, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 16 Apr 2007, Johannes Nel wrote: a poroper continues integration system provides a build nuimber for you

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-16 Thread Johannes Nel
a poroper continues integration system provides a build nuimber for you when you use cruisecontrol for example the main problem with just incrementing a file/number for your builds comes to the fore when you have multiple people working on a project. either you have to commit this number via a

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-16 Thread Johannes Nel
, Johannes Nel [EMAIL PROTECTED] wrote: why not get a proper CI system going. that will solve many issues you had not even noticed you had. On 12 Apr 2007 06:49:12 -0700, bhaq1972 [EMAIL PROTECTED] wrote: Is there anything flexbuilder could generate and place into the html wrapper

Re: [flexcoders] timers and hibernating a pc/mac

2007-04-13 Thread Johannes Nel
the exception? Are you getting a Flash Player error, a browser crash... what are you getting on the Mac, for example? Is it different under different browsers? Troy. On 11 Apr 2007 05:58:41 -0700, Johannes Nel [EMAIL PROTECTED] wrote: Hi All when i have a timer running and i hiberbnate/sleep

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-13 Thread Johannes Nel
why not get a proper CI system going. that will solve many issues you had not even noticed you had. On 12 Apr 2007 06:49:12 -0700, bhaq1972 [EMAIL PROTECTED] wrote: Is there anything flexbuilder could generate and place into the html wrapper --- In [EMAIL PROTECTED]

[flexcoders] timers and hibernating a pc/mac

2007-04-11 Thread Johannes Nel
Hi All when i have a timer running and i hiberbnate/sleep on either my pc or mac i get an exception on startup again. this is looow priority but would be nice to solve. ideas? johan -- j:pn http://www.lennel.org

Re: [flexcoders] Flex on a SmartPhone?

2007-03-30 Thread Johannes Nel
well you do have flex 1.5 targeting player 7 :) would love to see how that beast kills a phone... On 3/29/07, John Dowdell [EMAIL PROTECTED] wrote: Nick Collins wrote: Nope, not possible as Flex requires the Flash 9 player with the new VM, which doesn't currently run on smartphones.

Re: [flexcoders] How to write Flex proxy without data server access and FDS

2007-03-23 Thread Johannes Nel
use your own webserver to relay the request On 22 Mar 2007 12:39:21 -0700, rzilist [EMAIL PROTECTED] wrote: Hi folks, I'm consuming a webservice from secured domain which has no crossdomain.xml file found at server root. It works locally, but I get the Security error accessing url message

Re: [flexcoders] Cairngorm for Apollo?

2007-03-20 Thread Johannes Nel
why can't you use cairngorm for appollo as it is? On 19 Mar 2007 07:24:54 -0700, João Fernandes [EMAIL PROTECTED] wrote: I think the subject says all, will be a cairngorm version for Apollo? Thanks, João Fernandes -- j:pn http://www.lennel.org

Re: [flexcoders] Overriding a read-only property

2007-03-19 Thread Johannes Nel
public override function get name():type { return super.name; } public function set name(value:Type):void { do what you want } On 3/19/07, Nahid Mahfuza Alam [EMAIL PROTECTED] wrote: Hello, I need to modify the percentRect property (e.g.; x, y,width,height of percentRect) of

[flexcoders] optimal way to declare styles

2007-03-03 Thread Johannes Nel
hi i am creating a video controller bar. so this controller bar consits of several buttons and 2 sliders. so for each of these buttons i want someone to be able to specify all the different skins. so my style declaration looks something like this /** * Default controller

Re: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-08 Thread Johannes Nel
removing this listener would be tricky however. On 2/8/07, Ralf Bokelberg [EMAIL PROTECTED] wrote: Yes that's possible, but semantically it is slightly different. Inside the binding tag, the sequence of function calls is given by the sequence in your code. If you use mulitple

Re: [flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-08 Thread Johannes Nel
why is FDS such a problem. there are free license options availible On 2/8/07, brian.knorr [EMAIL PROTECTED] wrote: Yes - we are very interested in leveraging the existing automation packages...we need some questions answered first...please see my response here:

Re: [flexcoders] Re: Poor man's PUSH technology (aka reload data using timer)

2007-02-07 Thread Johannes Nel
another option you could consider is using red5 (www.osflasg.org/red5) for the remote shared object. On 2/7/07, Adam Royle [EMAIL PROTECTED] wrote: This is some code I have written for a similar project... It simply runs through the dataProvider searching for a matched id. If it finds the

Re: [flexcoders] Re: Project structure

2007-02-06 Thread Johannes Nel
there is no sollution apart from ant for this. v. irritating. On 2/6/07, Stembert Olivier (BIL) [EMAIL PROTECTED] wrote: You organize your applications in a package hierarchy. What I'd like is to organize them in a folder hierarchy like in the samples webapp. Rgds, Olivier

[flexcoders] Re: changewatcher and XML

2006-12-13 Thread Johannes Nel
bump how does the framework then detect changes to XML objects? is this possible? ... On 12/12/06, Johannes Nel [EMAIL PROTECTED] wrote: hi when i go changewatcher.canWatch(this,someXMLObject); the result is true. however when i do add a watch it never fires (code sample below) and when i

Re: [flexcoders] Re: changewatcher and XML

2006-12-13 Thread Johannes Nel
below __dataCopy can't be watched. Cheers, Ralf. On 12/13/06, Johannes Nel [EMAIL PROTECTED] wrote: bump how does the framework then detect changes to XML objects? is this possible? ... On 12/12/06, Johannes Nel [EMAIL PROTECTED] wrote: hi when i go changewatcher.canWatch

[flexcoders] changewatcher and XML

2006-12-12 Thread Johannes Nel
hi when i go changewatcher.canWatch(this,someXMLObject); the result is true. however when i do add a watch it never fires (code sample below) and when i use the getEvents method the object returned is empty. whats up with this seeming contradiction, and how does binding then work on XML

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Johannes Nel
use .item of the treeEvent to get the model and use selectedItem in the tree to set according to model. so what i am basically saying is do your iteration over the dataprovider and code according to the data vs the view. On 12/12/06, hank williams [EMAIL PROTECTED] wrote: Here's the issue.

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Johannes Nel
in the dataprovider so I dont know how I could set the set a selected item in the data vs the view. Selection is a view only concept. Hank On 12/12/06, Johannes Nel [EMAIL PROTECTED] wrote: use .item of the treeEvent to get the model and use selectedItem in the tree to set according to model. so what i am

Re: [flexcoders] Trace(), not in debug mode? [Flex 2]

2006-11-06 Thread Johannes Nel
you can still watch the trace using a tool like afterthought or even tailing the log with cygwinOn 11/6/06, Roscoe P Coltrane [EMAIL PROTECTED] wrote:Hello,Is it possible to obtain trace output to the console or to a file when not running in debug mode? I have a sequence of events that works

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-03 Thread Johannes Nel
ability to grab chunks from the screen into a bitmapdata obj.On 11/1/06, Tom Chiverton [EMAIL PROTECTED] wrote:On Tuesday 31 October 2006 20:41, Gordon Smith wrote: Just wondering, since I'm working on it... what features of Apollo are people most excited about?This is difficult, because many

Re: [flexcoders] Flash Player 9 Beta Available

2006-10-19 Thread Johannes Nel
Anyone knows what is that about?fullscreen videoOn 10/19/06, Rogerio Gonzalez [EMAIL PROTECTED] wrote: Hello all,In the addobe labs, there also updates for the windows(ie/ff)/mac player versions.Anyone knows what is that about?Rogerio On 10/18/06, João Fernandes [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: WebOrb for Rails

2006-10-09 Thread Johannes Nel
openAMF won't be used by enterprises due to security concerns, the group i consult to had it code reviewed and found numerous security concerns. futher more you ahve to understand the way most large companies think. nobody has ever been fired for hiring IBM have they.On 10/7/06, hank williams

Re: [flexcoders] Google Code Search

2006-10-09 Thread Johannes Nel
well google are looking for as coders and for flex coders...On 10/6/06, Prakaz [EMAIL PROTECTED] wrote: Is ActionScript, MXMLunder-rated?? *Sigh* On the positive note, hope google engineers are working on this and it will be available soon.. :-) -P On 10/6/06, Brendan Meutzner

Re: [flexcoders] Reducing compiled SWF file size without RSL

2006-10-05 Thread Johannes Nel
if its such a simple app do it in flash as you are incurring the cost of the flex fraework there. On 10/4/06, Pablo Apanasionek [EMAIL PROTECTED] wrote: Hey all! Just wondering how can i reduce the pre-compiled SWF file size of a very simple app = (Application + HBox + Loader +

Re: [flexcoders] make eclipse ignore directories

2006-10-05 Thread Johannes Nel
compile using your own ant script. On 10/5/06, Shannon Hicks [EMAIL PROTECTED] wrote: I'm having an issue where eclipse is pushing my .svn server every time I compile my app... any way to have it ignore .svn directories? Shan -- No virus found in this outgoing message. Checked

Re: [flexcoders] Re: MXML Constructor

2006-09-27 Thread Johannes Nel
if he wants a constructer i would imagine that innitialize is betterOn 9/27/06, Tom Chiverton [EMAIL PROTECTED] wrote:On Tuesday 26 September 2006 16:57, tobiaspatton wrote: MyComp.mxml mx:Script![CDATA[ public function MyComp() { super(); // do some constructor stuff } ]] /mx:Script ITYM:xml

Re: [flexcoders] Re: How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread Johannes Nel
try altering the index.template.html page and then running in debug mode from eclipse?On 9/15/06, hank williams [EMAIL PROTECTED] wrote:Someone must know the answer to this!On 9/14/06, hank williams [EMAIL PROTECTED] wrote: I need to be able to invoke the debug version of my flex app from the

Re: [flexcoders] mxml escape character??

2006-09-14 Thread Johannes Nel
take the its a text attribute so do this function bla():String { return {} } mx:Text text=bla()/On 9/12/06, Chad Callahan [EMAIL PROTECTED] wrote: I need to include the { and } characters inside of an mxml tag's argument value but mxml reads the { and } as bindable. Is there

Re: [flexcoders] Rotating html text

2006-09-14 Thread Johannes Nel
dunno if there is another work around but takinhg a snapshot using bitmapdata might solve the rotation. won't be particulary editable thoughOn 9/12/06, jeremyrichman [EMAIL PROTECTED] wrote: I have a Text field that I want to rotate but it must display htmltext, not just plain text.I have

Re: [flexcoders] Binding a function to a MXML property

2006-09-12 Thread Johannes Nel
[Bindable (changeEvent=myEvent)] private function showVBox() : Boolean { return (model.clientModel.selectedClie nt.contacts.length 0);} and then you dispatch my event whenever the length changes On 9/11/06, dreuimar [EMAIL PROTECTED] wrote: Hey everyone,I have a VBox:mx:VBox

Re: [flexcoders] File Download: Can scriptTimeLimit only be set globally?

2006-09-10 Thread Johannes Nel
if you have a LARGE dataset have you considered using a flv's metadata to stream the information in? On 9/8/06, Michael Schmalle [EMAIL PROTECTED] wrote: Ok,Before I go into detail, I use it for actual procssesing in the player.I am a bit confused on what you would use the setInterval()

Re: [flexcoders] Flex2 and Breeze syncSWF

2006-09-10 Thread Johannes Nel
afaik breeze doesn't support flex 2 yet.On 9/10/06, qnotemedia [EMAIL PROTECTED] wrote: Is there any way to dispatch/receive breeze syncSWF functions inFlex2?Other than loading the extension, is there anything else I needto do to get started in Flex?

Re: [flexcoders] Re: Confirmed Bug: SOAP request construction with .NET web service... again

2006-09-07 Thread Johannes Nel
thanks for sharing this information!!!On 9/5/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: Just minutes after posting my last message I received another emailfrom Adobe confirming that engineering is working on fixes to all 3 bugs I've encountered while dealing with .NET web services.

Re: [flexcoders] Re: Bubbling, Practical Use?

2006-09-04 Thread Johannes Nel
public static const CLICK:String = mySpecialComboBoxClick; the problem with this lies in mxml and the [Event(name)] declaration where i would assign a handler to my component in mxml then by going c:MyView mySpecialComboBoxClick=func()/ __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Bubbling, Practical Use?

2006-09-04 Thread Johannes Nel
in a pure Cairngorm appain't seen one of them yet myself :) __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED

Re: [flexcoders] Bubbling, Practical Use?

2006-08-30 Thread Johannes Nel
nested items in a view.On 8/29/06, lostinrecursion [EMAIL PROTECTED] wrote: Hi all, I understand the concept of bubbling and know what it doeswith no issue. But, for some reason I can't think of a practical application of it?Could someone just give me a brief example of when bubbling might

Re: [flexcoders] Flex Builder 2, getting slower as code grows

2006-08-30 Thread Johannes Nel
switch off incremental compilation. build when you need it, or deploy to a seperate server and build thereOn 8/29/06, j_sevlie [EMAIL PROTECTED] wrote:Is there some kind of coding limitation on how much Flex Builder can handle before it gets completely unusable?I'm currently working on a

Re: [flexcoders] loading whole Application

2006-08-30 Thread Johannes Nel
creationPolicy=allOn 8/28/06, arnold_charming [EMAIL PROTECTED] wrote: Hi!How to load the whole application? I'm asking this because I'm usingsevral viewstack and it is evident that the screens have to be loaded every time.--Flexcoders Mailing ListFAQ:

Re: [flexcoders] i can not find flex 1.5 SDK

2006-08-25 Thread Johannes Nel
google flex 1.5 swd and decompile. its sorta the source of the 1.5 framework, but it doesn't compile, but could help you on your way.On 8/25/06, Battershall, Jeff [EMAIL PROTECTED] wrote: Flex 1.5 didn't have an SDK to my knowledge.The entire licensing scheme of Flex has changed between

Re: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-25 Thread Johannes Nel
you mean the compiler...heh. yeah mate, that ain't dodgy at all. On 8/25/06, dan_marcu_eee [EMAIL PROTECTED] wrote:On adobe.com there are some traces of flex 1.5 SDK. From that kit ineed the executable used to compile SWF's. I can not use the one inflex 2 sdk because it seems it does not

Re: [flexcoders] Functionality Between Components and the Main Application

2006-08-25 Thread Johannes Nel
dispatch an event when a button gets clicked. let the container listen to it on the toolbar. On 8/23/06, Megan [EMAIL PROTECTED] wrote:Hi! I've been trying to figure out how to do this sort of thing, and thought I'd ask before messing with it anymore.I have a toolbar that's in its own

Re: [flexcoders] How to assign NetStream to VideoDisplay component?

2006-08-25 Thread Johannes Nel
what version of flex?On 8/24/06, ?? [EMAIL PROTECTED] wrote: Hi all I have Flex application which connects to FMS 2 and retrieves NetStream. How can I use VideoDisplay or other resizable component instead Video object for displaying media? Thanks Mozilla By

Re: [flexcoders] any way to catch application exit?

2006-08-11 Thread Johannes Nel
_javascript_.On 8/11/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Is there any way to tie an event to the application exiting? I know this is a longshot, but it should would make my settings-saving code a lot nicer. I have a few ways to work around it, so don't worry about suggesting an

Re: [flexcoders] Creating State using ActionScript

2006-08-10 Thread Johannes Nel
http://www.lennel.org/blog/2006/04/09/some-more-on-viewstacks-and-states/ On 8/10/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All!Does anybody have experience creating view states using ActionScript,not in MXML? Imagine, I have two view states, defined in MXML and Iwant to extend this

Re: [flexcoders] creationPolicy=all for view states?

2006-07-23 Thread Johannes Nel
there is an add and remove childOn 7/21/06, jeff tapper [EMAIL PROTECTED] wrote: Is there an equivilent to creationPolicy=all for view states?I'dlove to have the ability to have all the child elements in a viewautomatically created in the few times when i need them to be, much like we can do

Re: [flexcoders] State vars: good, bad, ugly?

2006-07-19 Thread Johannes Nel
nice XP pimping there...On 7/17/06, Steven Webster [EMAIL PROTECTED] wrote: I'd advocate STTCPW (Simplest Thing That Could Possibly Work). If you have a tab navigator with 3 states, then something like the below is going to be more than appropriate, and anything more complex is

Re: [flexcoders] FlexUnit question

2006-06-12 Thread Johannes Nel
what he is asking is wether naming a function starting with test will automatically add the test to be run as it does in most unit test frameworks. i know asunit (for as3 as well) does this.On 6/12/06, Andriy Panas [EMAIL PROTECTED] wrote: Hi Max,Monday, June 12, 2006, 1:15:13 PM, you

Re: [flexcoders] Flex2b3 Drawing API

2006-06-05 Thread Johannes Nel
thats because its a sprite and not part of the flex framework. you should be able to add it to allChildren or something like that, i cannot recall exactly now. otherwise instead of a sprite create a canvas.On 6/5/06, Tom Chiverton [EMAIL PROTECTED] wrote: As there are no examples of this in the

Re: [flexcoders] Flex 1.5 Cairngorm and Data Binding

2006-05-11 Thread Johannes Nel
YES. this is a core feature of what flex has to offer.On 5/11/06, Simon Fifield [EMAIL PROTECTED] wrote: Would you say that it is one of the better/key features of the Flex framework? Simon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven

Re: [flexcoders] Best way to set component height based on size of parent container?

2006-04-20 Thread Johannes Nel
just set the vScrollPolicy = off whilst setting the height to what you want.On 4/20/06, flexabledev [EMAIL PROTECTED] wrote:I have two simple scenarios that I need help with.1.I have a Canvas that scales with the Browser window.On that Canvas, I have a panel with a top and bottom layout

Re: [flexcoders] How to override type cast operator @ runtime?

2006-04-19 Thread Johannes Nel
have you tried an explicit coercion?var o:* = new ObjectProxy(new B());var b:B = B(o);On 4/19/06, Vadim Melnik [EMAIL PROTECTED] wrote:Hi All,flash.util.Proxy/mx.utils.ObjectProxy classes allow us to override properties access, methods call etc. Is it possible to override typecast operations

Re: [flexcoders] Re: How to override type cast operator @ runtime?

2006-04-19 Thread Johannes Nel
] to B--Thanks,Vadim Melnik.--- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED]wrote: have you tried an explicit coercion? var o:* = new ObjectProxy(new B()); var b:B = B(o); On 4/19/06, Vadim Melnik [EMAIL PROTECTED] wrote: Hi All, flash.util.Proxy/mx.utils.ObjectProxy classes

Re: [flexcoders] Re: All the bunch of idiots at Adobe, please note!

2006-04-17 Thread Johannes Nel
i have worked with brian o'conner and several other adobe consulting developers (and some are still here) for a very large company. i have always found them extremely helpful, more than that, exceptionally helpful and open to new concepts. i think the way you have reacted is not only over the

Re: [flexcoders] FlexBuilder 2 and Flex 1.5

2006-04-15 Thread Johannes Nel
its not possible. why don't u just use eclipse with asdt plugin for the as and the wtp plugin for the mxml. darron schall posted about this on his blog a while ago.On 4/15/06, superabe superabe [EMAIL PROTECTED] wrote: Had anybody had any luck with figuring outplugins/workflow that might

Re: [flexcoders] FlexBuilder 2 and Flex 1.5

2006-04-15 Thread Johannes Nel
PROTECTED] wrote: Thanks, will try that out. - superabe On 4/15/06, Johannes Nel [EMAIL PROTECTED] wrote: its not possible. why don't u just use eclipse with asdt plugin for the as and the wtp plugin for the mxml. darron schall posted about this on his blog a while ago. On 4/15/06, superabe

Re: [flexcoders] Calling previous state

2006-04-10 Thread Johannes Nel
afaik no, but have you tried overriding the setter for currentState and just calling the setCurrentState method out of your override?On 4/10/06, Jeremy Rottman [EMAIL PROTECTED] wrote:I am working on my app, and I have run into a situation where I need change states and then when a user saves

Re: [flexcoders] Drag from Tree, drop to List?

2006-04-06 Thread Johannes Nel
what version of flex?On 4/6/06, Stefan Richter [EMAIL PROTECTED] wrote: Should a drag and drop from a tree to a list be possible or is there anything 'special' about such an operation? Stefan -- Flexcoders Mailing List FAQ:

Re: [flexcoders] creating states with effects programatically

2006-03-29 Thread Johannes Nel
hunting for appropiate docsthat may work for flex-2 beta-2. On 3/29/06, Johannes Nel [EMAIL PROTECTED] wrote: hi allI am able to create states fine programatically, even assign transitions to the view, but my transitions don't trigger when i switch from one state to another var

Re: [flexcoders] creating states with effects programatically

2006-03-29 Thread Johannes Nel
. I am not saying that it completely not work but its working behaviour is abnormal Regards; jignesh On 3/29/06, Johannes Nel [EMAIL PROTECTED] wrote: if you mean states as declared in mxml, yes they work fine. this code ported seemlesly from beta1 to beta2 (adobe's port tool doing the trick

Re: [flexcoders] creating states with effects programatically

2006-03-29 Thread Johannes Nel
on clicking radio button one, it resizes in a glimpse woth no transition motion,,, in short, at the very first time the transition works but then after no transition effect at all. regards, Jignesh On 3/29/06, Johannes Nel [EMAIL PROTECTED] wrote: like how? On 3/29/06, Jignesh Dodiya

Re: [flexcoders] Re: Using mxml without flex framework (Flex 2 Beta 1 and 2)

2006-03-28 Thread Johannes Nel
since flex is free(of cost) i wonder what you mean byt this.On 3/28/06, Jignesh Dodiya [EMAIL PROTECTED] wrote: lol. .Obvious Adobe is not do development to serve people for freeof cost.. On 3/28/06, Matt Chotin [EMAIL PROTECTED] wrote: FYI I checked and we're not planning on supporting

Re: [flexcoders] Re: Using mxml without flex framework (Flex 2 Beta 1 and 2)

2006-03-28 Thread Johannes Nel
in the context of the current topic i still don't get what you mean. paying for an ide is not a problem, its to be expected. about the topic at hand: it would have been nice if i could have used mxml to layout any type of app. -- Flexcoders Mailing List FAQ:

[flexcoders] creating states with effects programatically

2006-03-28 Thread Johannes Nel
hi all I am able to create states fine programatically, even assign transitions to the view, but my transitions don't trigger when i switch from one state to another var stateArray:Array = (__view.states != null)?__view.states.concat(): new Array(); var nState:State = new State();

Re: [flexcoders] FB2 :: Plugin, where is it?

2006-03-26 Thread Johannes Nel
ant is not installed by default, which is the the real killler, other than that none of the standard java stuff is there. the pluging version of zorn is in the same installer, all you do is you choose to install the plugin version and point it to a eclipse folder. On 3/26/06, Michael Schmalle

Re: [flexcoders] Re: Flex2: version control plugin

2006-03-25 Thread Johannes Nel
a piece of advise, don't install the standalone version of flex builder, rather intsal the plugin as the standalone is severely crippeled by defaultOn 3/25/06, Dave Wolf [EMAIL PROTECTED] wrote: There is also a subversion plugin for eclipse, although I havent usedit.We use Eclipse as the Java

Re: [flexcoders] What happened to mx.utils.Deletage?

2006-03-24 Thread Johannes Nel
delegates are build into as3, so if you assign an event handler it will execute in the right scope. i cannot help you with WS implementation in AS3 yet.On 3/24/06, Chris Scott [EMAIL PROTECTED] wrote: Hi, long time reader first time poster. OK, just started readingyesterday, but anyway. First

Re: [flexcoders] What happened to mx.utils.Deletage?

2006-03-24 Thread Johannes Nel
, 2006, at 11:15 AM, Johannes Nel wrote: delegates are build into as3, so if you assign an event handler it will execute in the right scope. i cannot help you with WS implementation in AS3 yet. On 3/24/06, Chris Scott [EMAIL PROTECTED] wrote: Hi, long time reader first time poster. OK, just started

Re: [flexcoders] What happened to mx.utils.Deletage?

2006-03-24 Thread Johannes Nel
here is the as3 tech note:http://labs.macromedia.com/wiki/index.php/ActionScript_3:overview#Delegation On 3/24/06, Johannes Nel [EMAIL PROTECTED] wrote: i am not 100% certain i understand what you mean (heads a bit thick with anti-flu medicine) but here is a nice rule of thumb.once a class

Re: [flexcoders] Tomcat and Flex 2 beta 2

2006-03-24 Thread Johannes Nel
what are you using for the app server? tomcat is just a servlet container, so you still need a app server for jms, which the collabation sampless run on.On 3/24/06, sof4real03 [EMAIL PROTECTED] wrote: Has anyone gotten Flex 2 beta 2 configured correctly on tomcat 5, JDK1.5? I followed the

Re: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-23 Thread Johannes Nel
hi ted,have you got an example of a flex2 mxmlc ant script that works properly?ThanksjohanOn 3/23/06, Ted Patrick [EMAIL PROTECTED] wrote:Renaun,We use ANT on developer machines and on the server for deployment. Typically a single build.xml file sits in the root of the SVN repository for a

Re: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-22 Thread Johannes Nel
thats the fastest for sure. personally i use mxmlc directly,but it gets a wee bit slow when the project gets big. one of my team members tried the fastmxmlc but according to him there weren't any/very little increase in compile timesOn 3/22/06, Renaun Erickson [EMAIL PROTECTED] wrote: After

Re: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-22 Thread Johannes Nel
hear hear on what david says. using ant we update from svn build unit tests app using mxmlc, if all tests pass use mxmlc to build app so yeah it has its benefits :) so it is critical to the process asOn 3/22/06, Dave Wolf [EMAIL PROTECTED] wrote: That depends what you mean by better.In Flex

Re: [flexcoders] Re: mxmlc/compc versus web server compile

2006-03-22 Thread Johannes Nel
?Or only on the majorbuilds on the deployment (staging/production) servers?Renaun--- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED]wrote: hear hear on what david says. using ant we update from svn build unit tests app using mxmlc, if all tests pass use mxmlc to build app so yeah

<    1   2   3   4   >