Re: [Flashcoders] Dynamic variables in as3

2005-11-24 Thread Johannes Nel
push it into an array. myArr.push(new MovieClip()); On 11/24/05, Phil Douglas <[EMAIL PROTECTED]> wrote: > > Does anybody know of a way to create and reference dynamic variables in > as3. Specifically movie clips, but if there's a difference between them > and any other type of variables, that'd

Re: [Flashcoders] Syntax HELP: Passing Variable to GetURL

2005-11-25 Thread Johannes Nel
getURL("http://www.domain.com/"; + someVariable ,"_self"); On 11/25/06, Dominic Fee <[EMAIL PROTECTED]> wrote: > > Hi there guys I'm having trouble with a simple variable issue, due to lack > of syntax knowledge, on my behalf > > > > I have a variable which does

Re: [Flashcoders] Syntax HELP: Passing Variable to GetURL

2005-11-25 Thread Johannes Nel
t;+Dom, "_self"); > > A > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Johannes > Nel > Sent: 25 November 2005 16:42 > To: Flashcoders mailing list > Subject: Re: [Flashcoders] Syntax HELP: Passing Variable to G

Re: [Flashcoders] Last iteration problem

2005-11-26 Thread Johannes Nel
for (var n:Number = 0; n<4; n++) { riferimento.createEmptyMovieCl > > ip("svolta_"+n,1000+n); > riferimento["svolta_"+n]._x = posizione["x_"+n]; > riferimento["svolta_"+n]._y = posizione["y_"+n]; > riferimento["svolta_"+n].moveTo(0, 0);

Re: [Flashcoders] ::::::::::::: How to trace a movie ::::::::::::::: ? ? ?

2005-11-28 Thread Johannes Nel
anyway thanks for afterthought, which i still use. On 11/28/05, g.wygonik <[EMAIL PROTECTED]> wrote: > > sadly, the word "trace" in the title is misleading. reading the > question it appears as though the poster wants a thumbnail of a > dynamic MovieClip to update as the main MovieClip updates. >

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Johannes Nel
try dropping the last slash in ur xpath statement On 12/7/05, Merrill, Jason <[EMAIL PROTECTED]> wrote: > > >>Why is it a workaround? Doesn't the XPath return the XMLNode? > >>I haven't used this XPath-extension, but maybe I should check i out. > > Morten, I'm not sure it returns the actual node -

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Johannes Nel
sorry no, u r doing a query which returns an array, try slectSingleNode, and that will work On 12/7/05, Johannes Nel <[EMAIL PROTECTED]> wrote: > > try dropping the last slash in ur xpath statement > > On 12/7/05, Merrill, Jason <[EMAIL PROTECTED] > wrote: > >

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Johannes Nel
use the selectSingleNode method or use the array accessor On 12/7/05, Mike Boutin <[EMAIL PROTECTED]> wrote: > > even in this case the result is undefined > > string = XPath.selectNodes(my_xml, "/pathto[1]/xml").nodeValue; >>j:pn > >> > >> > >> > > > > > > > >-- > >j:pn > >___

Re: [Flashcoders] Problem with xml loading a second time

2005-12-07 Thread Johannes Nel
u are recreating the xml object thus destroying the reference to the onLoad function. try just doing another load call without all the other stuff On 12/7/05, Paul Steven <[EMAIL PROTECTED]> wrote: > > Anyone have any idea about this one? I am still struggling to solve the > problem:( > > -Ori

Re: [Flashcoders] interfaceof

2005-12-09 Thread Johannes Nel
instanceof will work at runtime On 12/9/05, Scott Hyndman <[EMAIL PROTECTED]> wrote: > > I know you can do this. > > var implementsInterface:Boolean = ISomeInterface(objectToTest) != null; > > You may also be able to use instanceof, but I haven't tried. > > Scott > > -Original Message- > F

Re: [Flashcoders] debug tool?

2005-12-12 Thread Johannes Nel
goto osflash.org, there are several debugging sollutions there using local connection or just moitoring the flash log file. i still use afterthought (got it from artificialcolors.com) On 12/12/05, Mike Boutin <[EMAIL PROTECTED]> wrote: > > I am creating a project in flash/php/xml output, It is a

Re: [Flashcoders] debug tool?

2005-12-12 Thread Johannes Nel
for monotoring http calls i use tcptrace or traceplus depending wether i am at work or not. one is free the other is not... On 12/12/05, Mike Boutin <[EMAIL PROTECTED]> wrote: > > I just want to be able to see the incoming/outgoing data, as well as just > send random traces to it when developing.

Re: [Flashcoders] [offtopic] XMas spam

2005-12-28 Thread Johannes Nel
spam on my gmail account went from aprox 5/day to about 30/day in the last week On 12/28/05, JesterXL <[EMAIL PROTECTED]> wrote: > Yeah man, same here, although not as many. Open proxy servers = fair game > during the holidays. > > - Original Message - > From: "Weyert de Boer" <[EMAIL PRO

Re: [Flashcoders] (no subject)

2006-01-03 Thread Johannes Nel
ctrl-h On 1/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Does anybody of you guys know if a replace like this is possible in > eclipse : > > > > I have a number of files all with names like "assessmentitem_15845.xml". > In each of these files, I have to replace a number (always 14772) with

Re: [Flashcoders] a Flash coding question

2006-01-03 Thread Johannes Nel
set it to html text as well On 1/3/06, Tom Sakell <[EMAIL PROTECTED]> wrote: > Hello all: I've a pesky Flash question, and since it's a new Year, > I'm going to move beyond lurker on this list. So. > > On my site, I use Flash "news" boxes: Scrolling text boxes that are > populated by a TXT file ou

Re: [Flashcoders] recommended books on XML in Flash

2006-01-03 Thread Johannes Nel
xml capability in flash is so limited that its not worth buying a book on the subject IMO. rather spend your time tracking down a few tuts and learn from those. lastly buy the moock book for the reference. On 1/3/06, Merrill, Jason <[EMAIL PROTECTED]> wrote: > Whatever you do, don't buy "Flash and

Re: [Flashcoders] Flash equivalent of a Java class loader

2006-01-04 Thread Johannes Nel
no it needs to be a ref to the constructer function. this can be solved however with this: Object.RegisterClass("myClipSymbolName", _global["com"]["blackhammer"]["test"]["TestClass"]); On 1/4/06, August Gresens <[EMAIL PROTECTED]> wrote: > > Hello > > We're new to flash, migrating over from Direc

[Flashcoders] speed degradation in openAMF serialisation

2006-01-04 Thread Johannes Nel
Hi All has anyone noticed a significant speed degradation in openAMF serialization with large datasets. I compare two movies i have, one connection to a function using openAMf another through SOAP, same function. initially AMF is much faster, but as I increase my dataset, the AMF slows down to abo

Re: [Flashcoders] Flash Ant build for Flash IDE?

2006-01-05 Thread Johannes Nel
just execute a jsfl file from the ant script and in the jsfl file publish the movie On 1/5/06, Ben Smeets <[EMAIL PROTECTED]> wrote: > > Hi all, > > Been trying to get a build.xml rolling with the flash 8 IDE in > combination with coding in eclipse. Did anybody have succes with the > setup "codin

[Flashcoders] what happens to exceptions i throw in async functions.

2006-01-05 Thread Johannes Nel
Hi All some code to look at first function meth2() { var x:XML = new XML(); try{ x.onLoad = function(success)//Delegate.create(this,handleXmlLoad); { throw new CustomError(); } x.load("somefile.xml"); }

Re: [Flashcoders] what happens to exceptions i throw in async functions.

2006-01-05 Thread Johannes Nel
well currently i am handeling my errors by dispatching them (take the same error object add a type property). this seems terribly inelegeant, since I use throw all over the place except in one of the places i need it most. since that exception is being traced out i would however imagine that it doe

Re: [Flashcoders] what happens to exceptions i throw in async functions.

2006-01-05 Thread Johannes Nel
no mate you are missing what i am trying to acheive. On 1/5/06, bryan.rice <[EMAIL PROTECTED]> wrote: > > > On Jan 5, 2006, at 4:26 PM, Johannes Nel wrote: > > > has anybody have any idea of how to handle asynchranous exception > > handeling > > in flash? &g

Re: [Flashcoders] what happens to exceptions i throw in asyncfunctions.

2006-01-05 Thread Johannes Nel
same problem. all async functions are part of a different stack so all my exception handeling code go out of the window. On 1/5/06, JesterXL <[EMAIL PROTECTED]> wrote: > > Late to the thread. Could you perhaps check if the onData actually > contains > any data, and if so, throw an exception if sh

Re: [Flashcoders] Flash Ant build for Flash IDE?

2006-01-06 Thread Johannes Nel
Tx. > > Ben > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Johannes > Nel > Sent: donderdag 5 januari 2006 21:32 > To: Flashcoders mailing list > Subject: Re: [Flashcoders] Flash Ant build for Flash IDE? > >

Re: [Flashcoders] what happens to exceptions i throw inasyncfunctions.

2006-01-06 Thread Johannes Nel
he Java guys who try Flex and wonder why it doesn't > block. > > Sorry bro, async is like Bryan said, oil and water. > > - Original Message - > From: "Johannes Nel" <[EMAIL PROTECTED]> > To: "Flashcoders mailing list" > Sent: Thursday,

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Johannes Nel
>> Besides, I'm not fooling with any 3rd party workarounds, not with E4X on the way. this has been around for ages...add to this that e4x is currently in alpha and slow, and the fact that xpath is a w3c spec and even macromedia implement a much thinner version of this in F7 then this statement s

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Johannes Nel
xpath has been around for a while On 1/6/06, ryanm <[EMAIL PROTECTED]> wrote: > > > this has been around for ages...add to this that e4x is currently in > alpha > > and slow, and the fact that xpath is a w3c spec and even macromedia > > implement a much thinner version of this in F7 then this

Re: [Flashcoders] Massive XML files and Flash

2006-01-07 Thread Johannes Nel
XPath != *native* E4X i realise this, correct xml parsing is still faster while xpath is a comfort library to use when speed is not essential. xfactorstudio is the best and most complient xpath. have not used MM xpath since 7.0, but its api is extremely limited the best sollution thus far without/

Re: [Flashcoders] TreeDataProvider - "There is no method with thename 'addTreeNode'"

2006-01-11 Thread Johannes Nel
cast it. On 1/11/06, Andreas Weber <[EMAIL PROTECTED]> wrote: > > Thanks Devendran - > This should do it and usually does do it... > > However in the context of my project I got the 'no method with the name > 'addTreeNode' error, no matter in how many even remotely related classes > I put the impo

Re: [Flashcoders] TreeDataProvider - "There is no method with thename'addTreeNode'"

2006-01-11 Thread Johannes Nel
? > > Could you elaborate a bit? Thanks! > > -- > Andreas Weber > motiondraw.com > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Johannes > Nel > Sent: Mittwoch, 11. Januar 2006 21:57 > T

Re: [Flashcoders] TreeDataProvider - "There is no method with the name'addTreeNode'"

2006-01-12 Thread Johannes Nel
mx.controls.treeclasses.TreeDataProvider you need to get a good editor :) On 1/11/06, Derek Lords <[EMAIL PROTECTED]> wrote: > > "missing intrinsic class issue" good guess.This happened to me upon > upgrading to Flash 8. I had to downgrade each instance to an Object and > the > problem went

Re: [Flashcoders] TreeDataProvider - "There is no method with thename'addTreeNode'" - SOLVED

2006-01-12 Thread Johannes Nel
yeah its a sollution, but a baaad habit to get into. On 1/11/06, Andreas Weber <[EMAIL PROTECTED]> wrote: > > Thanks Derek - that's it! > > Not typing the dataprovider as XML allows to publish for Player 7: > > import mx.controls.Tree; > > class Test{ > function Test(){ > /

Re: [Flashcoders] TreeDataProvider - "There is no method with thename'addTreeNode'"

2006-01-12 Thread Johannes Nel
= new XML(); > myTreeDP.addTreeNode("node", 0); > trace('untyped '+myTreeDP); > } > } > > Output: > cast to TreeDataProvider null > untyped > > > > Cheers! > > -- &g

Re: [Flashcoders] Using a Function as Variable[code]

2006-01-12 Thread Johannes Nel
either container_mc.messageText.text = messageDisplay(); or public function get displayGreeting():String { if (now == "afternoon") { message = "Disco Rules"; } else { message = "Samba Rules"; } } On

Re: [Flashcoders] Using a Function as Variable[code]

2006-01-12 Thread Johannes Nel
forgot the return statement in there nction get displayGreeting():String { >if (now == "afternoon") { >return message = "Disco Rules"; >} else { > return message = "Samba Rules"; >} On 1/12/06, Andy Johnst

Re: [Flashcoders] Using a Function as Variable[code]

2006-01-12 Thread Johannes Nel
rutbum. s if (now == "afternoon") { >return "Disco Rules"; >} else { > return "Samba Rules"; > } On 1/12/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > forgot the r

Re: [Flashcoders] JSFL help

2006-01-16 Thread Johannes Nel
>>I need to create some templated swf's and would like the text fields in the swf to be populated either by a human being whois not a flash developer (e.g. enter data into a panel and it puts the data into the correct text field variables). Or to have swf's generated from a text file, say coma sep

Re: [Flashcoders] OT: Saving as MX2004 from v.8

2006-01-18 Thread Johannes Nel
no its not possible. once you do a save as an then do a save as again you can just press enter, enter (pain in the rear) -- j:pn ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] modelChanged Tree component

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 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 events in

Re: [Flashcoders] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Johannes Nel
a good start for mxi creation http://www.muzakdeezign.com/mxi_creator/index.asp On 1/18/06, Manuel Saint-Victor <[EMAIL PROTECTED]> wrote: > > Good afternoon Flashcoders. > I'm looking for an online resource to guide me through the creation of an > extension that would install some files in the Wi

Re: [Flashcoders] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Johannes Nel
ng perhaps scripts that > would > create a custom folder in the templates panel with some fla files? I was > researching the lecture that Guy Watson wrote about using the JSFL file > API > to see if that might provide my best solution for that. > > Mani > > > > On

Re: [Flashcoders] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Johannes Nel
oh thats the one you are talking about, got confused since guy also had another unsuported fileAPi in the past On 1/18/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > no use flFile its part of the 7.2 update > > On 1/18/06, Manuel Saint-Victor <[EMAIL PROTECTED]> wrote: &g

Re: [Flashcoders] Documenting my code

2006-01-19 Thread Johannes Nel
i would much rather them work on releasing a good product than building stuff like editors(zorn is nice however) and documentation applications when there are a aready numerous things out there. On 1/19/06, Judah Frangipane <[EMAIL PROTECTED]> wrote: > > Let's all get on MM-Adobe wish list and ask

Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
a word of caution. google can ban you for using ripple. On 1/19/06, elibol <[EMAIL PROTECTED]> wrote: > > Nevermind... > > http://osflash.org/ripple/overview > > H > > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > EGO7's Flash CMS, CMSmx, allows for deep linking and search engi

Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
don't know about anything except ripple. On 1/19/06, elibol <[EMAIL PROTECTED]> wrote: > > Also, would you say that the EGO7 solution takes this risk as well? > > H > > On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > > > a word of caution. go

Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
x27;t affect search engine spiders On 1/19/06, elibol <[EMAIL PROTECTED]> wrote: > > Is there any way to index Flash content without that risk? > > On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > > > a word of caution. google can ban you for using r

Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
t; Cheers, > Ian > > On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > > > a word of caution. google can ban you for using ripple. > > > > > ___ > Flashcoders mailing list > Flashcoders@cha

Re: [Flashcoders] Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
>>I would assume that the indexing method follows patterns that are similiar to domains that abuse SEO, and so, like a virus scanner would, the domain is flagged the same as an abusing domain is flagged. I think this distinction is important, as to not assume that google is exclusively targeting th

Re: [Flashcoders] Problems with Flash Plugin Switcher 2.1.0

2006-01-22 Thread Johannes Nel
not an insatller just an executable and it works like a charm. On 1/22/06, Adrian Lynch <[EMAIL PROTECTED]> wrote: > > I'm just about to install Flash Plugin Switcher 2.1.0 and wondered if this > has caused any problems for anyone. > > I'm coming to the end of a project and I don't fancy trying to

Re: [Flashcoders] Considering player performance, Strings or Arrays?

2006-01-23 Thread Johannes Nel
remember concating a string is a very expensive procedure in java in general (unless you use a buffer), and also working with strings in general are just much slower than other data types. On 1/23/06, elibol <[EMAIL PROTECTED]> wrote: > > Hi there, > > The application must store many numbers, the

Re: [Flashcoders] Free Flex???

2006-01-31 Thread Johannes Nel
eclipse and the zorn plugin will obviously not be there. a tried and tested model IMO. On 1/31/06, hank williams <[EMAIL PROTECTED]> wrote: > > There is an article on news.com that says the following. > > "Adobe is introducing a free, basic software developers kit which > includes the Flex Framewo

Re: [Flashcoders] Player Version Penetration -- Comparison Stats

2006-02-01 Thread Johannes Nel
auto update built in prompting the user to upgrade On 2/1/06, hank williams <[EMAIL PROTECTED]> wrote: > > Does anyone know exactly what differences there are between 7 and 8 > that might make 8.5 adoption faster than 8 adoption? My recollection > is that there is some improvement in 8 in this reg

Re: [Flashcoders] OT Where's Nigel Pegg?

2006-02-02 Thread Johannes Nel
someone told me he was working on the breeze team On 2/2/06, Gerry Creighton <[EMAIL PROTECTED]> wrote: > > Has anyone seen or heard from Nigel Pegg? His last blog entry was in > May of 2004. > I was admiring his awesome Comment App and found some links to source > files for this > but the links a

Re: [Flashcoders] Unit Tesing Framework Recommendations

2006-02-07 Thread Johannes Nel
asunit.org works with flex and flash. they also already have an as3 version out. for flash especially its a very mature tool. itteration2 (now adobe consulting) also build something called flex unit which a lot of people use. i am certain thats very usable with flash as well, may require a bit of r

Re: [Flashcoders] Stage.width not working in IE

2006-02-12 Thread Johannes Nel
even in a single frame movie onEnterframe is called repeatedly, thus allowing you to do as lanny suggests. look for a function called doLater On 2/12/06, John Giotta <[EMAIL PROTECTED]> wrote: > > Perhaps Lanny's suggestion will work, but may not work with a single frame > SWF. > The problem resid

Re: [Flashcoders] Flex Pricing

2006-02-12 Thread Johannes Nel
>>, isn't flex just a cumbersome way to generate interactive flash? no. its a whole framework with better written components, databinding and autolayout. we don't use the enterprise servers in my current contract (nothing goes onto the servers without a code review...) and flex is still much bette

Re: [Flashcoders] Flex Pricing

2006-02-12 Thread Johannes Nel
just download flex 2's bree beta and get playing! its very similiar to flex 1.5 in general (more strict as is to be expected) but you would be kiling two birds with one stone. if you are adament to use flex 1.5 check this out http://www.darronschall.com/weblog/archives/000182.cfm download the tria

Re: [Flashcoders] > Using Cairngorm, good idea?

2006-02-13 Thread Johannes Nel
i would use ARP when building flash apps. On 2/13/06, Weyert de Boer <[EMAIL PROTECTED]> wrote: > > I am in the need of building a flash website is mainly "standard" flash > microsite with 6 sections which include a simple news section, and a > portfolio section. The website will be used to expres

Re: [Flashcoders] no method with name 'createClassObject'.

2006-02-13 Thread Johannes Nel
its a method of uicomponent On 2/13/06, Peter Burke <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm trying to create a button on-the-fly within a class declaration, but > am > running into this error: > > "There is no method with the name 'createClassObject'." > > -- > >

Re: [Flashcoders] No variables in Interfaces?

2006-02-13 Thread Johannes Nel
getters and setters are allowed in AS3! On 2/13/06, David Rorex <[EMAIL PROTECTED]> wrote: > > Hadn't thought of that, I guess that would work. > > Thanks > > On 2/13/06, Ian Thomas <[EMAIL PROTECTED]> wrote: > > > > No, there isn't. > > > > Is there a reason why you can't roll your own accessor f

Re: [Flashcoders] Guy's FileSystem Dll

2006-02-14 Thread Johannes Nel
the way to insatll dll's on nt manually is to use regsvr32 from command line and point to the path where the dll is. if you want to unintsall it use "regsvr32 u path" if the dll can not be registered due to dependencies that are missing that will give you a fair idea. On 2/14/06, John Grden <[EMAI

Re: [Flashcoders] Guy's FileSystem Dll

2006-02-14 Thread Johannes Nel
egsvr32 since Flash doesn't > require it? Or maybe the extenstion manager runs it for you - do you > happen > to know? > > I'll give er' a shot anyway to find out > > Thanks Johannes > > On 2/14/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > >

Re: [Flashcoders] Guy's FileSystem Dll

2006-02-14 Thread Johannes Nel
can not be registered" > > On 2/14/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > > > i assume the mxp runs it, but you might have a dependency issue that > > regsvr32 will bring to the light. maybe its one of 'em dll's that don't >

Re: [Flashcoders] Flash 8.5 for Linux

2006-02-15 Thread Johannes Nel
it doesn't. there are a whole bunch of other headers included in the message you are replying to and some email readers that thread conversations use these to sort things by. On 2/15/06, Gerry Creighton <[EMAIL PROTECTED]> wrote: > > If I hit reply then delete the subject and retype the subject li

Re: [Flashcoders] Making the text centered vertically in a combo box

2006-02-15 Thread Johannes Nel
the reason it does not work on the stage is because when you are setting it theat component is most prob not created. remember that v2 components take a frame (in some cases 2 frames ) to be created (love this about flex, you have a creationComplete event). i would suggest trying to poll opver fram

Re: [Flashcoders] JSFL File I/O: Install Package

2006-02-16 Thread Johannes Nel
an mxp should do the trick, no? On 2/16/06, eric dolecki <[EMAIL PROTECTED]> wrote: > > Is anyone aware of a JSFL Command to ease installation of packages into > the > Flash 8 IDE? > > I'm going to research File I/O a little bit, perhaps that will be enough > to > whip one up quickly. Perhaps one

Re: [Flashcoders] JSFL File I/O: Install Package

2006-02-16 Thread Johannes Nel
er on a shortcut icon, but > it > would be nice to do it within the IDE. > > -edolecki > > > On 2/16/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > > > an mxp should do the trick, no? > > > > On 2/16/06, eric dolecki <[EMAIL PROTECTED]> wrot

Re: [Flashcoders] JSFL File I/O: Install Package

2006-02-16 Thread Johannes Nel
using a checkbox or button include them in your current fla's classpath. is this the right track? i will gladly help you if there is anything you need to make this work. cheers johan On 2/16/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > aah. i think what you want to loo

Re: [Flashcoders] JSFL File I/O: Install Package

2006-02-16 Thread Johannes Nel
ining a bunch of classes > > > 2. Easily install that package (folder & its contents) into your > > > "C:\Documents and Settings\\Local Settings\Application > > > Data\Macromedia\Flash 8\en\Configuration\Classes" directory. Perhaps > make it > > >

Re: [Flashcoders] Guy Watson's FileSystem Extension

2006-02-16 Thread Johannes Nel
hang on 5 minutes. i almost have it working using flFile, which will make it Mac usable as well/ On 2/16/06, eric dolecki <[EMAIL PROTECTED]> wrote: > > Ok - I downloaded Guy's FileSystem extension and there is something called > > FileSystem.copyFolder( param1, param2 ); > > which rocks. But

Re: [Flashcoders] Guy Watson's FileSystem Extension

2006-02-16 Thread Johannes Nel
lderURI actuallly copies the > contents INSIDE the folderURI, and not the folderURI itself - frustrating! > > -edolecki > > > On 2/16/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > > > hang on 5 minutes. i almost have it working using flFile, which will > make > >

Re: [Flashcoders] Guy Watson's FileSystem Extension

2006-02-16 Thread Johannes Nel
as a side note. on usage :) lets say i want to import the xfactor xpath classes, just point it to the com directory and the whole com thinga'mabob gets copied over. On 2/16/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > nothing a bit of plagarism and a slight rewrite coul

Re: [Flashcoders] Re: Ensuring commercial is played before the video while keeping .FLV external

2006-02-16 Thread Johannes Nel
sorry for not getting into the morality of this. dispatch an event from the swf you load in. or have something that checks currentFrame vs. totalFrames ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http:/

Re: [Flashcoders] Dynamic drop shadow

2006-02-17 Thread Johannes Nel
instqead of poling just use object.watch On 2/28/06, Philip Smith <[EMAIL PROTECTED]> wrote: > > As noted, I am working within another developer's framework, and cannot > make > fundamental design changes at this time. The new DropShadowFilter works on > the principle I described, you register a v

Re: [Flashcoders] Event Dispatcher

2006-02-17 Thread Johannes Nel
yeah. the type property can be whatever, as long as you know what you are listening for all is good. On 2/17/06, Jamie Alpers <[EMAIL PROTECTED]> wrote: > > This may be a "duh" question, but when you use dispatchEvent in a custom > created component, can I use my own event name or do i have to use

Re: [Flashcoders] Event Dispatcher

2006-02-17 Thread Johannes Nel
what john is outlining here is fine in essence, but unless you never want to remove this event listener this will cause a memory leak. either you create the delegate function on a class scope or you use arguments.caller in the handler function to remove the event listener On 2/17/06, John Grden <[

Re: [Flashcoders] Problem with LocalConnection?

2006-02-23 Thread Johannes Nel
i would imagine that the lc class would be declared dynamic, but maybe it ain't on his machine. anyway check if this solves your problem var receiving_lc:LocalConnection = new LocalConnection(); receiving_lc["showpic"] = function (goWhere:String) { gotoAndPlay(goWhere); }; On 2/23/06, Dave Menn

Re: [Flashcoders] Order of dispatched events?

2006-02-28 Thread Johannes Nel
in the order you added the listeners. it just loops through an array and executes the methods one by one On 2/28/06, Judah <[EMAIL PROTECTED]> wrote: > > Is there a way to make the order that events are called "Fixed"? > > > > Are they guaranteed to be executed in a particular order? > > > > Judah

Re: [Flashcoders] Can a class be conditionally included with an if statement

2006-03-03 Thread Johannes Nel
that class will get included search for a pre-compiller On 3/3/06, Manuel Saint-Victor <[EMAIL PROTECTED]> wrote: > > Would something like this keep a file from being included in compilation ? > > If(debug){ >debugData:TestData=new TestData(); > } > > My goal is to have some class files that a

Re: [Flashcoders] Newbiew question AS3

2006-03-06 Thread Johannes Nel
no the zorn plugin does not work for mac osx. several people including grant skinner have shown how to get around this On 3/6/06, Mike Britton <[EMAIL PROTECTED]> wrote: > > Adobe Labs http://labs.macromedia.com/ is the place to go for demos and > examples. > > > there isn't a build of flex for os

Re: [Flashcoders] Getting a screenshot of flash app?

2006-03-07 Thread Johannes Nel
if it flash 8 you could use bitmapdata On 3/7/06, Sean K. Moran <[EMAIL PROTECTED]> wrote: > > > Anyone know an automated server-side way of getting a jpg screenshot > of a flash app? > > Would need to be linux based...no windows here. > > TIA, > Sean > > __

Re: [Flashcoders] interactive windowswf

2006-03-08 Thread Johannes Nel
you should look at xray www.osflash.org/xray On 3/8/06, Manuel Saint-Victor <[EMAIL PROTECTED]> wrote: > > Is it possible to have a windowSWF file place a variable somewhere in the > scope of running movie whenever that panel is open? What I am trying to > do > is create a debugging panel that wi

Re: [Flashcoders] interactive windowswf

2006-03-08 Thread Johannes Nel
xray is just a flash movie. any flash movie can be a window swf. maybe i am daft but I don't see the problem. On 3/8/06, Manuel Saint-Victor <[EMAIL PROTECTED]> wrote: > > Thanks guys- I use xray and That would be okay for me - but what I'm > working > on is part of a customized solution in a pane

Re: [Flashcoders] Flex2 Project Conversion

2006-03-14 Thread Johannes Nel
i would start porting without worrying about it, beta2 is on its way out, and some things might change, but nothing to be overly concerned about i think. it took me less than a day to port all my code from alpha 1 to beta 1. if you know mxml already you are already well on your way . flex 2 and as

Re: [Flashcoders] Flex2 Project Conversion

2006-03-14 Thread Johannes Nel
as a side note, you don't need to use flex if file size is a worry, but the flex framework really gives you a ton of power. On 3/14/06, Johannes Nel <[EMAIL PROTECTED]> wrote: > > i would start porting without worrying about it, beta2 is on its way out, > and some things might

Re: [Flashcoders] Web service call not working on network

2006-03-14 Thread Johannes Nel
sound like a crossdomain policy issue. run a http sniffer and see if there is a request for a crossdomain.xml file On 3/12/06, Mick G <[EMAIL PROTECTED]> wrote: > > Does anyone have any tips why a site i'm using that is connecting to Web > Services works fine in the IDE, and works fine outside my

Re: [Flashcoders] Flex2 Project Conversion

2006-03-14 Thread Johannes Nel
i am contracting to large company and we are doing stuff using flex2, so... i don't quite agree with your argument. also note what he says, they want to move an existing app to flex2 and his concern is that it will change radically from beta 1 to final product. the very fact that beta 2 is coming o

Re: [Flashcoders] Setting Focus on TextInput Component

2006-03-14 Thread Johannes Nel
it can be done by targeting the textfield inside the component directly On 3/14/06, John laPlante <[EMAIL PROTECTED]> wrote: > > The focus rectangle doesn't appear when you use setFocus() or when you > click into a text field. > > Message: 24 > Date: Tue, 14 Mar 2006 16:13:12 -0600 > F

Re: [Flashcoders] Setting Focus on TextInput Component

2006-03-14 Thread Johannes Nel
pop a textinput onto the stage called a this.onEnterFrame = function() { delete this.onEnterFrame; Selection.setFocus(a.label) a.drawFocus(true); } its a v2 component takes a frame to init. i misread the question the firstime and thought you meant ust giving it selection focus instea

Re: [Flashcoders] Flex2 Project Conversion

2006-03-15 Thread Johannes Nel
icfconsulting.com > > > > > > > > > > > >>-Original Message- > >>From: [EMAIL PROTECTED] [mailto:flashcoders- > >>[EMAIL PROTECTED] On Behalf Of Johannes Nel > >>Sent: Tuesday, March 14, 2006 6:24 PM > >>To: Flashcoders ma

Re: [Flashcoders] Advice on how to make a copy of an object

2006-03-15 Thread Johannes Nel
interesting you should say its the same in as3 jese. i take it you are aware of peter halls post on this http://www.peterjoel.com/blog/index.php?archive=2006_02_01_archive.xml#114064012876401732 however that does not work ala as2, since all private members are ignored. (which leaves me to suspect

Re: [FlashCoders] remove BitmapData

2006-03-15 Thread Johannes Nel
you could loop through the movieclip, check if the object you are encountering is an instance of bitmapdata and remove them. this could be done in reomvemoveiclip so you know when you remove a movieclip it will be sorted. On 3/15/06, Dimitrios Bendilas <[EMAIL PROTECTED]> wrote: > > So that means

Re: [FlashCoders] remove BitmapData

2006-03-15 Thread Johannes Nel
exactly can you remove a bitmap data from a movieclip? > That's what I haven't figured out yet. > > Thanks, > Dimitrios > > > - Original Message - > From: "Johannes Nel" <[EMAIL PROTECTED]> > To: "Flashcoders mailing list" >

Re: [FlashCoders] remove BitmapData

2006-03-15 Thread Johannes Nel
nes. > > But what if I need to remove bitmaps only at a certain depth? > Because I really don't want to clear all BitmapData from the movieclip... > > Dimitrios > > > - Original Message - > From: "Johannes Nel" <[EMAIL PROTECTED]> > To: "

Re: [Flashcoders] asking book opinion-OOP with AS2, Jeff Taper et al.

2006-03-19 Thread Johannes Nel
a good book thats a free download is thinking in java by bruce eckel. then as everyone keep saying head first design patterns. bruce eckel also wrote a design pattern book which i haven't read. On 3/19/06, Martin Weiser <[EMAIL PROTECTED]> wrote: > > Hello , > > anyone have read this book, could

Re: [Flashcoders] Some Computers Won't Stream MP3 in Flash/I.E.

2006-03-19 Thread Johannes Nel
don't use a .mp3 file as somepoeple have stuff like download accelarator installed which grabs hold of that. rename the file to some arb extension as flash just worries about the header( if it does even about that, but i suspect it will since it needs to know how much iot has to load). On 3/19/06,

Re: [Flashcoders] Some Computers Won't Stream MP3 in Flash/I.E.

2006-03-19 Thread Johannes Nel
are you using apache or iis as your webserver? (or in the case of something else what is that?) On 3/19/06, Marc Hoffman <[EMAIL PROTECTED]> wrote: > > Johannes, > > This looked promising, but it doesn't fix the problem when playing > from the web server for some reason -- it now breaks in I.E. an

Re: [Flashcoders] Some Computers Won't Stream MP3 in Flash/I.E.

2006-03-19 Thread Johannes Nel
ok for iis here is a tech brief on how to do the whole mime type bit. http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/cd72c0dc-c5b8-42e4-96c2-b3c656f99ead.mspx?mfr=true so what i suggest is not to remove the extension completly, rename is to .somethingrandom and configur

Re: [Flashcoders] Some Computers Won't Stream MP3 in Flash/I.E.

2006-03-19 Thread Johannes Nel
it could be a combination of things. first off, it could be something else grabbing hold of the mp3, (it happens a lot), then creating a new extension (which is a good thing to do inanycase) might fail because of mime type settings. it might be failing on different computers in the same browser bec

Re: [Flashcoders] Alphabetize XML

2006-03-20 Thread Johannes Nel
a hard ine break will also cause a cause attributes to break. anyway, if it cannot be done on the server (aka in your select statement) then the best is to get it into an array and use the sortOn functionality. i am 100% that this can be doen with xfactorstusdio's path implementation as well, but

<    1   2   3   >