[Flashcoders] Strange actionscript vs tweening problem Flash8

2006-02-16 Thread T. van Zantvoort
Hi Guys, I have a strange problem. I have several buttons on my canvas which I named b1_btn untill b9_btn. In actionscript I have made the OnRelease call to them through a For loop (also a RollOver and RollOut). On release the movie should continue (play) and the buttons should tween to a

Re: [Flashcoders] Strange actionscript vs tweening problem Flash8

2006-02-16 Thread Karthik
At this point it goes strangely, the tween is actually happening but the button clicked stays on the same place until the tween stops and then flips to the location it supposed to tween to. How are you tweening this? You might want to show us some code. -K

Re: RE : [Flashcoders] External Imaging Nightmares

2006-02-16 Thread Oleg Filipchuk
Here is the working example, without gotoAndStop etc. DO NOT USE onLoadComplete, use onLoadInit System.security.allowDomain (google.com); function onLoadStart( target:MovieClip ):Void { trace ( load start) } function onLoadError( target:MovieClip, errorCode:String ):Void { trace(

RE: [Flashcoders] Strange actionscript vs tweening problem Flash8

2006-02-16 Thread T. van Zantvoort
I just simply use for (i=1; i10; i++) { this[b+i].onRelease = function() { play(); }; } This is for button 1 through 9 and then on the timeline there's a tween with all the buttons that go to an other location themselfs. But when I click on a button, that button

[Flashcoders] Issues while accessing a variable in a movieclip from external class

2006-02-16 Thread Luca Candela
I'm writing a little application to run a course, and the engine creates the navigation menu putting labels in the button etc... So, as far as I change things like a dynamic text that's on the stage with something like mybutton.itemText.text =

Re: [FlashCoders] scrollRect

2006-02-16 Thread Dimitrios Bendilas
Hi Jester, Thanks for the url. It seems very interesting. There is one thing that bothers me, aside the fact that I'would have to re-write a lot of stuff from scratch, if I used a model like this. How do you know in what depth to draw everything? How do you handle _alphas? The movieclip model

RE: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread Hauwert, Ralph
Just out of curiosity, what does to block mean in this contest. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: donderdag 16 februari 2006 1:46 To: Flashcoders mailing list Subject: Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5 Flash Player is

Re: [Flashcoders] Flash window coming out small on some IE browsers

2006-02-16 Thread Éric Thibault
Is it comming out small after the express install? Or always... Do the 15% have administrator prev.? Just some questions... :-) A+ Ramon Tayag wrote: Hey guys, This is really strange, and is kinda OT coz it's not actionscript related. It's more about the Flash Player Detection Kit.

RE: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread Geoffrey Williams
Block = Pause, Sleep -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hauwert, Ralph Sent: Thursday, February 16, 2006 8:54 AM To: Flashcoders mailing list Subject: RE: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5 Just out of curiosity, what

[Flashcoders] Issue with two instances on a timeline

2006-02-16 Thread Meinte van't Kruis
Hi folks, I've had this problem for a long time and it keeps on coming back once in a while, and allthough I've allways found ways to work around it, I never got to a real solution, so perhaps some of you know the answer. The problem is, simply put: make a textfield, called tfield place it

Re: [FlashCoders] scrollRect

2006-02-16 Thread JesterXL
BitmapSprites extend Bitmap. Bitmap is an internal class, and extends DisplayObject. DisplayObjects' have a drawing index, just like MovieClips do. So, instead of swapDepths, you'd use setChildIndex. Now, for individual bitmaps that you are drawing, addToBitmapSprite, they are added to the

[Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread John Giotta
Hello all, I'm looking for a tool that can inject a line code to the first frame of a SWF. Basically, our advertising department gets SWF ads from a 3rd party designer and a specific _level0 variable needs to be set in order for the clickthrough to work. If anyone has a method or tool to do this

[Flashcoders] dispatching events at creation time?

2006-02-16 Thread Luca Candela
-- class tryOut { public var addEventListener:Function; public var removeEventListener:Function; private var dispatchEvent:Function; function tryOut() { mx.events.EventDispatcher.initialize(this); trace(I am Here 1);

Re: [Flashcoders] dispatching events at creation time?

2006-02-16 Thread John Giotta
I've done it the same you have, but it only worked correctly in IE. Basically, I was replacing the MovieClip.onLoad, but when I tested in Firefox it never happened. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] multiuser flash games

2006-02-16 Thread Chris Allen
You could always use FMS or Red5 ( http://osflash.org/red5 ) for this purpose as well. I also use XMPP or Jabber for real time communication with Flash. There is a great open source server and library for Flash at http://jivesoftware.org. JesterXL mentioned in an earlier email that he's using a

Re: [Flashcoders] Flash window coming out small on some IE browsers

2006-02-16 Thread Odie Bracy PhD
I have seen this happen for users who had AOL for their internet provider (using the AOL browser, which I think is a modified IE) I had them connect thru AOL, then drop the AOL browser to the task bar and open the regular IE and the SWF ran fine there. Odie On Feb 16, 2006, at 12:46 AM,

Re: [Flashcoders] dispatching events at creation time?

2006-02-16 Thread Stefan Mees
You can dispatch a Event at creation time, but no listener can listen to this event at creation time ;-) What came firstThe chicken or the egg? ;-) Luca Candela schrieb: -- class tryOut { public var addEventListener:Function; public var

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread erixtekila
I'm looking for a tool that can inject a line code to the first frame of a SWF. Any reason not using FlashVars and push this variable inside the swf container ? BTW, you'd able to inject code in swf file with mtasc -keep HTH --- erixtekila http://blog.v-i-a.net/

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread John Giotta
FlashVars is what we're using to set the clickthrough URL, however, the ads system is predefined to set the variable to clickTAG and some designers have been referring to the variable as clickTag. clickTag doesn't equal clickTAG... so I thought I could run an injection script to just insert a

Re: [Flashcoders] dispatching events at creation time?

2006-02-16 Thread John Giotta
You can dispatch a Event at creation time, but no listener can listen to this event at creation time ;-) Yeah that would help. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread Adrian Lynch
You could pass it in twice, clickTag=somethingclickTAG=something Not pretty though. Adrian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of John Giotta Sent: 16 February 2006 15:28 To: Flashcoders mailing list Subject: Re: [Flashcoders] A Tool to Inject AS

RE: [Flashcoders] dispatching events at creation time?

2006-02-16 Thread Ben Smeets
Just a quicky, but why would you want to know when an object is created? If you don't give anything back (like throwing an exception) you van assume the contructing worked can't you? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luca Candela Sent:

Re: [Flashcoders] dispatching events at creation time?

2006-02-16 Thread Luca Candela
I resolved this issue with a callback to a function defined outside the class that sends the Event. anyone can tell me anything about my other problem of the day? On 2/16/06, John Giotta [EMAIL PROTECTED] wrote: You can dispatch a Event at creation time, but no listener can listen to this

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread erixtekila
I'm looking for a tool that can inject a line code to the first frame of a SWF. Moreover, you get : KineticFusion Flasm swfcombine and from swftools --- erixtekila http://blog.v-i-a.net/ ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread John Giotta
I could, but the way the Ads System delivers the SWF we don't actually control the output. The SWF is registered to the system and is delivered with a predefined HTML template. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

RE: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread Shaw, Matt (MTVN)
I think in this case you need to teach a man to fish. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Giotta Sent: Thursday, February 16, 2006 10:28 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread John Giotta
Moreover, you get : KineticFusion Flasm swfcombine and from swftools Thanks erixtekila, I'll check those out. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread John Giotta
I think in this case you need to teach a man to fish. LOL I'm not in the business of ultimately educating them all. I'm a 1st party developer and I simply get bugged way too much to diagnose the SWFs. ___ Flashcoders@chattyfig.figleaf.com To change

[Flashcoders] mx.controls.DataGird - hoe to edit the content of a cell?

2006-02-16 Thread Iuliu Burtoiu
Hi list, If anyone have the slightest idea, here's my problem: One of the columns in my DataGrid must be editable. Therefore: //code myDataGrid.editable = true firstColumn = myDataGrid.getColumnAt(0) firstColumn.editable = true;

[Flashcoders] Q; Extending the media playback component

2006-02-16 Thread bitstreams
Hi I would like to extend the media playback component, essentially adding more features. Is this simply a matter of extending the class mx.controls.MediaPlayback.as ? Would it really matter if I use inheritance or composition? Thanks in advance Jim Bachalo [e] jbach at bitstream.ca [c]

RE: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread Merrill, Jason
A simple method would just be to load it into host .swf, and then put the code in the host clip and target the loaded instance. Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread John Giotta
A simple method would just be to load it into host .swf, and then put the code in the host clip and target the loaded instance. I'm considering that as an alternative. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] mx.controls.DataGird - hoe to edit the content of acell?

2006-02-16 Thread JesterXL
If the DataGrid is editable, the text you type in will trigger a modelChanged event when you focusOut/hit enter, thus changing the data. Are you not seeing that? - Original Message - From: Iuliu Burtoiu [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, February

Re: [Flashcoders] A Tool to Inject AS to First Frame of SWF

2006-02-16 Thread John Giotta
A simple method would just be to load it into host .swf, and then put the code in the host clip and target the loaded instance. I'm considering that as an alternative. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

RE: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread Judah
Is that a viable way or you just saying that is the only that stops flash execution? If so how do you take advantage of that without popping up a print dialog to the user? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Wednesday, February

[Flashcoders] need : multiple sine waves animating - via drawing api

2006-02-16 Thread artur
does some have code for this? i looked everywhere.. no luck. just want 3 waves ( lines ) to ebb and flow organically. thanks in advance -artur ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Autosave Feature in Flash?

2006-02-16 Thread Dwayne Neckles
I don't know JSFL but they say its good to create extensions with it. Is it possible to create a feature that allows the files to be auto saved every or 2 minutes.. I ask cause Flash just crashed on me and when I am in the middle of some heavy flashing it's possible to forget to save it.

Re: [Flashcoders] Autosave Feature in Flash?

2006-02-16 Thread Rich Rodecker
there already is one... http://www.flashguru.co.uk/extensions/ On 2/16/06, Dwayne Neckles [EMAIL PROTECTED] wrote: I don't know JSFL but they say its good to create extensions with it. Is it possible to create a feature that allows the files to be auto saved every or 2 minutes.. I ask

Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread JesterXL
Nope, not viable, just the only way. No way to remove the print dialogue either. We've all asked Macromedia/Adobe many times for a publicly supported way to pause the thread, and no result has come of it. Since we run in a browser most of the time, I don't think Adobe wants us developers

Re: [Flashcoders] Autosave Feature in Flash?

2006-02-16 Thread JesterXL
http://www.flashguru.co.uk/new-extension-auto-save/ - Original Message - From: Dwayne Neckles [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, February 16, 2006 11:51 AM Subject: [Flashcoders] Autosave Feature in Flash? I don't know JSFL but they say its good to

Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread Darron J. Schall
JesterXL wrote: Nope, not viable, just the only way. Sorry to contradict you bro, but ExternalInterface can block the player. http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=2200.html When you call an external method via

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

2006-02-16 Thread Judah
Awesome! That did it. cmb.doLater(this, reposText); function reposText() { cmb.text_mc.label._y = -.5 cmb.text_mc.label._height = 15 } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Nel Sent: Wednesday, February 15, 2006 7:42

Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread JesterXL
Have you tried this with JavaScript's alert method? - Original Message - From: Darron J. Schall [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, February 16, 2006 12:16 PM Subject: Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

[Flashcoders] orphaned bindings

2006-02-16 Thread jktieman
I have seen references to the problem of bindings that show as an error in the output panel like this: Scene 1, Binding between unknown.deltaPacket. and unknown.deltaPacket.: The endpoint of the binding does not exist. I think I caused mine when I removed a DataSet and a Resolver from a form that

Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread Darron J. Schall
JesterXL wrote: Have you tried this with JavaScript's alert method? No, but I've done it with C# - waiting for database access via ExternalInterface freezes the player until the method completes. Does it not block when you use alert()? What about prompt()? -d

Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread JesterXL
:: goes to try :: - Original Message - From: Darron J. Schall [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, February 16, 2006 12:46 PM Subject: Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5 JesterXL wrote: Have you tried

[Flashcoders] Articles on accessing actionscript through js

2006-02-16 Thread Mendelsohn, Michael
Hi list... I'm thinking of experimenting with having js control a swf. Can you call methods and get/set various props in a swf from js in a web page...and have it work in all browsers? If anyone has any recommendations on where to read up on this, please let me know. Thanks, - Michael M.

Re: [Flashcoders] Multithreaded AS1 - AS2 - AS3 - AS4 - AS5

2006-02-16 Thread JesterXL
Bleh, almost. Sounds getTimer don't stop, just like PrintJob.send. Interval's, onEnterFrame, and animations do, though. Apparently ExternalInterface.call and PrintJob.send make the same call to pause stuff. It's still not a total thread-lock, though...

[Flashcoders] JSFL File I/O: Install Package

2006-02-16 Thread eric dolecki
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 exists already. Unsure. Would be quite useful though. -edolecki

Re: [Flashcoders] Articles on accessing actionscript through js

2006-02-16 Thread John Giotta
ExternalInterface in Flash 8 works real well. Plus, check out AFLAX http://osflash.org/aflax ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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 exists

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

2006-02-16 Thread eric dolecki
Something where I download a .zip and its got the package there, no MXP, etc. Perhaps I make my own package and I just wanna quickly install it. That kind of use case. I can always drag drop the folder on a shortcut icon, but it would be nice to do it within the IDE. -edolecki On 2/16/06,

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

2006-02-16 Thread Johannes Nel
aah. i think what you want to look at is claspaths, instead of copying the resource to your project folder for every project. i suspect you can set classpaths with jsfl, but could be wrong. this could be quite a handy little extension and i have some ideas how that could be inmplemented :) On

Re: [Flashcoders] multiuser flash games

2006-02-16 Thread Mike Boutin
Hello Rich, I have used it so far with 20 users connected and playing. (using the lite edition 50 user max) Though this has all been on a local network. Rich Rodecker wrote: Jobe - sorry, I meant no more than 5 users at a time in a room..i would imagine that there would be more than 1

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

2006-02-16 Thread Johannes Nel
hi eric i have a file and folder browser i wrote as a windowSWF panel. now how this kind of extension can work is. you add a known class path to your lists of classpaths, by browsing to the folder where it is located. you obviously see a list of all the classpaths you have specified before, and

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

2006-02-16 Thread eric dolecki
My original thinking was this: 1. Download someone's package containing a bunch of classes 2. Easily install that package (folder its contents) into your C:\Documents and Settings\user\Local Settings\Application Data\Macromedia\Flash 8\en\Configuration\Classes directory. Perhaps make it work for

[Flashcoders] gotoandlearn()

2006-02-16 Thread Chris Kennon
Hi, I've contacted lee directly, but thought this might prove additionally helpful. I'm working with OS 10.4.5, both Safari and FireFox cannot load gotoandlearn() tutorials, and both are unable to download the material. I'm at a loss why this happening? Return True, Christopher

Re: [Flashcoders] multiuser flash games

2006-02-16 Thread Rich Rodecker
hmm yeah local network is one thing...i wonder how that would perform over the web. On 2/16/06, Mike Boutin [EMAIL PROTECTED] wrote: Hello Rich, I have used it so far with 20 users connected and playing. (using the lite edition 50 user max) Though this has all been on a local network.

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

2006-02-16 Thread eric dolecki
I started whipping something up based on something like this (JUST started though...( var folderURI = fl.browseForFolderURL(Please select your package.); var folderContents = FLfile.listFolder( folderURI, directories ); var bInstall = confirm(Install the package: + folderURI + ?); if( bInstall

Re: [Flashcoders] gotoandlearn()

2006-02-16 Thread JesterXL
What Flash player is installed in both browsers? - Original Message - From: Chris Kennon [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, February 16, 2006 2:41 PM Subject: [Flashcoders] gotoandlearn() Hi, I've contacted lee directly,

[Flashcoders] Using a string to declare a function?

2006-02-16 Thread Ryan Luce
Is there any way in flash to using a string to declare a function name. Here's an example: class test { var a = hello; function get this[a]() { trace(hi); } } i've tried this[a] and taht doesn't work... i'm not sure how it would otherwise be done. Thanks, Ryan.

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

2006-02-16 Thread eric dolecki
Have gotten further - but there seems to be no easy way to easily specify a single folder (maintaining all its sub-directories files) and copying that to this location: var packageDestinationLocation = fl.configURI + Classes; Hmm. Any JSFL-mavens out there? -edolecki On 2/16/06, eric

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

2006-02-16 Thread Johannes Nel
i am putting together a recursive copying script for you. i have already come to where you are now On 2/16/06, eric dolecki [EMAIL PROTECTED] wrote: Have gotten further - but there seems to be no easy way to easily specify a single folder (maintaining all its sub-directories files) and

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

2006-02-16 Thread eric dolecki
Cool :) I have this so far: var folderURI = fl.browseForFolderURL(JSFL PACKAGE INSTALATION\n\n\nPlease select the class package (folder) you wish to install:); if( folderURI == null ){ alert( Aborting Installation ); } else { continueProcess(); } function continueProcess(){ var

[Flashcoders] Guy Watson's FileSystem Extension

2006-02-16 Thread eric dolecki
Ok - I downloaded Guy's FileSystem extension and there is something called FileSystem.copyFolder( param1, param2 ); which rocks. But I want to get the base folder copy it... when i do this: var folderURI = fl.browseForFolderURL( choose folder to copy to class location ); that gives

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

Re: [Flashcoders] Using a string to declare a function?

2006-02-16 Thread Yehia Shouman
Try this[a]=function() { trace(hi:+arguments); } or more neat var newFunc= this[a]; newFunc=function() { } and later on you can access the newFunc variable or use this[a](); you will only have to define that function in your class constructor (if it is a component class) or any other

Re: [Flashcoders] Guy Watson's FileSystem Extension

2006-02-16 Thread eric dolecki
Okay cool, because when I get the folderURI - I alert through and its correct, the copyFolder operation, using folderURI 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

Re: [Flashcoders] Guy Watson's FileSystem Extension

2006-02-16 Thread Johannes Nel
nothing a bit of plagarism and a slight rewrite couldn't sort out. go through my added comments in the code i see some pitfalls, but could not realise them. var folderURI = fl.browseForFolderURL(Please select your package.); var folderContents = FLfile.listFolder( folderURI, directories ); var

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 couldn't sort out. go through

Re: [Flashcoders] gotoandlearn()

2006-02-16 Thread Chris Kennon
Hi, Player 8.x On Feb 16, 2006, at 11:54 AM, JesterXL wrote: What Flash player is installed in both browsers? - Original Message - From: Chris Kennon [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, February 16, 2006 2:41 PM Subject:

[Flashcoders] Getting a button to work properly...

2006-02-16 Thread Monicque Sharman
Hi all, I have a button that works as expected when the mouse clicks on it, but when the button looks like it has focus and you press the Enter button on the keyboard, it does not work as expected. The code I have on the button is as follows: on(release, keyPress Enter) { ...code, if

RE: [Flashcoders] need : multiple sine waves animating - via drawing api

2006-02-16 Thread Ben Smeets
http://www.gotoandplay.it/_articles/2005/06/pathClass.php Something like that? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of artur Sent: donderdag 16 februari 2006 17:47 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] need : multiple sine

Re: [Flashcoders] gotoandlearn()

2006-02-16 Thread Sander
gotoAndLearn has MM's default detectionkit. But I had trouble with it as well: I think an orphaned player7 file was still in my plugins folder next to the player 8 files (I switch a lot). Deleting all and reinstalling got me past the error. On 16 Feb 2006, at 23:41, Chris Kennon wrote:

[Flashcoders] printing and pagebreak

2006-02-16 Thread Diego Guebel
Hi there, I'm stuck trying to print out a textfield that is longer than a page and flash doesn't take care if cuts a text line. Is there any method to solve this issue adding page break or something? Thanks in advance, Diego. ___

[Flashcoders] Dynamic drop shadow

2006-02-16 Thread Philip Smith
Hi there, I'm looking for an AS2 class that will provide a drop shadow for a window pane that is continually resizing. I would prefer a class with an easy interface, that allows a movie clip to be registered as the clip to be shadowed, with a constant loop running inside of it to keep the

Re: [Flashcoders] gotoandlearn()

2006-02-16 Thread Chris Kennon
Hi, After completing a clean install of Flash Player 8.5, the situation continues with the following error returned to the activity window: http://fpdownload.macromedia.com/pub/flashplayer/update/current/ install/version.xml plugin-canceled Respectfully, Chris On Feb

RE: [Flashcoders] orphaned bindings

2006-02-16 Thread jktieman
I really hate to bump my own thread, but I do need someone to tell me... you're screwed, start over, it doesn't matter, it will dissolve in warm water, every life a little rain must fall, grass is always greener, something, so I can take some sort of action. As you can see, I have been reduced to

Re: [Flashcoders] Strange actionscript vs tweening problem Flash8

2006-02-16 Thread Grant Cox
I'm not sure what is happening in your case, but previously I have found similar issues (with code / timeline based effects conflicting) when: - The symbol (movieclip/button) does not have the same instance name across all keyframes (ie doesn't have an instance name on a keyframe). - When the

Re: [Flashcoders] orphaned bindings

2006-02-16 Thread JesterXL
Don't use bindings. Map the result from the server to the dataProvider of whatever control you're trying to populate. Binding only works good in Flex, not Flash. - Original Message - From: [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent:

[Flashcoders] redraw/update DataGrid to reflect change of data?

2006-02-16 Thread Chuck Hoffman
I'd like to get a DataGrid (or better yet, one of its columns) to redraw itself, so as to reflect a change made to item(s) in its dataProvider. Specifically, I have a field called 'select', and for its column in the DataGrid I use a CellRenderer containing a CheckBox, which responds to clicks

Re: [Flashcoders] Issue with two instances on a timeline

2006-02-16 Thread Grant Cox
I agree, this is perhaps the most irritating thing about animating inside the Flash timeline. Unfortunately I believe it is just a limitation of Flash, and the only way to get around it is to avoid keyframes on objects you need to use code with. So, either avoid all keyframes and do

Re: [Flashcoders] Issue with two instances on a timeline

2006-02-16 Thread Chris Velevitch
If there are 2 instances with the name name in different frames, can't you refer to a specific instance by including the frame number or frame name in the reference? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au

Re: [Flashcoders] redraw/update DataGrid to reflect change of data?

2006-02-16 Thread Grant Cox
If all you want is for the datagrid to refresh from the data already in it's dataProvider (ie, each grid row updates to what you want when you rollover), then try: var current_vpos = myGrid.vPosition; myGrid.dataProvider = myGrid.dataProvider; myGrid.vPosition = current_vpos; Regards, Grant

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

2006-02-16 Thread Jordan L. Chilcott
The best way you can ensure that your clients are seeing what you want them to see is to use a streaming server, as they can inject content into the stream. Thus, one stream can be comprised of two or more videos and the client doesn't know any better. jord On Feb 13, 2006, at 11:44 AM,

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:

[Flashcoders] UML tool for AS2

2006-02-16 Thread Janis Radins
Hye ppl! I've been searching for decent AS2 UML tool but had no luck. Could anyone share theyr good expieriences of some UML tools well suited for AS2 ? PS Yes I've seen Grant Skinner Gmodeler, idea is good but it's still way too raw. ___

Re: [Flashcoders] UML tool for AS2

2006-02-16 Thread Scott Mathieson
enterprise architect http://www.sparxsystems.com.au/products/ea.html actionscript support straight of the box On Friday 17 February 2006 06:54, Janis Radins wrote: Hye ppl! I've been searching for decent AS2 UML tool but had no luck. Could anyone share theyr good expieriences of some UML