Re: [Flashcoders] AS2 Sound.stop()

2007-09-12 Thread Arul Prasad M L
. 'coz, as the error message states, there is no static method called 'stop' in the Sound class. You should've called stop() on ur Sound class object - my_sound. - my_sound.stop() -- Arul Prasad http://arulprasad.blogspot.com On 9/12/07, Andrew Sinning [EMAIL PROTECTED] wrote: I don't

Re: [Flashcoders] AS3 Sound = wtf

2007-09-12 Thread Arul Prasad M L
examples for sound APIs inside a design patterns book or a 'Making things move' book. ~Arul Prasad. On 9/12/07, Andreas Rønning [EMAIL PROTECTED] wrote: So i got my AS3 books finally. Essential AS3 by Moock, AS3 animation/making things move and AS3 design patterns. Of these 3, none give

Re: [Flashcoders] Help with listener for custom class (AS3)

2007-09-12 Thread Arul Prasad M L
should get you started. Btw, your 'fileImports' class doesnt seem to be a UI class, so you dont have to extend it from Sprite. Just extend EventDispatcher class. ~Arul Prasad. On 9/12/07, Dane Williams [EMAIL PROTECTED] wrote: Greetings All, I'm trying to do more and more of my projects

Re: [Flashcoders] dynamically attaching a movie clip to a class/object

2007-09-12 Thread Arul Prasad M L
You should be assigning the movieclip reference being returned from attachMovie to your myPost variable: myPost = _root.attachMovie(signPost, myPost, _root.getNextHighestDepth()); Without that, your myPost variable is gonna be pointing to nothing. ~Arul Prasad. On 9/12/07, Charles Parcell

Re: [Flashcoders] AS3 _url?

2007-09-04 Thread Arul Prasad M L
@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- Arul Prasad http

Re: [Flashcoders] Gaia - Anybody wanna share?

2007-08-14 Thread Arul Prasad M L
, Arul Prasad. On 8/14/07, Hans Wichman [EMAIL PROTECTED] wrote: Hi, why isnt it up anymore then? greetz JC On 8/14/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: You can pick it up here. HTH Hermit http://hermitscastle.com/flashStuff/ I understand why it isn't up

[Flashcoders] Gaia - Anybody wanna share?

2007-08-13 Thread Arul Prasad M L
I understand why it isn't up there anymore, so If someone else who downloaded this (during the brief period it was online) can pass it to me offlist, it would be great. Thanks, Arul Prasad. On 6/18/07, Steven Sacks [EMAIL PROTECTED] wrote: The Gaia Framework for Adobe Flash v1.0.3 Update

Re: [Flashcoders] Flash movie background color not showing in Firefox browser...

2007-07-22 Thread Arul Prasad M L
you dont have wmode set to transparent, do you? ~Arul Prasad. On 7/23/07, BOYD SPEER [EMAIL PROTECTED] wrote: Yes I did check the html and the color is correct there (#99)... but as a workaround I will add a layer to insure the movie appears the same in each browser. I am surprised

Re: [Flashcoders] Strange class scoping problem?

2007-07-10 Thread Arul Prasad M L
Hi Eric, try setTimeout( Delegate.create(myConduit, myConduit.getAutoCompleteMatches, 500, login_dialogBox_mc.entry_txt.text, user.zipcode, 6 ); instead. Should work. ~Arul Prasad On 7/10/07, eric e. dolecki [EMAIL PROTECTED] wrote: Have a scoping issue of some kind within a Class itself

Re: [Flashcoders] Coding suffixes and prefixes triggering code hinting

2007-07-02 Thread Arul Prasad M L
\Configuration\ActionsPanel\ActionScript_1_2 scroll down to the typeinfo nodes. -- Arul Prasad http://arulprasad.blogspot.com On 7/2/07, Adrian Parr [EMAIL PROTECTED] wrote: Hi All, I vaguely remember there being a way of modifying the in-built triggers for code hinting. For example, if you

Re: [Flashcoders] syntax checking in flex

2007-06-13 Thread Arul
compiler takes all the classes and adds them to .swc error highlighting will work with all the classes Regards, Arul - Original Message - From: Max Kaufmann [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, June 14, 2007 2:01 AM Subject: [Flashcoders] syntax

Re: [Flashcoders] E4X not for external XML docs?

2007-05-30 Thread Arul Prasad M L
. ~Arul Prasad. On 5/30/07, daniel [EMAIL PROTECTED] wrote: Hey everyone! I'm using an URLLoader to load a XML configuration file. I try to read the XML file using some E4X syntax ([EMAIL PROTECTED]), but I get nothing but an empty string when I trace it out. However when I do the same to a local

Re: [Flashcoders] wrapping excel in Flash?

2007-05-30 Thread Arul Prasad M L
Importing excel data - One thing you can do is, save your excel sheet as a .csv file, and then parse it in Actionscript. password security? If its a web app, you can provide some server level authentication etc. Its very much doable. -- Arul Prasad http://arulprasad.blogspot.com On 5/30/07

Re: [Flashcoders] Error 2152 when selecting Fullscreen Button on Flash CS3 AS3 FLVPlayback component

2007-05-29 Thread Arul Prasad M L
The flash player can go fullscreen only if the html tag for including the flash object sets a param to allow it to go fullscreen. In the publish settings window in html tab, you'll see a 'flash with full screen' html template. Use that template and publish ur html. That should help. ~Arul Prasad

Re: [Flashcoders] Hi List!

2007-05-25 Thread Arul Prasad M L
that the text does not have any html tags in it. ( please note - the code above isn't tested) Hope that helps, Arul Prasad http://arulprasad.blogspot.com On 5/25/07, Andy Andersson [EMAIL PROTECTED] wrote: I have a scenario that I try to figure out, don't know if it is possible yet, but maybe someone here

Re: [Flashcoders] how to write a class that loads XML?

2007-04-27 Thread Arul Prasad M L
(this, parseXML);; } } Hope that helps, -- Arul Prasad http://arulprasad.blogspot.com On 4/27/07, sebastian chedal [EMAIL PROTECTED] wrote: Hello Flash coders. :) Could anyone help me to fix my class code? I can't find any reference anywhere that will help me... I'm trying to load XML

Re: [Flashcoders] String to array

2007-04-12 Thread Arul Prasad M L
() { mm_array = mivariable.split(,); trace(mm_array); } Haven't tested that, but you'll get the basic idea. Hope that helps. -- Arul Prasad http://arulprasad.blogspot.com -- On 4/12/07

Re: [Flashcoders] Flash Over HTML

2007-03-27 Thread Arul Prasad M L
, but it would be nice to get it to go over the html fist. Can anyone spot where I am going wrong on this one?.. Many thanks in advance... Karim -- Arul Prasad http://arulprasad.blogspot.com ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Flash CS3 Announced

2007-03-27 Thread Arul Prasad M L
://forums.ultrashock.com/forums/showthread.php?s=8409f5626facf384bfbcffc778d176f7threadid=87843 So is this the next version of Flash, or is it just Flash 8 with AS3 support? It would seem odd to me if they released Flash 9 with out ever having a beta. Arul Prasad http://arulprasad.blogspot.com

Re: [Flashcoders] Re: attachMovie vs createClassObject

2007-03-26 Thread Arul Prasad M L
ComboBox work properly. Its bedtime for me ( its singapore standard time here!), (and thanks to the beer :P ), so I can't write any more. Hope all the above info helps you. regards, Arul Prasad. On 3/26/07, Andy Herrman [EMAIL PROTECTED] wrote: I think the root movie clip does extend UIObject

Re: [Flashcoders] empty textfield of type input and embedded font

2007-03-26 Thread Arul Prasad M L
MovieClip: -- Arul Prasad http://arulprasad.blogspot.com ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

Re: [Flashcoders] Flash chat and Smiley

2007-02-23 Thread Arul Prasad M L
*Jolan SmileyTextField v1.3 *http://flashcomponents.net/components/preview/preview.php?id=372 (http://flashcomponents.net/components/preview/preview.php?id=372) Its in AS1 though. Haven't seen anything better yet. I had to tweak it a lil to get it to work for FP 7+ ... -- Arul Prasad http

Re: [Flashcoders] FLV issue within IE7?

2007-02-19 Thread Arul Prasad M L
@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- Arul Prasad http

[Flashcoders] [OT] Intermediate level Actionscript developer needed at Singapore

2007-01-05 Thread Arul Prasad M L
job :) Interested candidates (local candidates, and others willing to relocate to Singapore), please forward your CVs to [EMAIL PROTECTED] . Regards, Arul Prasad. http://arulprasad.blogspot.com ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] AS 3 IDE linux info

2006-12-22 Thread Arul
Ubuntu?s default JRE doesn?t like Flex SDK http://renaun.com/blog/2006/12/06/164/ HTH, Arul - Original Message - From: Dustin Krysak [EMAIL PROTECTED] To: Flashcoders flashcoders@chattyfig.figleaf.com Sent: Friday, December 22, 2006 2:03 AM Subject: [Flashcoders] AS 3 IDE linux info

Re: [Flashcoders] timeline control of flv video?

2006-12-18 Thread Arul Prasad M L
looks like all you need is a FLVPlayback component. (in Flash8) or Media Playback component (in Flash MX 2004) Open up the components panel - Window menu components. And its right there. ~Arul Prasad. On 12/18/06, John DuQuette [EMAIL PROTECTED] wrote: Is it possible to dynamically load flv

Re: [Flashcoders] Allow smoothing on imported jpeg:s

2006-10-10 Thread Arul Prasad M L
There is no one line solution to this: Tinic Uro on the Flash player team had a way to do this using BitmapData class. Check this out: http://www.kaourantin.net/2005/12/dynamically-loading-bitmaps-with.html ~Arul Prasad. -- Forwarded message -- From: Johan Nyberg [EMAIL

Re: [Flashcoders] opening flex projects in flash?

2006-09-28 Thread Arul Prasad M L
flex compiler (mxmlc) has an option that would let you 'keep' the generated AS files. if thats what would interest you? check out the docs for keep-generated-actionscript ~Arul Prasad. On 9/28/06, til [EMAIL PROTECTED] wrote: Is it possible to convert Flex files into flash? I assume so

Re: [Flashcoders] generate gif from flash

2006-09-18 Thread Arul Prasad M L
for the PNG encoder - check out Tinic Uro's blog, he had implemented one.. btw, Thats in AS3... ~Arul Prasad. On 9/18/06, rishi [EMAIL PROTECTED] wrote: I want to make an animated gif from an swf at runtime. Any ideas most welcome. Also I have ben having hard times to implement PNG encoder

Re: [Flashcoders] Color

2006-09-18 Thread Arul Prasad M L
(this._name); my_color1.setRGB( this.defaultColor ); }; ~Arul Prasad On 9/18/06, Laurent CUCHET [EMAIL PROTECTED] wrote: Hello, I apply a color but I dont know how to suppress the tranform Have you got an idea ? Thank you al_mc.onRollOver = function() { _root.reg.text = Alsace; var

Re: [Flashcoders] extending built-in classes and scope

2006-09-17 Thread Arul Prasad M L
pair. ~Arul Prasad. On 9/17/06, dc [EMAIL PROTECTED] wrote: hi list - I am trying to add some functions to built in classes. Q1) Using the prototype syntax. Is this an AS1 method, is there a better way to do this with AS2? Q2) this works within my main movie script. however, when i try to use

Re: [Flashcoders] ListBox component, get Data (2nd Value)?!

2006-09-01 Thread Arul Prasad M L
element, you can access it as lista.sellectedItem.data[1] ~Arul Prasad. On 9/1/06, MJorge [EMAIL PROTECTED] wrote: Need a tiny help here folks, I have a listBox which i am inserting items with one label and two values of data in it. Like this: lista.addItem (categorias[n + 1], categorias[n + 0

Re: [Flashcoders] empty HTML

2006-08-30 Thread Arul Prasad M L
Use FileReference API instead, to activate download. ~Arul Prasad -- Forwarded message -- From: Laurent CUCHET [EMAIL PROTECTED] Date: Aug 30, 2006 3:02 PM Subject: [Flashcoders] empty HTML To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Hello When I put

Re: [Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-16 Thread Arul Prasad M L
just where you do a trace(myHtml) try tracing (this._targetMc.collectiveLinks); and see if it returns the full path to the txtfield. just in case that textfield isnt accesible in that path you've coded in ... ~Arul Prasad. On 8/16/06, dnk [EMAIL PROTECTED] wrote: I wanted to thank

Re: [Flashcoders] Can't access mc

2006-08-11 Thread Arul Prasad M L
declare theClip as a member of the class linker. like, private var theClip:MovieClip; Also, try to keep ur code out of the constructor. Write a onLoad function and put ur code in there. private function onLoad() { trace(theClip); } On 8/11/06, Mendelsohn, Michael [EMAIL PROTECTED] wrote: Hi

Re: [Flashcoders] Can't access mc

2006-08-11 Thread Arul Prasad M L
But, Arul, what is the advantage of putting it in an onLoad function instead of the constructor? Just to be on the safer side, thats all :) Try this: add a trace each in the constructor and the onLoad. And test your movie. You'll see that the constructor gets called even before onLoad. Now

Re: [Flashcoders] DK - destroying objects from a class using arraynotation

2006-08-10 Thread Arul Prasad M L
35; i++) { this._targetMc.slidemenu.destroyObject(theThumb + i); this._targetMc.slidemenu.destroyObject(theHit + i); } } Hope that helps! ~Arul Prasad http://arulprasad.blogspot.com On 8/10/06, dnk [EMAIL PROTECTED] wrote: Andy Stone wrote: Have you tried

Re: [Flashcoders] Help...cant unload the xml menu...!!

2006-08-01 Thread Arul Prasad M L
); urlString = urlString.concat(xml/menu.xml) menuInfoXML = urlString; If it works, you may want to refactor all the statements above and make the code optimal. ~Arul Prasad. I've just elaborated in soo many statements, just in case you dont understand. On 8/1/06, Jose Maria Barros [EMAIL

Re: [Flashcoders] Interactive Map Examples

2006-08-01 Thread Arul Prasad M L
Came across this one yesterday..http://www.backspace.com/mapapp/ ~Arul Prasad On 7/31/06, Matthew Ganz [EMAIL PROTECTED] wrote: hi. i'm looking for examples of interactive flash maps. i'm trying to see what else is out there as i build out my application...which will be a map of the US

Re: [Flashcoders] How to change reference?

2006-07-28 Thread Arul Prasad M L
_root.attachMovie(as,as,100); _root.something = _root.as.something; wont this provide u a reference at the root level ? ~Arul Prasad On 7/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote: Hi I attach clip with this code: _root.attachMovie(as,as,100); Is it possible to change reference

Re: [Flashcoders] Video project - advice

2006-07-28 Thread Arul Prasad M L
to the local files. The only issue with RTMP was that my office proxy server wasn't letting the flv stream through. Had to fiddle with it for a while. Otherwise its a pretty simple thing! Good luck. ~Arul Prasad On 7/28/06, Jason Ross [EMAIL PROTECTED] wrote: Hi - I have been asked to create

Re: [SPAM] RE: [Flashcoders] String Empowerment

2006-07-28 Thread Arul Prasad M L
Those convert the entire string, capitalize only uppercases the first character and then lowercases the rest of the characters. umm... Title Case as MS Word calls it... ~Arul Prasad On 7/28/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: Just a quick note on capitalize

Re: [Flashcoders] AS3 scripting, first try - some Q's

2006-07-27 Thread Arul Prasad M L
Y'see if I could work it out I wouldn't have posted would I? and u worked it out now! ~Arul Prasad On 7/27/06, Mike Mountain [EMAIL PROTECTED] wrote: for(var i=0; il; i++){ Not for(var i=0; i=l; i++){ M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

Re: [Flashcoders] Components in Flash 4/MX

2006-07-27 Thread Arul Prasad M L
flash MX - it was the age of AS1 Flash V1 components.. V1 component tutorials on the net should help u .. flash 4 ... umm... i dint even know Flash then :D On 7/27/06, Weyert de Boer [EMAIL PROTECTED] wrote: Does anyone know some good resources how to make components for Flash MX/4 ? Yours,

Re: [SPAM] RE: [Flashcoders] String Empowerment

2006-07-27 Thread Arul
) http://www.shockwave-india.com/blog/?archive=2002_11_01_archive.xml#83915217 Just a quick note on capitalize() String.toUpperCase() and String.toLowerCase() are part of ActionScript 1 since Flash 5 Regards, Arul Adobe Community Expert for Flash http://www.shockwave-india.com/blog

Re: [Flashcoders] as3 and attachmovie

2006-07-25 Thread Arul Prasad M L
Everything in AS3 is classes, so you can't do anything without using classes. not necessarily. You can use AS3 to code on the timeline as well. check out http://as3.betaruce.com/tut/appendix/app_1/app_1.html ~Arul Prasad. On 7/25/06, Meinte van't Kruis [EMAIL PROTECTED] wrote: Carl

Re: [Flashcoders] parsing XML / xpath

2006-07-10 Thread Arul
Hi, You may also try the light-weight alternative called 'XMLShortcuts' from http://www.shockwave-india.com/blog/?search=XMLShortcuts Now it is available for MTASC as well :) Regards, Arul - Original Message - From: eka [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders

[Flashcoders] Introducing ObjectStore

2006-07-10 Thread Arul
noncommercial and commercial use. more info to follow... Regards, Arul ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

Re: [Flashcoders] Problem creating Shared Objects

2006-07-03 Thread Arul Prasad M L
and reduced it to 0 KB. Hope that helps, Arul Prasad. On 7/3/06, Aasim Momin [EMAIL PROTECTED] wrote: Hi, I have a problem where Shared objects are not getting created on the client's machine. The Shared Objects works fine on my machine. Are there any known issues with any OS / Flash player

[Flashcoders] Flash 9 Alpha - Components Panel Disabled

2006-06-28 Thread Arul
Hi Guys, I just now installed the Flash 9 Alpha and noticed that the component panel is disabled. I could not make it work. Just wondering is it just for me or a common problem for all? Regards, Arul ___ Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] [Ann] The world's largest Flex Application

2006-06-22 Thread Arul Prasad M L
thanks Chris. ~Arul Prasad On 6/22/06, Chris Velevitch [EMAIL PROTECTED] wrote: FlexDaddy ( http://www.flexdaddy.info/2006/06/19/afr-access-one-of-the-largest-public-flex-apps-to-date/ ) ttalks about it. Unfortunately, no recording will be made. On 6/21/06, Arul Prasad M L [EMAIL PROTECTED

Re: [Flashcoders] [Ann] The world's largest Flex Application

2006-06-21 Thread Arul Prasad M L
sorry, if am being ignorant, but what is this world's largest Flex (1.5) application that you are talking about? Is there some place I can see this? Am not in sydney, so if you dont reply, I'll probably never know about it at all!! Thanks! Arul Prasad. On 6/21/06, Chris Velevitch [EMAIL

Re: [Flashcoders] For...in counts backwards?

2006-06-20 Thread Arul Prasad M L
to be in a predictable order, you will have to loop thru the indices of the array. If you can push them into the array in reverse order wont be a prob, try tat. But as I already said, for..in loop is supposed to return elements in an unpredictable order ;o) ~Arul Prasad. On 6/20/06, Mendelsohn, Michael

Re: [Flashcoders] Java's wait(timeout) and notify() in ActionScript

2006-06-16 Thread Arul Prasad M L
use mx.utils.Delegate class to solve the scope problem. simple! On 6/16/06, Michael Stuhr [EMAIL PROTECTED] wrote: Scott Hyndman schrieb: Yeah, sure. Use setInterval. If the user interacts before the time expires, call clearInterval. jupp, and beware of the scope. this can be deadly with

Re: [Flashcoders] width of a component in livePreview

2006-06-16 Thread Arul Prasad M L
if you are extending the V2 component architecture, dont use the _width and _height properties; use 'width' and 'height' instead. ~Arul Prasad On 6/16/06, John laPlante [EMAIL PROTECTED] wrote: I have a component that doesn't size properly in livePreview. When I reference the width

Re: [Flashcoders] zinc issues with AS2

2006-06-13 Thread Arul
Dear Andreas, Can you try _global.mdm.* instead? Regards, Arul - Original Message - From: Andreas R?nning [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, June 13, 2006 6:27 PM Subject: [Flashcoders] zinc issues with AS2 Whenever i

Fwd: [Flashcoders] XML load and Draw line problem

2006-06-12 Thread Arul Prasad M L
methods dint actually get what they expected, Numbers, I mean :) ~Arul Prasad. -- Forwarded message -- From: Sajid Saiyed [EMAIL PROTECTED] Date: Jun 12, 2006 3:30 PM Subject: Re: [Flashcoders] XML load and Draw line problem To: flashcoders@chattyfig.figleaf.com Hi, I figured out

Re: [Flashcoders] Player question

2006-06-12 Thread Arul Prasad M L
In general, what do people need in order to play swf on their desktop? In general, people create EXEs ;o) ~Arul Prasad On 6/12/06, 8ball Developer [EMAIL PROTECTED] wrote: Thanks, but: 1. I don't want to send and executable, 2. In general, what do people need in order to play swf

Re: [Flashcoders] OT: Have you been working with Flash all day?

2006-06-06 Thread Arul Prasad M L
:)) reminds me of the animations on http://www.xiaoxiaomovie.com/... ~Arul Prasad. On 6/6/06, Mendizabal [EMAIL PROTECTED] wrote: ah. I see. On 05/06/06, ::: curdiss [EMAIL PROTECTED] wrote: very cool.. i love it dude! On 6/5/06, Ramon Miguel M. Tayag [EMAIL PROTECTED] wrote: That's

Re: [Flashcoders] Flash drop down menu problem

2006-06-05 Thread Arul Prasad M L
=Flash%2C%20AS%20and%20Mehttp://weblogs.macromedia.com/mxna/index.cfm?query=byFeedfeedId=847feedName=Flash%252C%2520AS%2520and%2520Me ~Arul Prasad. On 6/5/06, Lee McColl-Sylvester [EMAIL PROTECTED] wrote: That won't work either. Flash ALWAYS stays on top. The only way round it is to do

Re: [Flashcoders] Flash drop down menu problem

2006-06-05 Thread Arul Prasad M L
http://arulprasad.googlepages.com/divOverFlash.rar That rar archive has a html which shows a SWF and clicking on the first circular button shows a DIV on top of the SWF. clickign the button below tat hides it. I confirmed it works on Flash player 7, 8, and 9. check it out. ~Arul Prasad. On 6

Re: [Flashcoders] by

2006-05-31 Thread Arul Prasad
bye dude, this list will miss u! hehe ~Arul Prasad. On 5/31/06, khodam khodesh [EMAIL PROTECTED] wrote: b - Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates starting at 1¢/min

Re: [Flashcoders] Getting the class name?

2006-05-25 Thread Arul Prasad
;-) ) ~Arul Prasad. On 5/25/06, mike cann [EMAIL PROTECTED] wrote: so you could do: var myClassName:String; var xx= new myClass(); if (xx instanceof myClass){myClassName=myClass;} else if (xx instanceof someOtherClass){myClassName=someOtherClass;} maybe? On 25/05/06, Arul Prasad [EMAIL

Re: [Flashcoders] OOP 101: Is import really necessary?

2006-05-25 Thread Arul Prasad
stopBtn:mx.controls.Button; var pauseBtn:mx.controls.Button; if you don't use an import. Please refer flash help for more details.. :) ~Arul Prasad On 5/25/06, Rifled Cloaca [EMAIL PROTECTED] wrote: Flashcoders, So this is one of those things I wonder about. If I type a var

Re: [Flashcoders] Overflowing dynamic text fields

2006-05-24 Thread Arul Prasad
Sajid, how about this: Keep adding text in parts into the textfield, and everytime check its scroll property. The moment value of scroll property changes, stop and put the rest into the next textfield. what say ? ~Arul Prasad. On 5/24/06, Sajid Saiyed [EMAIL PROTECTED] wrote: Hi

Re: [Flashcoders] Installing Flash 8 pro on a fresh OSX 10.4.6 crash on launch

2006-05-19 Thread Arul Prasad
try clearing off the Flash folder, in ur Users folder. I dont have a Mac right now, so forgot cant give u the exactpath. it should be somewhere in Users::library:Application data (?) :Macromeda:Flash:... as I said, I'm not very sure about the path, just check it out. ~Arul Prasad. On 5/19

Re: [Flashcoders] jpg in flash 7 and 8

2006-04-10 Thread Arul Prasad
Check out this: http://www.kaourantin.net/2005/12/dynamically-loading-bitmaps-with.html Now thats a info straight from the source, for Tinic is the one who implemented this feature :) ~Arul Prasad. On 4/10/06, Martin Weiser [EMAIL PROTECTED] wrote: thanks, and what with dynamically loaded

Re: [Flashcoders] Assigning actions to dynamic movieclips

2006-04-07 Thread Arul Prasad
i tried picking up the for loop from ur code and trying it out, and am am able to see the rollOver fn being triggered. Not sure why it isnt working for u. If your mcs are not getting attached at all, probably u have to check if ur _root.depth variable has been initialized. ~Arul Prasad. On 4/7

Re: [Flashcoders] looking for some .NET to Flash tools

2006-04-04 Thread Arul Prasad
://arulprasad.blogspot.com/2005_12_11_arulprasad_archive.html Cheers! Arul Prasad. On 4/3/06, Gavin Lilley [EMAIL PROTECTED] wrote: I do not fully understand what you mean by .net database? if this is an online project with a budget and php is an option then I recomend amfphp. or remoting for .net is good

Re: [Flashcoders] AS2 freelance work in London

2006-03-28 Thread Arul
FYI: - Original Message - From: Aaron Haines [EMAIL PROTECTED] To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Sent: Monday, March 27, 2006 10:07 PM Subject: [Flashcoders] AS2 freelance work in London Atticmedia requires a good Actionscript 2 developer for cutting

Re: [Flashcoders] Link and setTextfield with vars

2006-03-26 Thread Arul Prasad
; Check the documentation for setTextFormat for details. ~Arul Prasad On 3/27/06, Laurent CUCHET [EMAIL PROTECTED] wrote: Good morning, I need to get multiple link with a dynamic text There is 2 var : var1 and var2, 2 styles : style1 and style2 Why this syntax doesn't work, have you got

Re: [Flashcoders] writing a xml file directly from flash 8

2006-03-22 Thread Arul Prasad
Well, how would u create a CDATA node? I've once had a requirement to do that, but couldnt see any solutions... ~Arul Prasad On 3/22/06, Eskil Janson [EMAIL PROTECTED] wrote: Yes, If you have Flash, check XML.createTextNode() section of your Flash help (Actionscript classes) , else yes

Re: [Flashcoders] Flex demos

2006-03-21 Thread Arul Prasad
http://weblogs.macromedia.com/flex_samples/ On 3/21/06, Jim Kremens [EMAIL PROTECTED] wrote: Hi all, I'm trying to sell a client on Flex. I want to be able to show him some examples. I've seen this page: http://www.macromedia.com/cfusion/showcase/index.cfm

Re: [Flashcoders] While and Var

2006-03-21 Thread Arul Prasad
dt = 0; while (dt=99) { dtd = var+dt; spa = dt*5; spa1 = (dt*15)+45; _root.createTextField(dtd, dt, 0, spa1, 100, 15); _root[dtd].text=spa1; _root[dtd].border=true; _root[dtd].selectable=false; dt++; } ~Arul Prasad On 3/21/06, Laurent CUCHET [EMAIL PROTECTED] wrote: Good

Re: [Flashcoders] While and Var

2006-03-21 Thread Arul Prasad
of the string dtd. And it silently failed ( coz dtd was not strictly typed) You would've caught these kinda issues if you had used strict data typing :) ~Arul Prasad. On 3/21/06, Arul Prasad [EMAIL PROTECTED] wrote: var dtd; var spa; var spa1; var dt = 0; while (dt=99) { dtd = var+dt

Re: [Flashcoders] Stage.width and varying HTML size?

2006-03-16 Thread Arul Prasad
Use Stage.align = TL ; along with ur Stage.scaleMode= noScale; Should help. ~Arul Prasad On 3/16/06, Kevin Cannon [EMAIL PROTECTED] wrote: Hi, How does Stage.width relate to the size of the flash window set via HTML? I'm trying to create a simple slideshow movie that can take any size

Re: [Flashcoders] XML Node ID in Flash MX

2006-03-14 Thread Arul
You can use XML Shortcuts. See http://www.shockwave-india.com/blog/?archive=2005_07_10_archive.xml#112109983951386082 for more info Regards, Arul - Original Message - From: Sean Tamblyn [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 15, 2006 5:41 AM

Re: [Flashcoders] How can I display a tall document?

2006-02-27 Thread Arul Prasad
1. set Stage.scalemode=noScale'; 2. set textBox.autoSize= true and then textBox.width = num; This will make the textBox stretch heightwise, and fix the width to a particular value (num). 3. After you set the text to the textfield, pass that height to the javascript code in the container html

Re: [Flashcoders] Syntax formatting xml function

2006-02-10 Thread Arul
Hi Ben Smeets, Here it is http://shockwave-india.com/blog/actionscript2/?asfile=XMLHighlighter.as :) Regards, Arul - Original Message - From: Ben Smeets [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, February 10, 2006 9:15 PM Subject

Re: [Flashcoders] getURL and javascript not working in flash 8

2005-12-27 Thread Arul Prasad
Thats because of the new Security policies implemented in Flash Player 8. Check this article : http://www.macromedia.com/devnet/flash/articles/fplayer8_security_03.html ~Arul Prasad. On 12/27/05, Sumeet Kumar [EMAIL PROTECTED] wrote: Hi All I m using the getURL method to call a function