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

2006-03-22 Thread Johannes Nel
, Johannes Nel [EMAIL PROTECTED]wrote: this is both for develpers (developer chooses which target to compile - unitests,app or all) and our continues integration server. we onlydeploy a swf to production. On 3/22/06, Renaun Erickson [EMAIL PROTECTED] wrote: Thanks Johannes for insight. Is this what

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

2006-03-22 Thread Johannes Nel
@yahoogroups.com, Johannes Nel [EMAIL PROTECTED]wrote: My question then would be, is the speed of compilation a main factor in the choice of compilation methods? well as i orignally stated the appserver approach is the fastest, so if its speed you are after, yeah go for it. some of the larger

Re: [flexcoders] Singleton not usable?

2006-03-20 Thread Johannes Nel
discussed on this list already, search the archives for the suggested adobe sollutionOn 3/20/06, Sonja Duijvesteijn [EMAIL PROTECTED] wrote: Hi all, I'm trying to make a singleton class as demonstrated below, but get the error: a constructor may only be declared 'public'. Well, that error is

Re: [flexcoders] Flash Player public beta

2006-03-20 Thread Johannes Nel
maybe because beta 2 is coming out and a lot of api's have been refactored this player beta is another build (aka has the beta 2 framework ) normally the player beta is only released for backwards compatibility testing so... On 3/20/06, Brian Lesser [EMAIL PROTECTED] wrote: Don't know... I

Re: [flexcoders] Flex2.0 with OpenAMF

2006-03-20 Thread Johannes Nel
you should however be able to set the encoding property for the amf objectencoding to amf0 check out flash.net.ObjectEncoding and then (i havn't done amf with flex2 yet) check out urlloader. On 3/20/06, Rob Rusher [EMAIL PROTECTED] wrote: OpenAMF should _NOT_ work with Flex 2 due to changes in

Re: [flexcoders] Flex2.0: MXMLC compiler is a big pain during migration from 1.5 to 2.0

2006-03-20 Thread Johannes Nel
if you had unit tests everything would be linked autmatically to the compiler. a good argument for best practises no... anyway, i suggest you check out this: http://www.lennel.org/blog/2006/03/02/an-advantage-of-unit-testing-with-flex2as3/ and this: someone said beta 2 is being released pretty

Re: [flexcoders] Flex2.0: MXMLC compiler is a big pain during migration from 1.5 to 2.0

2006-03-20 Thread Johannes Nel
what i forfot to say with betya 2 being released soon, i am not certain what parts of the unit test template will break. so just keep that in mindOn 3/20/06, Johannes Nel [EMAIL PROTECTED] wrote: if you had unit tests everything would be linked autmatically to the compiler. a good argument

Re: [flexcoders] Flexbuilder 2 memory usage :o

2006-03-20 Thread Johannes Nel
eclipse has never been ram friendly :( upgrade your jre to 1.5 that helps a lotOn 3/20/06, Richie Rich [EMAIL PROTECTED] wrote: The System memory requirements for FLEX 2.0 Beta1 is 1GB I am hopingthat is just for the beta and when we get the final product it will be more RAM friendly. I am sure

Re: [flexcoders] Flex2.0: MXMLC compiler is a big pain during migration from 1.5 to 2.0

2006-03-20 Thread Johannes Nel
like Void should have been void. They are getting it consistent, you should be happy! Peace, MikeOn 3/20/06, Johannes Nel [EMAIL PROTECTED] wrote: what i forfot to say with betya 2 being released soon, i am not certain what parts of the unit test template will break. so just keep that in mindOn 3

Re: [flexcoders] Re: Flex job posting * * * RESUME and Sample Sites Attached

2006-03-18 Thread Johannes Nel
doh... On 3/11/06, Robert Thompson [EMAIL PROTECTED] wrote: Please put me on your list Ryan, and check out my sites at www.activecommunity.comThat's just a temporary page for now but you can see the last 3 sites I did.I'm doing a lot of testing of integrating .NET components on server side to

Re: [flexcoders] How to refresh a component

2006-03-17 Thread Johannes Nel
eish, the tree ion flex 1.5. anyway after creating treeNodes using the treeNode model classes and dispatching the modelChanged event i founf the tree is not always updated. its somewhere in this archive. the approach i then took was to take a peice of xml, alter that and reset the dataprovider

[flexcoders] polymorphic interfaces

2006-03-06 Thread Johannes Nel
hi all, especially Adobe dudes working on ze language. the fact that method signatures are not polymorphic when implementing an interface or overriding a function is a real pain in the behind. now in my interface i have to create a function as such interface IBla { function

Re: [flexcoders] polymorphic interfaces

2006-03-06 Thread Johannes Nel
[mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent: Monday, March 06, 2006 1:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] polymorphic interfaces hi all, especially Adobe dudes working on ze language. the fact that method signatures are not polymorphic when implementing

Re: [flexcoders] polymorphic interfaces

2006-03-06 Thread Johannes Nel
classes, etc. -- but we can't open up the feature set again this late in the cycle (nearly Beta 2). - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent: Monday, March 06, 2006 1:12 PM To: flexcoders@yahoogroups.com Subject

Re: [flexcoders] GUI testing best practices

2006-03-05 Thread Johannes Nel
as the guys from adobe has stated on this list before they are currently in some prerelase alpha or beta testing stage of a product for this. search the archives for mecury On 3/4/06, Michael Klishin [EMAIL PROTECTED] wrote: Hi,With FlexUnit for Flex 2 have been realised recently I have to ask

[flexcoders] flex 2 creation policy

2006-03-04 Thread Johannes Nel
hi all i have mx:VBox xmlns:mx=http://www.macromedia.com/2005/mxml xmlns=* mx:Canvas id=__container innit:SomeComp id=__build width=100%/ container:SomeComp2 id=__tool width=100% creationPolicy=none/ /mx:Canvas /mx:VBox where __tool's creationPolicy is set to none then in a function

Re: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Johannes Nel
this is expected behaviour i thinkOn 3/3/06, Sönke Rohde [EMAIL PROTECTED] wrote: Hi,Using the AS3-Date-Class the first time I recognized that the month isstarting at 0 means 0 is January. Is this the expected behaviour?Example:var d:Date = new Date(2006,03,22); trace(date + d); // date Sat

[flexcoders] weird bug with IE and states Flex2

2006-03-02 Thread Johannes Nel
take this code?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml xmlns=* layout=absolute mx:states mx:State name=PlannerMode mx:SetProperty target={panel1} property=x value=27/ mx:SetProperty target={panel1} property=height value=102/

[flexcoders] Flex2 line chart and vertical axis

2006-03-02 Thread Johannes Nel
hi all i have a line chart that i am feeding a fair bit of info into. all good. the problem is that the vertical axis displays stuff like 7590.995 as a refpoint. now i looked at the IAxis interface and it has a getUnitSize method, no setter for it (and no documentation yet),

Fwd: [flexcoders] Flex2 line chart and vertical axis:Solved

2006-03-02 Thread Johannes Nel
Email: [EMAIL PROTECTED] Office: 617-219-2205 Mobile: 617-306-3713 / \ 888/ \888 88/ / \88 8/ /8\ \8 / /888\ \ \8\ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent: Thursday, March 02, 2006 2:21 PM To: flexcoders

Re: [flexcoders] Bitmap

2006-03-01 Thread Johannes Nel
something else which should work vBoxInstance.allChildrenList.addChild(pDisplayObject); i would go with what manish says simply because the framework will play nicer with itOn 3/1/06, Manish Jethani [EMAIL PROTECTED] wrote:On 2/28/06, Richard Schutten [EMAIL PROTECTED] wrote:[snip] Now i

Re: [flexcoders] Mono MP3s (bug?)

2006-02-27 Thread Johannes Nel
dude, are you bruce eckel from mindview?On 2/27/06, Bruce Eckel [EMAIL PROTECTED] wrote: Has anyone else seen this behavior:I have an application that uses Flash 8.5's built-in MP3 player. When the MP3 is a stereo file, it works fine. When I convert the MP3 to a mono file, the file plays in

Re: [flexcoders] Re: Array based class throws error for splice method call

2006-02-27 Thread Johannes Nel
array is not marked as final according to the docs so you should be able to subclass itOn 2/27/06, Paul BH [EMAIL PROTECTED] wrote:I may be wrong - havent looked at AS3 in a while, and I couldnt find it after a 10 minute hunt, but I think I read somewhere you are no longer allowed to subclass

Re: [flexcoders] Re: Flexunit for Flex 2

2006-02-21 Thread Johannes Nel
asunit has a as3 testing frameworkOn 2/21/06, Niklas Richardson [EMAIL PROTECTED] wrote: Just jumping on this thread. I'm guessing this has been delayed for a while? Cheers Niklas On 2/7/06, Steven Webster [EMAIL PROTECTED] wrote: Chris,The iteration::two flex unit codebase is used

Re: [flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

2006-02-21 Thread Johannes Nel
to see the error log that thing is reffering to goto window- open perspective-other-plug in developmentOn 2/21/06, JesterXL [EMAIL PROTECTED] wrote: ...damn... sorry bro, I could give you crazy ideas forever, but I'll wait for the A-Team. - Original Message - From: Teoti

Re: [flexcoders] Mute sound in a Flex application

2006-02-19 Thread Johannes Nel
i ahve not tried it, but one of my coworkers was complaning about the same thing, and this worked for him in alpha 1On 2/20/06, alariccole [EMAIL PROTECTED] wrote:Howdy all,Has anyone been successful in muting all sounds in a Flex application? Especially Flex 2?I have tried using the

Re: [flexcoders] Is EventType gone?

2006-02-17 Thread Johannes Nel
its been moved on to the Event classOn 2/17/06, codability [EMAIL PROTECTED] wrote: The latest beta of Flex 2.0 seems to no longer know EventType.CLOSE(and others). This lineaddEventListener(EventType.CLOSE, onClose);create anAccess of undefined property 'EventType'error even though import

Re: [flexcoders] Re: Deliver compiled actionscript

2006-02-17 Thread Johannes Nel
look at flasmOn 2/17/06, Roger Gonzalez [EMAIL PROTECTED] wrote: The bits are in the client's hands, and they need some way of decrypting them to run the bits, so fundamentally, no matter how many levels of encoding you add, you're just looking at obfuscation. -rg HmmmNot the answer

Re: [flexcoders] Flex2: debugging mxml

2006-02-16 Thread Johannes Nel
] On Behalf Of Johannes Nel Sent: Wednesday, February 15, 2006 9:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2: debugging mxml hi all tell me to rtfm, but i could not find any information on this. is it possible to place a breakpoint in an mxml page, and if not (now ala flex

Re: [flexcoders] Flex Application with several Forms

2006-02-16 Thread Johannes Nel
one problem with viewstacks is that if the creationpolicy is set to auto it creates all the children in it. (i take it thats why you say large full viewstacks are bad). so when building your app that has a lot of forms, make certain that you control creationPolicy from the word go so you don't

Re: [flexcoders] Dynamically creating an Accordian

2006-02-16 Thread Johannes Nel
i suspect you will find that example has moved to www.ifbin.com.On 2/16/06, augie [EMAIL PROTECTED] wrote:Hello,Does anyone have sample code they can post or send me to dynamically create an acccordion based on the data within an XML document likethis link below

Re: [flexcoders] xsd schema in flex 2.0

2006-02-16 Thread Johannes Nel
changing a few namespaces and hacking a bit in the 1.5 schema will get you a long way me thinks as flex2 vs flex 1.5 mxml ain't that differentOn 2/17/06, Matt Chotin [EMAIL PROTECTED] wrote:Nope, no validation right now.-Original Message-From: flexcoders@yahoogroups.com

Re: [flexcoders] Uncaught exceptions in Flex 2.0

2006-02-16 Thread Johannes Nel
what do you mean i we won;t see those exceptions in the release player? are all async exceptions just going to fly(aka some piece of internal player code goed catch(e:Error))? On 2/17/06, Matt Chotin [EMAIL PROTECTED] wrote: You won't see those exceptions in a release player,

Re: [flexcoders] Uncaught exceptions in Flex 2.0

2006-02-16 Thread Johannes Nel
player, only in Debug. The exception is still thrown, it just doesn't appear to the user if you didn't catch it (the behavior is the same as debug though, whatever was wrong is still wrong). From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent

Re: [flexcoders] so hard

2006-02-15 Thread Johannes Nel
i would also look for flash examples on how to do it since you can use the code in flex...On 2/15/06, Carlos Alexandre Queiroz [EMAIL PROTECTED] wrote:Hi, Anyone knows why is so hard to find examples per type of technology in Flex. For example, I'd like to call EJBs from Flex, but I didnt find

Re: [flexcoders] Flex Builder to ship with JDT? Eclipse plugins compatibility with Flex Builder 2?

2006-02-15 Thread Johannes Nel
install the plugin version (don't copy it over as its not that simple). the stand alone editor is extremely crippled (even ant is not there!)On 2/15/06, Carlos Rovira [EMAIL PROTECTED] wrote: I'm this days trying the new Flex Builder 2 and I notice two things that I would ask to this

Re: [flexcoders] Flex Builder to ship with JDT? Eclipse plugins compatibility with Flex Builder 2?

2006-02-15 Thread Johannes Nel
thats a good thing :)On 2/15/06, Carlos Rovira [EMAIL PROTECTED] wrote: Hi Johannes,Could you elaborate? What plugin version are you referring?Thanks for the support!2006/2/15, Johannes Nel [EMAIL PROTECTED] : install the plugin version (don't copy it over as its not that simple). the stand alone

[flexcoders] Flex2: debugging mxml

2006-02-15 Thread Johannes Nel
hi all tell me to rtfm, but i could not find any information on this. is it possible to place a breakpoint in an mxml page, and if not (now ala flex 1.5 since i don't know if flex 2 config has a setting to create .as files) can i put a breakpoint in the generated as file somehow? thanks j--

[flexcoders] Flex 2 builder: is there a way to turn warnings off

2006-02-15 Thread Johannes Nel
or at least say what should generate a warning (like FDT)-- j:pn -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

Re: [flexcoders] declaring constants in an interface

2006-02-13 Thread Johannes Nel
be in interfaces. Use a class with static consts instead. I'm not sure that the Java folks these days ended up feeling like constants in interfaces was so grand anyway. Matt From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent: Friday

Re: [flexcoders] A file found in an actionscript-classpath can not have more than one externally visible definition

2006-02-13 Thread Johannes Nel
your internal class must be outside the package, then it will work. a bit weird in my opinion since an internal class has not got a publicly visible accessor, but anywayOn 2/13/06, Derek Vadneau [EMAIL PROTECTED] wrote: I just installed FB2 Beta 1 and created a project based on a project

Re: [flexcoders] A file found in an actionscript-classpath can not have more than one externally visible definition

2006-02-13 Thread Johannes Nel
, Johannes Nel [EMAIL PROTECTED] wrote: your internal class must be outside the package, then it will work. a bit weird in my opinion since an internal class has not got a publicly visible accessor, but anyway On 2/13/06,Derek Vadneau [EMAIL PROTECTED] wrote: I just installed FB2 Beta 1 and created

Re: [flexcoders] flex2: styles sheets and accessing elements

2006-02-12 Thread Johannes Nel
sorry to dig up this old thread. i was wondering if calls to getStyle has the same type of overhead as it does in flex 1.5? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-10 Thread Johannes Nel
, a singleton simply refers to an object without copies or that isnot used as the prototype for any other object.zwetan On 2/10/06, Johannes Nel [EMAIL PROTECTED] wrote: abstract classes i am not expecting, private constructers i certainly hope forOn 2/9/06, Carlos Rovira [EMAIL PROTECTED] wrote

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-10 Thread Johannes Nel
is that the constructor of the class has to have the same visibility as the class itself. So public classes need public constructors, internal classes get internal constructors, etc. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent: Thursday

Re: [flexcoders] Type annotation is not a compile-time constant

2006-02-10 Thread Johannes Nel
show all your code. that error is thrown when a type you are using is not imported (at least thats when i have seen it)On 2/10/06, sam5654295 [EMAIL PROTECTED] wrote:I am working in Flex Builder 2, trying to work through some tutorials that are in AC 2.I can't seem to find the problem with

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-10 Thread Johannes Nel
style stuff. Cheer up guys! This is exciting stuff. :) Also some people would argue that singleton is a 'dead' pattern. :)AS3 is not a prototype language - yes it is.cheers-michael On 2/10/06, Johannes Nel [EMAIL PROTECTED] wrote: so even if i create a private class that is only accecible

[flexcoders] declaring constants in an interface

2006-02-10 Thread Johannes Nel
i am trying to declare a constant in an interfacepackage com.company.airdale.model { import flash.events.IEventDispatcher; public interface IStream extends IEventDispatcher{ const UPDATED:String =streamUpdated; function getTotalAt(index:int):Number; function get streamLength():int;

Re: [flexcoders] declaring constants in an interface

2006-02-10 Thread Johannes Nel
no access identifiers in interfaces give an error and then its the const that is the main errorOn 2/10/06, Manish Jethani [EMAIL PROTECTED] wrote:On 2/10/06, Johannes Nel [EMAIL PROTECTED] wrote: public interface IStreamextends IEventDispatcher{ const UPDATED:String =streamUpdated;[snip

Re: [flexcoders] Recommended testing tool ? /Flex1.5

2006-02-09 Thread Johannes Nel
i saw something which macromedia/adobe consulting has called the event tester which allows you to write junit tests for a flex app and then triger certain application states by setting properties, calling methods and dispatching events. it ain't no winrunner or QTP but it seems to do the job.

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread Johannes Nel
abstract classes i am not expecting, private constructers i certainly hope forOn 2/9/06, Carlos Rovira [EMAIL PROTECTED] wrote: Hi,I was trying to migrate some classes from AS2 to AS3 and notice that can't mark the class constructor as private. Is that correct or there's a workaround? if not

Re: [flexcoders] flex string to interger

2006-02-03 Thread Johannes Nel
parseInt parseFloatOn 2/3/06, wci.geo [EMAIL PROTECTED] wrote: hiis there a function in flex that conver string to integer?like toInteger() in java.thanksWilly--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:

Re: [flexcoders] Flex charting components dont work

2006-02-03 Thread Johannes Nel
when my charts did not work (i first installed the standalone editor, then switched to the plugin bla bla) all i did was drag the swc into my project references and then that sorted it self out post an eclipse restart On 2/3/06, Matt Chotin [EMAIL PROTECTED] wrote: For the samples you need to

[flexcoders] Re: compile times using mxmlc

2006-01-25 Thread Johannes Nel
bump. anyone?On 1/24/06, Johannes Nel [EMAIL PROTECTED] wrote: hi All I use the mxmlc compiler and the compile times are relatively slow. now if i was hitting an app server the coompile times are quite fast, and i assume how this is done is that there is some jar wrapper for the mxmlc which

[flexcoders] commandline debugger for flex

2006-01-24 Thread Johannes Nel
hi All since I don't use flex builder I would like to know if there are any how-to's on using the command line debugger for flex? thanks-- j:pn -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: commandline debugger for flex

2006-01-24 Thread Johannes Nel
for a start Current page: http://livedocs.macromedia.com/flex/15/flex_docs_en/0811.htm but how do i add breakpoints in my code?On 1/24/06, Johannes Nel [EMAIL PROTECTED] wrote: hi All since I don't use flex builder I would like to know if there are any how-to's on using the command line

[flexcoders] Re: commandline debugger for flex

2006-01-24 Thread Johannes Nel
note to self type 'help'. i will end this endless tirade of stupid questions now On 1/24/06, Johannes Nel [EMAIL PROTECTED] wrote: for a start Current page: http://livedocs.macromedia.com/flex/15/flex_docs_en/0811.htm but how do i add breakpoints in my code?On 1/24/06, Johannes Nel

[flexcoders] compile times using mxmlc

2006-01-24 Thread Johannes Nel
hi All I use the mxmlc compiler and the compile times are relatively slow. now if i was hitting an app server the coompile times are quite fast, and i assume how this is done is that there is some jar wrapper for the mxmlc which manages class caching (this is just a guess so feel free to

Re: [flexcoders] Re: Flex 1.5 how to get Menu height and width

2006-01-23 Thread Johannes Nel
use do later and cgheck the variable on each frame and release it when its value is 0 instead of a count, since this could varyOn 1/23/06, bhaq1972 [EMAIL PROTECTED] wrote: as i posted this, i then tried another test (Matt your suggestion oftrying 2-3 frames later) and this time it worked. not

Re: [flexcoders] Get IP address from client

2006-01-19 Thread Johannes Nel
use your app/webserver to get itOn 1/19/06, Robson Thanael Poffo [EMAIL PROTECTED] wrote: Hi.. I need to get the ip address of the client via flex. How I do it? Bye. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] AS3/Flex2 - Effects and Cancelling them

2006-01-19 Thread Johannes Nel
you could always extend that effect class and implement your own stop methodOn 1/19/06, Trey Long [EMAIL PROTECTED] wrote:I am using the Move effect to create a really nice tween in my Flex app. I want to stop the effect during certain user input and there is anendEffect() method that will

[flexcoders] modelChanged event and mx:Tree

2006-01-18 Thread Johannes Nel
Hi All I have a model which dispatches the model change event which in turn gets caught by the mx:Tree (i have established this by subclassing the tree and checking if the events come in), but my tree just does not update and to add insult to injury after that it stops dispatching nodeOpen

Re: [flexcoders] Re: addChild from String

2006-01-18 Thread Johannes Nel
search the flash coders list for this, there are a ton of sollutions floating around in there. On 1/18/06, Brendan Meutzner [EMAIL PROTECTED] wrote:Hey Jens,Thanks for the help.It's now working (sort of)... If I create an instance of a built-in class (such as Button), themethod below works

Re: [flexcoders] Re: Slow Compile Times

2006-01-07 Thread Johannes Nel
the compiler does type checking so its what you expect. but i would never advise anybody to do this.On 1/7/06, Renaun Erickson [EMAIL PROTECTED] wrote:Thats interesting,--- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: The less strict-typing you used in Flash MX 2004, the

Re: [flexcoders] Repeater Order

2006-01-03 Thread Johannes Nel
if that functionality does not exist you can wrap the array in an object and expose its getItemAt invertedly but i suspect something like that would be built into the functionality as is so just check the documentation cheers On 1/3/06, Nick [EMAIL PROTECTED] wrote: I am in the process of

Re: [flexcoders] open sourced Flex app

2006-01-03 Thread Johannes Nel
my current experimentation with flex2 relies on openamf java postgreSQL. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the

Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-02 Thread Johannes Nel
you have to remember that there are two types of stylesheets in the flex. those that compile in and those which load at runtime. i suspect rob is refereing to a stylesheet loaded with the mx:style tag (which compiles in) vs one which loads in at runtime. embeded fonts in a compiled stylesheet

Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-02 Thread Johannes Nel
@font-face { src: url(assets/fonts/arial.ttf); fontFamily:futura; unicode-range: glyphs; } the same embed tags should work with an AS3 project On 1/1/06, Michael Klishin [EMAIL PROTECTED] wrote: Rob Rusher wrote: Did you try adding it in your style sheet like this: @font-face {

Re: [flexcoders] Pagination in Flex ?

2006-01-02 Thread Johannes Nel
create an object which functions as your dataprovider. populate that object with what you want displayed, and change the items in that dataprovider as is needed (when paging for example) On 1/2/06, sandip_patil01 [EMAIL PROTECTED] wrote: Hi All, Here is my scenorio, I have button when I

Re: [flexcoders] Re: Having hard time understanding what features are available to whom when and

2006-01-02 Thread Johannes Nel
open amf is just a jar with a couple of other dependencies which you drop into your lib folder. you update your web.xml (some servlet mapping) and create the openAMF config file and you should be good to go. its well documented on their website. as a side note, i would advise using the advanced

Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-02 Thread Johannes Nel
- From: Johannes Nel [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, January 02, 2006 5:39 AM Subject: Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha you have to remember that there are two types of stylesheets in the flex. those that compile

Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha

2006-01-02 Thread Johannes Nel
because you are correctly repressing the horrors of it. - Original Message - From: Johannes Nel [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, January 02, 2006 11:01 AM Subject: Re: [flexcoders] Embed font's glyphs in AS3 Project in Flex Builder 2 alpha yeah. the werid

Re: [flexcoders] 1st flex 2 project, startup problems

2005-12-16 Thread Johannes Nel
first off, the event model has changed so you subscribe to an enterframe event root.addEventListener(enterFrame,frameListener); private function frameListener(evt:Event):Void { if(mouseX 0 || mouseX this.width || mouseY 0 || mouseY this.height) {

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2005-12-16 Thread Johannes Nel
AFAIK it will run in the AVM+ but will use the old AMF encoding vs the new (optimal) formatOn 12/16/05, hank williams [EMAIL PROTECTED] wrote:Jesse,What your are saying sounds great. But it sounds different than what philip is saying.It sounds like you are saying that my current code will work

Re: [flexcoders] Flex Builder - Plugin Version Problem

2005-12-07 Thread Johannes Nel
i gave up on that, and use a eclipse for java and flex 1.5 and use the standalone zorn editor for flex 2 stuffOn 12/7/05, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote: Thanks DK, I did find this statement. Flex Builder 2 in the plug-in configuration is not compatible with the Web

Re: [flexcoders] OT: Xpath and HTML problem

2005-12-06 Thread Johannes Nel
how r loading this html?On 12/6/05, Merrill, Jason [EMAIL PROTECTED] wrote: Hope nobody minds the OT, the chattyfig servers are down AGAIN, and I don't know where else to turn – been searching Google for some time now. I am using xfactorstudios' Xpath classes to bring in XML node

Re: [flexcoders] OT: Xpath and HTML problem

2005-12-06 Thread Johannes Nel
example, and loading into Flash using Xpath. Jason Merrill | E-Learning Solutions | icfconsulting.com From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent: Tuesday, December 06, 2005 3:21 PM To: flexcoders@yahoogroups.com Subject: Re

Re: [flexcoders] https calls to RemoteObjects

2005-12-06 Thread Johannes Nel
this sounds like a crossdomain issue.On 12/6/05, Mehdi, Agha [EMAIL PROTECTED] wrote: Hi all, What extra steps do I need to take to call RemoteObjects on Secure Server? My calls fail when accessing objects on https. Thanks Agha Mehdi IDT - eBusiness Program Manager Work:

Re: [flexcoders] OT: Xpath and HTML problem

2005-12-06 Thread Johannes Nel
you say "normal" – I assume you mean the Flash native XML class? I would really like to use Xpath if at all possible. Jason Merrill | E-Learning Solutions | icfconsulting.com From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jo

[flexcoders] Re: flex 2 repeater and custom properties weirdness

2005-11-29 Thread Johannes Nel
bumpOn 11/25/05, Johannes Nel [EMAIL PROTECTED] wrote: hi all this must be a simple mistake on my side. but maybe someone else can recreate this :s anyway when i bind a repeater like this mx:Repeater id=__displayList mnu:MenuItem model={__displayList.currentItem}/ /mx:Repeater i

Re: [flexcoders] Flex and RTL Direction

2005-11-27 Thread Johannes Nel
send me a link to it please.On 11/27/05, R*. S*.J* [EMAIL PROTECTED] wrote: I have MXP file and want to use it in Flex Project. how i can do? Yahoo! Music Unlimited - Access over 1 million songs. Try it free. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] flex 2: showing hand cursor over label field

2005-11-27 Thread Johannes Nel
nice guess, but no.On 11/27/05, JesterXL [EMAIL PROTECTED] wrote: Try giving the Label a mouseDown event that doesn't do anything. - Original Message - From: Johannes Nel To: flexcoders@yahoogroups.com Sent: Sunday, November 27, 2005 10:43 PM Subject: [flexcoders] flex 2

Re: [flexcoders] Re: flex 2: showing hand cursor over label field

2005-11-27 Thread Johannes Nel
. - Original Message - From: Johannes Nel To: flexcoders@yahoogroups.com Sent: Sunday, November 27, 2005 10:43 PM Subject: [flexcoders] flex 2: showing hand cursor over label field hi all i have a VBox which contains a label and when the user rolls over this vbox i want to show the hand cursor

Re: [flexcoders] Flex and RTL Direction

2005-11-26 Thread Johannes Nel
RTL is not supported by the flash player. that said search the flashcoders list, some people have written libraries for this kind of thingOn 11/26/05, R*. S*.J* [EMAIL PROTECTED] wrote: Dear Flex Coders, I can not set direction for my text to RTL on Flex app. can you guide me? Tnx

Re: [flexcoders] Flex and RTL Direction

2005-11-26 Thread Johannes Nel
what is the component? just as classes or a mxp? send a linkOn 11/26/05, R*. S*.J* [EMAIL PROTECTED] wrote: Hi, I found a flash componet to support RTL Direction on flash, how i can use it on flex? Tnx. Yahoo! Personals Single? There's someone we'd like you to meet. Lot's of someone's,

Re: [flexcoders] flex2: styles sheets and accessing elements

2005-11-24 Thread Johannes Nel
declaration i am using MenuItem{ left-margin:5; right-margin:5; top-margin:5; botton-margin:5; background-color:#CEEBF9; rollover-color:#8EB0E8; } Thanks j On 11/21/05, Manish Jethani [EMAIL PROTECTED] wrote: On 11/22/05, Johannes Nel [EMAIL PROTECTED] wrote:in flex 1.5 when i compile in a sylesheet

Re: [flexcoders] flex2: styles sheets and accessing elements

2005-11-24 Thread Johannes Nel
it works in all mxml i have tried, just not able to do it in AS, so i must be doing something quite daft.On 11/24/05, Johannes Nel [EMAIL PROTECTED] wrote:hi Manish this works in my index mxml page in the root of my project (i have not tried it for a deeper nested mxml page yet) but setting

Re: [flexcoders] flex2: styles sheets and accessing elements

2005-11-24 Thread Johannes Nel
this is just to weird... when i have a style named MainAnything thus the word main with anything attached to it the style does not work, however when i rename that exact style to something else it works the style MainApplication{ left-margin:50; right-margin:50; top-margin:50;

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Johannes Nel
i create an array called originator into which i pop the tragets as i bubble upwards, thus going evtObj.originator[0] always refers to the source of the eventOn 11/23/05, JesterXL [EMAIL PROTECTED] wrote: I usually do:dispatchEvent({type: someEvent, target: this});Where this points to the

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Johannes Nel
this is the function i have in a bubble event mixin which could maybe help public function bubbleEvent(evtObj:Object):Void { if(evtObj.originator ==undefined) { evtObj.originator = new Array(); } evtObj.originator.push(evtObj.target); evtObj.target = this;

Re: [flexcoders] Flex 2: events in interfaces

2005-11-20 Thread Johannes Nel
doesn't throw a compiler error at the momentOn 11/20/05, Manish Jethani [EMAIL PROTECTED] wrote: On 11/20/05, Johannes Nel [EMAIL PROTECTED] wrote:another question, if i go[Event (eventName)]would i be able to replace that string with a public static const?AFAIK, nope.Manish

[flexcoders] Flex 2: events in interfaces

2005-11-19 Thread Johannes Nel
hi all while implementing a collection class i was going through the interfaces and stumbled upon ICollectionView for which the documentation says: Event Summary collectionChanged Indicates that the ICollectionView has been updated in some way. how do you declare what event should

Re: [flexcoders] How do you convert a .pdf file to an .swf file

2005-11-18 Thread Johannes Nel
soemthing else i can assure youOn 11/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Do you just save the .pdf file as a .swf file or do you do something else? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] form state

2005-11-17 Thread Johannes Nel
bind it to a blank modelOn 11/17/05, Niklas Richardson [EMAIL PROTECTED] wrote: You need to write a specific function to blank out all the controls.If the controls are bound to a model you could blank the model too.On 17/11/05, yagogak [EMAIL PROTECTED] wrote: i need to find a way for emptying

Re: [flexcoders] Flex 2 and Flex 1.5 in the same machine

2005-11-17 Thread Johannes Nel
i run both on the same machine without a problem. all i do is setup two different eclipses (which is actually not even necesary) and then an ant task to point to the right compiler, and badaboom no problems with the swf (I can also advise you to use the flash player plugin switcher when viewing

Re: [flexcoders] Re: Flex 2 and Flex 1.5 in the same machine

2005-11-17 Thread Johannes Nel
!--- In flexcoders@yahoogroups.com , Johannes Nel [EMAIL PROTECTED]wrote: i run both on the same machine without a problem. all i do issetup two different eclipses (which is actually not even necesary) and then an ant task to point to the right compiler, and badaboom no problems withthe swf (I can also

Re: [flexcoders] Re: BiDi/right-to-left support in Flex

2005-05-17 Thread Johannes Nel
this has been requested in every version of the flash player recently and i am not expecting it in the next release either :( On 5/17/05, jruud68 [EMAIL PROTECTED] wrote: Gordon, we are developing a prototype of an application that would run on a number of different languages, including RTL

<    1   2   3   4