[Flashcoders] "hover" event for links in HTML textfields - possible?

2008-12-01 Thread [EMAIL PROTECTED]
Hello List, Is there something like a "hover" event for links in HTML textfields? For example, imagine an HTML textfield which displays the poem Jabberwocky. If the user hovers over any of Lewis Carroll's nonsense words, a definition appears in something like a tool-tip. Is such a thing possible?

Re: [Flashcoders] "hover" event for links in HTML textfields - possible?

2008-12-08 Thread [EMAIL PROTECTED]
Thanks for the answers, all. Unfortunately I've only just gotten my hands on CS3, hence the late reply. >From a little bit of mucking about, it seems possible to use a combination of "a:hover" in CSS, asfunction, and the TextField.getCharIndexAtPoint(x:Number, y:Number) function to get close to th

[Flashcoders] Audio lag on KeyboardEvent.KEY_DOWN

2008-12-08 Thread [EMAIL PROTECTED]
Hi List, I'm dipping my toe into AS3 and thought I'd play around with sound by making a little "piano keyboard" which is played by pressing keys on the computer keyboard. It works - the appropriate sounds play on KeyboardEvent.KEY_DOWN - however, I've noticed that there is often a lag between the

[Flashcoders] variable with # sign

2008-02-20 Thread [EMAIL PROTECTED]
Hi. I need to pass a variable to a email sign-up form and it needs to be named f#31 I have it written: var f#31 = "TEXT:Email%20Address"; Flash gives me an error when I try to publish this and I assume its because the variable name has the # sign. How do I get around this? I've tried esca

Re: [Flashcoders] variable with # sign

2008-02-21 Thread [EMAIL PROTECTED]
you could show more code on how you are sending the data, as well as what Flash Player version you are targeting there would easier to give you a more helpful hand if you want the solution to be more legit than the solution above. / Martin 2008/2/21, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:

Re: [Flashcoders] variable with # sign

2008-02-21 Thread [EMAIL PROTECTED]
Afterall, you'll be sending/loading data through some script/ webserver/remoting, so you can *massage* your data before sending it to Flash and vice versa. So saying that you need to name variables: var f#1700253695; var f#31 is nonsense ;-) var myReallyCoolFlashVariableForAnEmailAdd

Re: [Flashcoders] variable with # sign

2008-02-21 Thread [EMAIL PROTECTED]
code check & validate your data, then decide where each bit of data goes. The client should not specify where the data goes - otherwise your database ends up hacked. This also applies to contact forms that specify the recipient in the form itself. DON'T DO IT, IT'S BAD, LEA

[Flashcoders] interview with flash player engineer jim corbett

2008-05-22 Thread [EMAIL PROTECTED]
fitc just posted an hour-long interview i did in april with jim corbett, one of the adobe's flash player engineers. see: http://www.moock.org/blog/archives/000276.html topics covered include: -garbage collecting loaded .swf files (see grant skinner's post at http://www.gskinner.com/blog/archiv

[Flashcoders] Re: AS3: Static functions and events

2008-05-23 Thread [EMAIL PROTECTED]
Jon, that looks the goods. If you want every class to have this ability (application-wide), then I guess using your technique you'd create a Global Event Manager class, and pull an instance of this class into every type. Maybe inheritance would be the go here too. Cheers for the link MHG, the

Re: [Flashcoders] Ideas for a "Fill in the gaps" activity

2008-05-27 Thread [EMAIL PROTECTED]
econd being on a new line. > > > I think that should work. > > Piers > > > > > On 27 May 2008, at 10:52, Paul Andrews wrote: > > - Original Message - From: <[EMAIL PROTECTED]> >> To: >> Sent: Tuesday, May 27, 2008 5:29 AM >> Subj

Re: [Flashcoders] user friendly URL in flash site

2008-06-01 Thread [EMAIL PROTECTED]
http://www.asual.com/swfaddress/ On Jun 1, 2008, at 2:32 PM, Pavel Krůšek wrote: Hi everybody, can anyone tell me, how to make user friendly URLs in flash site, like it seems for example here: http://www.group94.com/#/website/work/ thnaks, Pavel __

[Flashcoders] Input textfields - is it possible, when filled up, to behave like a browser input textfield?

2008-06-11 Thread [EMAIL PROTECTED]
Hello List, Not only can I not work out how to fix this problem, but I'm also having problems describing it pithily. Please bear with me and I hope someone has pointers, even if just to say "Nup, can't be done". With input textfields in a browser (that is, the ones I've checked, FF2 and IE7), whe

Re: [Flashcoders] FLV issue

2008-06-15 Thread [EMAIL PROTECTED]
I had a similar problem when I was encoding with Sorenson 4 and hadn't yet discovered the joyes of the FLV MetaData Injector. [ http://www.buraks.com/flvmdi/]. Hopefully it's this easy to fix :-) On Sat, Jun 14, 2008 at 12:00 AM, Fabio Pinatti <[EMAIL PROTECTED]> wrote: &

[Flashcoders] INSERT BREAKPOINTS and run debugger without Flash IDE ...

2008-06-16 Thread [EMAIL PROTECTED]
Depends what compiler and debugger you're using. I suggest using Flex and it's debugger if you're building anything of size. Here is a link > http://learn.adobe.com/wiki/display/Flex/Debugging+tutorial If you don't have access to Flex, maybe try FlashDevelop and this plugin > http://flashdeve

[Flashcoders] Paste rich text possible in Flash?

2008-06-17 Thread [EMAIL PROTECTED]
Just say you have text in Microsoft Word which is formatted bold and a certain colour. Is it possible to copy that text into a Flash (MX2004 or 8) input field and retain (or at least discover and recreate) that formatting? My gut feeling is "no", as I haven't yet come across examples of this on the

Re: [Flashcoders] How to avoid fake data being sent to server?

2008-06-18 Thread [EMAIL PROTECTED]
this might help you: http://cosmincimpoi.blogspot.com/2007/09/loadvariables-security-by-built-in.html#links email me for details On Jun 18, 2008, at 4:19 PM, Abe Pazos wrote: Does anyone know documentation explaining how to secure Flash client / Server communication? Imagine you have a Fl

Re: [Flashcoders] How to avoid fake data being sent to server?

2008-06-18 Thread [EMAIL PROTECTED]
ake sure script is called from swf and not from browser. you can add some ip ban script for those who try. [EMAIL PROTECTED] wrote: this might help you: http://cosmincimpoi.blogspot.com/2007/09/loadvariables-security-by-built-in.html#links Security through obscurity is not a very good idea. You

[Flashcoders] AS3 events framework ...

2008-07-03 Thread [EMAIL PROTECTED]
Considering that all events commence with the capture phase (stage to target), is there anyway to have just one stage listener for all events (of any type) that kills off event propagation, then routes said event to perhaps an event manager or function that determines the event type and what operat

[Flashcoders] Re: AS3 events framework ...

2008-07-04 Thread [EMAIL PROTECTED]
Thanks all. Rich that is my problem, you've said: "You can dispatch from one instance and listen from another" So the second instance has to be instantiated somewhere else in the application? What if the handler for the event isn't in the same class where I instantiate the event?

[Flashcoders] AS3 events, events, events ...

2008-07-09 Thread [EMAIL PROTECTED]
The AS3 event framework still leaves me slightly puzzled. For one, I'm not sure why there's no EventListener class, or why they didn't name EventDispatcher something else, like EventProxy or EventBiatch, anyway, ignore that - I'll layout a question. Let's say you have 5 classes, all of which exten

[Flashcoders] RE: AS3 events, events

2008-07-12 Thread [EMAIL PROTECTED]
Thanks Jason. What you suggested is what I put together during the interim. All events bubble up to Main which then calls a method on whatever instance it has to. So is this the way events are usually handled in AS3. So you bubble up an event to the highest object in the chain, and have it handle

[Flashcoders] The Charges Against ActionScript 3.0

2008-07-15 Thread [EMAIL PROTECTED]
hi all, i just published an article called "Charges Against ActionScript 3.0" covering the things people don't like about ActionScript 3.0. it's posted on O'Reilly's InsideRIA, here: http://www.insideria.com/2008/07/the-charges-against-actionscri.html The article discusses the following issues

[Flashcoders] Overlapping two SWFs (wmode = transparent) in Firefox

2008-07-31 Thread [EMAIL PROTECTED]
I'm experimenting with two SWFs in separate DIVs, stacked exactly atop each other, with wmode = transparent. Both SWFs have clickable / draggable items. I have noticed that in Firefox 2, the bottom SWF is basically blocked (nothing clickable or draggable), while in IE7 it seems to work fine. Can a

[Flashcoders] [AS2] Vista, asfunction, selectable=false and autoSize=true

2008-10-15 Thread [EMAIL PROTECTED]
Hello List, I'm working with some AS2 code that creates a textfield which has selectable=false and autoSize=true, and uses asfunction to change its own contents. I recently noticed that, while it works successfully on Windows XP and on a Mac (unsure of version), it does not seem to work on Vista.

Re: [Flashcoders] [AS2] Vista, asfunction, selectable=false and autoSize=true

2008-10-15 Thread [EMAIL PROTECTED]
to confirm it. Thanks once again! CB Botha. On Wed, Oct 15, 2008 at 7:47 PM, Ian Thomas <[EMAIL PROTECTED]> wrote: > Hi there, > What would be helpful is to know what the behaviour you expect > _is_, and what you see when it's broken. > > I would be very sur

[Flashcoders] AS3 training courses in Sydney

2008-11-09 Thread [EMAIL PROTECTED]
Hi List, As an anxious AS2 developer, I was wondering if anyone could recommend an AS3 training course in Sydney (Australia). So far, I have come across this course at Dynamic Web Training - http://www.dynamicwebtraining.com.au/courses/flash-training-3.htm - but was wondering if there were others

Re: [Flashcoders] mp3 player AS2

2008-11-23 Thread [EMAIL PROTECTED]
atTime(mySound.duration)+"+"; } } time_txt.text = currPosition + " (" + currDuration + ")"; } Hope that helps! On Sun, Nov 23, 2008 at 8:04 AM, natalia Vikhtinskaya <[EMAIL PROTECTED] > wrote: > Please help me understand how correctly to show duration time. I >

Re: [Flashcoders] :: anyone passed flash 8 certification exam?::

2006-12-08 Thread [EMAIL PROTECTED]
he exam. and anyone else who has taken the exam. please post your impressions too. best of luck! On 12/6/06, Orindom Dhar <[EMAIL PROTECTED]> wrote:Hello, Has anyone out there,cleared the flash 8 professional certification exam. If yes, could you please give some advice on

RE: [Flashcoders] :: anyone passed flash 8 certification exam?::

2006-12-11 Thread [EMAIL PROTECTED]
u and yours this holiday season! Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote: Flash 8 Certification Exam? Srsly? And you pay for it? That's crazy talk! If you've got money to throw away, why not give it to a charity this holiday season and use it for something that actual

Re: [Flashcoders] :: anyone passed flash 8 certification exam?::

2006-12-11 Thread [EMAIL PROTECTED]
nor does it make me worse ;-) Now same to you, let's get back to playing nice with the other kids here in the Flash playground :-) Best wishes to you and yours this holiday season! Jordan Snyder <[EMAIL PROTECTED]> wrote: I don't agree with the smartassitude,

Re: [Flashcoders] :: anyone passed flash 8 certification exam?::

2006-12-11 Thread [EMAIL PROTECTED]
really, finally, good-bye prototype ;-) Jordan Snyder <[EMAIL PROTECTED]> wrote: Haha fair enough. Just understand that my tone was playful and did not illicit a smartass response. You do make some good points as to the uses of a cert, but I'm still not sure that makes it worth

Re: [Flashcoders] SWF Decompiler

2006-12-14 Thread [EMAIL PROTECTED]
worth it. i have also tried Sothink but found it no where in league with Buraks.com/ASV. Here is a link for a review on ASV from last year: http://www.flashmagazine.com/945.htm Alias™ <[EMAIL PROTECTED]> wrote: Haven't used eltima, but I'd generally recommend

Re: [Flashcoders] :: anyone passed flash 8 certification exam?::

2006-12-17 Thread [EMAIL PROTECTED]
following is a link to a post by two Flash developers who passed the exam and posted some comments about their experience: http://www.aboutnico.be/?p=54 __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mai

Re: [Flashcoders] Flash 8 Certification Study Tips?

2006-12-20 Thread [EMAIL PROTECTED]
the weekend posted some comments about their experience: http://www.aboutnico.be/?p=54 best of luck. please post back after you take the exam and let us know how the exam looked to you. JOR <[EMAIL PROTECTED]> wrote: Hey Doug, I wrote a little about my experience with the exam on m

Re: [Flashcoders] duplicate movieclip with loading image

2007-01-05 Thread [EMAIL PROTECTED]
n/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- massimiliano canestrari -> [EMAIL PROTECTED] -> [EMAIL PROTECTED] -> [EMAIL PROTECTED] fix +39 (0)6 58333624 mobile +39 334 652

Re: [Flashcoders] Flash Tracer / FF2

2007-01-09 Thread [EMAIL PROTECTED]
ing to log both :) ) Grant. - Original Message - From: John Grden [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 1/9/07 2:57 PM Subject: Re: [Flashcoders] Flash Tracer / FF2 > The good news is, it's as simple as: > > import com.blitzag

Re: [Flashcoders] Flash Tracer / FF2

2007-01-09 Thread [EMAIL PROTECTED]
last time I used an old version :) Grant - Original Message - From: John Grden [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 1/9/07 3:19 PM Subject: Re: [Flashcoders] Flash Tracer / FF2 > why I oughtta...pow, right in the kisser! > >

Re: [Flashcoders] Flash Tracer / FF2

2007-01-09 Thread [EMAIL PROTECTED]
cool man, thanks a bunch John. Grant. - Original Message - From: John Grden [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 1/9/07 3:31 PM Subject: Re: [Flashcoders] Flash Tracer / FF2 > ;) > > if you have to apps sending it log data, t

[Flashcoders] MenuBar setMenuItemSelected problem.

2007-01-16 Thread [EMAIL PROTECTED]
"1.0" ?> <menu> <menuitem label="Organic Molecules"> <menuitem label="Google" instanceName="googleInstance" type="check" linkTo="http://www.google.com"; linkType="web" /> <menuitem type="separa

Re: [Flashcoders] MenuBar setMenuItemSelected problem.

2007-01-16 Thread [EMAIL PROTECTED]
tes.linkType) { case "web": //getURL(eventObj.menuItem.attributes.linkTo, "_blank"); break; case "email": //getURL("mailto:"+eventObj.menuItem.attributes.linkTo, _blank"); break; case "keyframe": //gotoAndPlay(eventObj.menuItem.attributes.l

Re: [Flashcoders] questions about [embed] in AS3

2007-01-20 Thread [EMAIL PROTECTED]
nores [Embed] since flex has no library, it uses the [Embed] convention instead. docs on it here: http://livedocs.macromedia.com/flex/201/html/embed_082_3.html August Gresens <[EMAIL PROTECTED]> wrote: Hello I just starting to learn AS3, making my way through the Mook "

[Flashcoders] Smartfoxserver vs. Electroserver

2007-01-27 Thread [EMAIL PROTECTED]
Guys I need some help! My company is starting a new project were we will develop a multiplayer games to be offered to Corporate Customers. Our in-house research has narrow our possibilities to 2 alternatives for the Socket Server: Smartfoxserver 1.5 or Electroserver 3 On the one hand both of th

Re: [Flashcoders] hooking up GUI in pure OO code...

2007-02-04 Thread [EMAIL PROTECTED]
try adding a Delegate to fix the scope issue. import mx.utils.Delegate; class Main { var myButton:Button; // placed on stage in authoring time function init() { myButton.onRelease = Delegate.create ( this, doSomething ); } function doSomething() { trace("something"); } } Cheers, Andrew. _

Re: [Flashcoders] What do you think are the best Flash projects and RIA's

2007-02-14 Thread [EMAIL PROTECTED]
uz <[EMAIL PROTECTED]> wrote: I like this one http://www.airtightinteractive.com/projects/related_tag_browser/app/ On 2/14/07, James Deakin <[EMAIL PROTECTED]> wrote: > > What do you think are the best Flash projects and RIA's? I'm involved in > lots of project where

Re: [Flashcoders] Flash IDE thinks standard #include ".as" file is aclass file

2007-02-16 Thread [EMAIL PROTECTED]
s included in. Just a thought.. regards, Muzak - Original Message - From: "Mike Mountain" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, February 16, 2007 12:58 PM Subject: [Flashcoders] Flash IDE thinks standard #include ".as" fil

Re: [Flashcoders] simple math question...

2007-03-02 Thread [EMAIL PROTECTED]
MovieClip._width / 2 = its _x center MovieClip._height / 2 = its _y center hope it helps [p e r c e p t i c o n] wrote: good people, how do i move a moviClip to center itself at (_xmouse, _ymouse)...i have the onPress part down...i just need to center it on those coordinates thanks _

[Flashcoders] Dynamic FontField issue when tweening

2007-03-08 Thread [EMAIL PROTECTED]
Please, Does anybody knows a workaround to prevent the 'words messy between lines' when resizing a dynamic font field, the only way it seems to work it is export as bitmap font, but them we got flickered corners... here is what i´m talking about: (click on the field) http://www.randalgrave.co

Re: [Flashcoders] Does ByteLoaded/bytesTotal work loading from CDROM ?

2007-03-19 Thread [EMAIL PROTECTED]
hi, I think one of the best approach is to use NetConnection/NetStream with metadata companion, you'll find good examples on documentation or just googling a bit. :) Jaco - pixeldump - Segue Messaggio Originale - Da : "Fabio Sonnati" <[EMAIL PROTECTED]&

[Flashcoders] FLVPlayback with Live Streams: Access to NetStream onStatus OR Equivalent of NetStream.Play.UnpublishNotify

2007-03-20 Thread [EMAIL PROTECTED]
i have a requirement where i have to use the FLVPlayback component with live streams from FMS. with FLVPlayback, is there any way that i can have access to the NetStream.onStatus event so that i can test for NetStream.Play.UnpublishNotify? or does FLVPlayback have anything equivalent to NetStre

Re: [Flashcoders] Text to MP3

2007-04-13 Thread [EMAIL PROTECTED]
ms.ac.be/synthesis/mbrola.html>" for that! cheers, michael. _______ [EMAIL PROTECTED] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier A

[Flashcoders] handling PHP sessions in actionscript

2006-08-18 Thread [EMAIL PROTECTED]
HI Sorry if this is all info that's in the archive. I did check but I'm getting pushed for time () basic question really. I have a basic system whereby user has to register and log-in in order to play an online game. when handling PHP sessions do I just append the session_ID to the

[Flashcoders] class function call onMouseAction

2006-09-18 Thread [EMAIL PROTECTED]
please, anyone knows what's the silly error I'm not catching here? when I assign the rollOver to the class instance (setPlayButton), I don't getting able to access the 'getPlayFile function' thru its rollOver, why? public function create(name:String, target:MovieClip, depth:Number, x:Number,

[Flashcoders] NetConnection Fail Error

2006-09-20 Thread [EMAIL PROTECTED]
Any idea why? I'm trying to publish a live video on my local network... Locally on my pc works fine, feed and player, but when i go lo local host feed still working but no one can see the cam. here is my code: feed: var nc:NetConnection = new NetConnection(); nc.connect("rtmp://localhost/vide

[Flashcoders] Delegate Help

2006-10-02 Thread [EMAIL PROTECTED]
i need to call playFlv() inside another function, but this ain't working... and i have never used Delegate class or some other workaround private function playFlv(file:String){ trace(file); } private function getFLV(id:String):Void{ var xml:XML = new XML(); xml.onLoad = functi

[Flashcoders] [JOB] Web Designer / Developer - Delft, The Netherlands - Full Time-contract

2006-10-05 Thread [EMAIL PROTECTED]
letter to [EMAIL PROTECTED] *More information on our company: www.xd.nl* *Job-description in Dutch Language (we are looking for someone living nearby Delft) * *XD designers is per direct op zoek naar een: Internetontwerper

[Flashcoders] Flashcom hosting

2006-10-11 Thread [EMAIL PROTECTED]
is this the default? i've been using fms on my company servers and i got everything fine with this, but i just signed a flashcom host service for my own use and my folder structure is empty, no scriptlibs, apllication, documentaion or anyother folder, is this the default?

[Flashcoders] SharedObject and Load Balanced Server

2006-10-26 Thread [EMAIL PROTECTED]
* I apologize if this ends up being a duplicate post, but I think my first attempt to send this didn't go through - If I have a flash module which uses SharedObject in a page on a website which is load balanced, what implications might that have for how data is stored on the client's machine? I'

Re: [Flashcoders] SharedObject and Load Balanced Server (Local SharedObjects)

2006-10-27 Thread [EMAIL PROTECTED]
mains (local SharedObjects). if anyone knows otherwise, I'd love to know how! On Thu Oct 26 15:32 , '[EMAIL PROTECTED]' <[EMAIL PROTECTED]> sent: >attempt to send this didn't go through - > >If I have a flash module which uses SharedObject in a page on a

[Flashcoders] Actionscript Developers in Central London

2007-05-30 Thread [EMAIL PROTECTED]
om an experienced and hard working team. UK work permit required. If you're interested drop me a line [EMAIL PROTECTED] Tom ___ Tiscali Broadband only £9.99 a month for your first 3 months! http://www.tiscali.co.uk/products

Re: [Flashcoders] XMLSocket and problems

2007-06-04 Thread [EMAIL PROTECTED]
I use AS2.0 / XMLSocket connections a lot and it's the onXML method I use to catch inbound stuff - not sure it this is your issue, but a thought anyhow >Original Message >From: [EMAIL PROTECTED] >Date: 03/06/2007 23:28 >To: "Flashcoders mailing list" >Sub

Re: [Flashcoders] Flash Debugger's not up to it.

2007-07-02 Thread [EMAIL PROTECTED]
es/as3_debugger.html has anyone here tried out the cs3 as3 debugger? can anyone offer feedback whether you have find the cs3 as3 debugger of any use? p John McCormack <[EMAIL PROTECTED]> wrote: I am getting increasingly frustrated trying to debug in the Flash IDE. I se

Re: [Flashcoders] Full screen mode.. How?

2007-07-27 Thread [EMAIL PROTECTED]
Hey Omar, Check this out: http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html Cheers... Chris Omar Fouad wrote: How can i make flash in a browser to show up in full screen like the youtube videos and here ?? thanks

Re: [Flashcoders] Flash Certification

2007-07-27 Thread [EMAIL PROTECTED]
not, likely you will know exactly what you need to study up on to pass it with flying colors the second time around.\u003cbr /\>\u003cbr /\>i hope this helps. please post back about your experience after you take the exam.\u003cbr /\>\u003cbr /\> and anyone else who has taken the

Re: [Flashcoders] Flash Certification

2007-07-27 Thread [EMAIL PROTECTED]
out your experience after you take the exam. and anyone else who has taken the exam. please post your impressions too. best of luck! Carl Welch <[EMAIL PROTECTED]> wrote: Hi flashcoders, I am looking into becoming Flash Certified. Does anyone know about how to prepare for taking the e

Re: [Flashcoders] Short syntax for accessing nested display objects? (AS3)

2007-10-21 Thread [EMAIL PROTECTED]
hi alistair, you are confusing variable names with instance names. they're not the same thing. when you do this: var cont1:Sprite = new Sprite(); cont.addChild(cont1); you are not naming the sprite "cont1", you are simply assigning the variable cont1 a reference to the new Sprite. so you

Re: [Flashcoders] Short syntax for accessing nested display objects? (AS3)

2007-10-23 Thread [EMAIL PROTECTED]
sending again because my first post didn't seem to get through. sorry if this is a double post... -- hi alistair, you are confusing variable names with instance names. they're not the same thing. when you do this: var cont1:Sprite = new Sprite(); cont.addChild(cont1); you a

[Flashcoders] digest

2007-10-23 Thread [EMAIL PROTECTED]
digest ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] load flex swf into flash CS3 project

2007-12-19 Thread [EMAIL PROTECTED]
Hello- I need to load a compiled AS3 based Flex 3 swf (a simple form with data validation) into an AS3 based Flash project I'm working on in CS3. I tried importing the .swf into the library pre-compile as well as loading it at runtime and nothing shows up. Can this be done? Any ideas?

Re: [Flashcoders] is there a way of detecting whether or not the mouse is in a movie at all?

2008-02-09 Thread [EMAIL PROTECTED]
xmouse and ymouse while mouse is down, versus when its not). Another thing you can do is look at how long the mouse hasnt moved. greetz JC On Feb 8, 2008 1:40 PM, Allandt Bik-Elliott (Receptacle) < [EMAIL PROTECTED]> wrote: hi guys just a quickie i've got an expandable flash banner t

Re: [Flashcoders] a little OT (maybe): Flash in Firefox

2005-10-27 Thread [EMAIL PROTECTED]
maybe this is obvious but you ARE running it through a webserver, right? not just opening the file from your harddrive... /andreas f a r i d|s i l v a|a b o i d wrote: I think that your server does not have php support. Check it with your hosting provider -- SalU2 f a r i d | s i l v a | a b

Re: [Flashcoders] lightbulb motion

2005-11-03 Thread [EMAIL PROTECTED]
http://www.thesundancekid.net/code/pendel/index.html http://www.thesundancekid.net/code/cloth/index.html fps is set too low (for some reason i can't remember now) which is why the movement looks a bit jerky. unfortunately i don't have the fla:s here in london but i built the code around a whi

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread [EMAIL PROTECTED]
a fast fadeOut, starting by the volume level where it is. How can I obtain this? Enrico Tomaselli +> web designer <+ [EMAIL PROTECTED] http://www.metatad.it ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chatty

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread [EMAIL PROTECTED]
of things - linear is probably not the best way to go. e.dolecki On Nov 7, 2005, at 5:21 AM, [EMAIL PROTECTED] wrote: If you want to keep things simple, and the volume fade doesn't need to be linear, couldn't you just run a soundUpdate function and keep track of the volume in a varia

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread [EMAIL PROTECTED]
audio fading up or down should probably not be done linearly ever - while mathematically accurate, to the human ear it doesn't sound right. You'll notice no change and then zm... a really quick fade down... when what you wanted was something "even" if you know what I mean.

Re: [Flashcoders] Fairy dust

2005-11-08 Thread [EMAIL PROTECTED]
http://www.thesundancekid.net/code/particles/ http://www.thesundancekid.net/code/particles2/ Basically it's a class I did. It's not exactly fairy dust but the first one ("underwater" as I call it in the code) could probably be reversed to look like fairy dust. In my code, for the "water" I u

[Flashcoders] gotoAndStop(".."); then accessing a movieclip.

2005-11-08 Thread [EMAIL PROTECTED]
Let's say you have a MC with 2 frame labels ("localPlayer" and "remotePlayer" for example) and then you have different movie clips inside that MC. Something like this: |local|remote___ ammo |x| life | |x money | |x Then you want

Re: [Flashcoders] gotoAndStop(".."); then accessing a movieclip.

2005-11-08 Thread [EMAIL PROTECTED]
any asset that needs to be updated/set X frames deep into a timeline. Joseph Balderson Interactive Media Design & Development http://www.joeflash.ca Faculty Member, Flash Development, Humber College School of Media Studies http://mediastudies.humber.ca

Re: [Flashcoders] gotoAndStop(".."); then accessing a movieclip.

2005-11-08 Thread [EMAIL PROTECTED]
field reference it when needed since it doesn't persist. In the MC declare the var: var money:String; Then set the dynamic text field's var to money To make the change: MC.money = "$100"; MC.gotoAndStop("remote"); JOR [EMAIL PROTECTED] wrote: Let's say you hav

Re: [Flashcoders] [ANN] FlashDevelop 2.0 beta5

2005-11-08 Thread [EMAIL PROTECTED]
wow, nice editor. never seen it before. code completition is sweet and the editor is only 1.5 Mb's big. Philippe wrote: FlashDevelop 2.0 is a highly customizable script editor providing: - advanced ActionScript 2 completion without any project configuration, - Flash 8 and Flash MX2004 compati

Re: [Flashcoders] [ANN] FlashDevelop 2.0 beta5

2005-11-08 Thread [EMAIL PROTECTED]
yeah. after writing that i did find a couple of bugs so i might not make the switch just yet. :) eric dolecki wrote: Its a decent start :) ed On 11/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: wow, nice editor. never seen it before. code completition is sweet and the editor i

Re: [Flashcoders] Ho to hide flash layer in Mozilla?

2005-11-15 Thread [EMAIL PROTECTED]
i guess you could try moving it to -1000px or something like that. might be a work around at least.. Gregory_GOusable wrote: Hello Flashcoders, I have a DIV layer (named 'my_layer') which is over HTML page. Then I want to hide it using Js call as getURL("javascript:hideLayer();");

Re: [Flashcoders] tracing every 10% of loading files

2005-11-17 Thread [EMAIL PROTECTED]
ge = Math.floor(percentage/10); } Not the nicest solution but at least it works. /Andreas Adrian Lynch wrote: How about... if ( percentage % 10 == 0 ) { trace("Another 10% loaded"); } Ade -Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ma

Re: [Flashcoders] _x and _y repositioning for child, child, child mc (Flash MX 6.0)

2005-11-24 Thread [EMAIL PROTECTED]
I usually use something like this: function getY(mc:MovieClip):Number { var y:Number = mc._y; if (mc._parent != undefined) y += this.getY(mc._parent); return y; } but of course that takes it all the way back to _root. shouldn't be too hard to check against another movie clip inste

Re: [Flashcoders] Swfs embedded in an email

2005-11-24 Thread [EMAIL PROTECTED]
include a gif in the e-mail. design it right and perhaps you can get a few more clicks than from a regular text link. andreas Danny Kodicek wrote: Bad idea whichever way you look at it. Flash on PC = ActiveX = disabled by default, and there aint nuthin you can do about it. Thought so, b

Re: [Flashcoders] water ripple

2005-11-29 Thread [EMAIL PROTECTED]
> http://andreas.rayon.no/temp/watery.html > > Totally useless. Performance is a big ish. > > - Andreas hmmm? http://www.thesundancekid.net/code/water/ anyway. not really what eric was looking for. Andreas Rønning wrote: ___ Flashcoders mailing lis

R: [Flashcoders] iRiver U10

2005-12-03 Thread [EMAIL PROTECTED]
Hi Eric, join and ask this to FlashLite Yahoo list. iRiver U10 has the FalshLite player embedded :) Have also a read on Macromedia Dev Net section; there is an article by Johnathan Duran. regards marco casario http://casario.blogs.com Messaggio originale Da: [EMAIL PROTECTED] Data

[Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread [EMAIL PROTECTED]
Hello everybody, i use tween of laco [laco.wz.cz] with delay on some instances. i want to delete a delay and the tween to on previous instance when i use a tween on other instance, but i don't manage it. can anybody help me ? thank Ps : i'm French, so sorry for my english ___

Re: [Flashcoders] ****************** Unicode Input ***************************

2005-12-15 Thread [EMAIL PROTECTED]
nice ascii work on the subject! Devendran I wrote: Hi all, We can Display Unicode Characters in dynamic and Input text field. Is it possible to get unicodeInput in a input text? Consider this. You are having One input text box. By selecting a language, your Key press should be displa

Re: [Flashcoders] Sandy 0.2, a 3D API for Flash

2006-01-26 Thread [EMAIL PROTECTED]
no examples anywhere? franto wrote: I'm interested for sure, working on Virtual world engine called FlashLIfe in AS3, but have no much free time, it wll be open source as well... Franto On 1/26/06, Paul Neave <[EMAIL PROTECTED]> wrote: I'd like to announce Sandy 0.2 on behal

Re: [Flashcoders] Sandy 0.2, a 3D API for Flash

2006-01-27 Thread [EMAIL PROTECTED]
l probably have to wait until the AS3 version to become truly useful. I'll add a cubic panorama example to the tutorials in the next few days just to demonstrate the technique. On 1/26/06, Paul Neave <[EMAIL PROTECTED]> wrote: Those examples are quite old... release 0.2 has just

[Flashcoders] wait or sleep

2006-03-21 Thread [EMAIL PROTECTED]
Hello, is possible to make a "wait" or "sleep" (like java) to stop a code execution and after n seconds return to execute? I want to do this: mclip.loadMovie(); wait(); mclip.onLoad() { continue(); } Somebody can help me? Rodrigo Schramm __

Re: [Flashcoders] wait or sleep

2006-03-21 Thread [EMAIL PROTECTED]
Using setInterval, I can only call a method (or funciton) same time later. I can't continue to run from the same point, at same function. Exist another solution for this? Schramm Danny Kodicek wrote: Hello, is possible to make a "wait" or "sleep" (like java) to stop a code execution and afte

Re: [Flashcoders] wait or sleep

2006-03-21 Thread [EMAIL PROTECTED]
If you are inside a loop, and need to wait you have a big problem! I would like a semaphore for syncronization. :-\ The Adobe/Macromedia must put this on Flash. (AS) :'( . Danny, thanks for you help! ;-) Rodrigo Schramm Danny Kodicek wrote: Using setInterval, I can only call a method

Re: [Flashcoders] wait or sleep

2006-03-21 Thread [EMAIL PROTECTED]
create some sort of load handler 31. this.myClip.onLoad(){ 32. // resume the load manager to load the next item 33. this._parent.loadManager.resume(); 34. } 35. } -Original Message- From: [EMAIL PROTECTED] on behalf of iashido Sent: Tue 3/21/2006 7:16 AM

Re: [Flashcoders] Why is my setInterval only firing once ...

2006-03-22 Thread [EMAIL PROTECTED]
nInterval = setInterval(tweenClip, 50); should be: nInterval = setInterval("tweenClip", 50); Stephen Ford wrote: I have a setInterval call that is only firing once. Here is the part of my class where it's occuring:

Re: [Flashcoders] Re: Why is my setInterval only firing once ...

2006-03-22 Thread [EMAIL PROTECTED]
sorry, i thought the problem was you using: tweenClip() which would execute it straight away.. A.Cicak wrote: how it fired even once in that case?! <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] nInterval = setInterval(tweenClip, 50); should be: nInterval = setIn

[Flashcoders] CSS with TextArea

2006-03-22 Thread [EMAIL PROTECTED]
Hi, I want to apply a CCS on on text in a textArea. I try: textStyle= new TextField.StyleSheet(); textStyle.load("style.css"); textArea.setStyle(_style); but, this don't work! I want to set a textArea. but, I get StyleSheet from TextField I think this is the problem... Somebody can help

[Flashcoders] (no subject)

2006-04-13 Thread [EMAIL PROTECTED]
esume and link to online portfolio to: [EMAIL PROTECTED] Please, no phone calls - we will ping you if you look like the right fit. Excemel learning solutions www.excemel.com Steve Hagwood founder | learning architect 704.650.8146 [EMAIL PROTECTED] Excemel learning solutions www.exceme

[Flashcoders] Expert Flash Developers

2006-05-05 Thread [EMAIL PROTECTED]
Dear Flash Developers, We would like to introduce ourselves as MAIASYS., with our headquarters is in Broad St, New York, working mainly in Flash based developments. Our Indian offices are situated in Pune (SPINFOCITY), and a small presence in Chandigarh. we are in look out for well experienced

[Flashcoders] binary data Flash !

2006-05-07 Thread [EMAIL PROTECTED]
Binary Data through XMLSocket : --- How we can send binary data through XMLSocket.I have been able to receive binary data but not been able to send binary data through XMLSocket i tried using Array but it automatically inserted commas between the elements of Array.Is th

  1   2   >