Re: [Flashcoders] Drawing a continuous curved line through n points in AS1 or AS2 (Catmull-Rom splines?)

2008-11-16 Thread Janis Radins
This also might be ready made solution to use: http://www.mediaverk.lv/asd/#polygon 2008/11/15 Ivan Dembicki [EMAIL PROTECTED] Hello matt, look at http://bezier.googlecode.com/files/ru.bezier.zip -- iv http://www.bezier.ru http://bezier.googlecode.com

Re: [Flashcoders] sharing a class with several movieclips, in AS3

2007-03-12 Thread Janis Radins
Create simgle clas definition which holds functionality of your selection state and add several instances of same class to stage 2007/3/11, Andrei Thomaz [EMAIL PROTECTED]: hello list, With AS2, I could associate the same class with several movieclips. This was useful, for example, to create

[Flashcoders] Some AS3 components troubles

2007-01-10 Thread Janis Radins
Hey people! I'm trying to make some pretty simple UI component in Flex and it seems like I'm missing something. I think I've read everything I could but I cannt find what is it I'm missing, maybe someone on this list knows wheres the problem. So what I am doing is: 1. I create some pretty simple

Re: [Flashcoders] Some AS3 components troubles

2007-01-10 Thread Janis Radins
of America Learning Organizational Effectiveness -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Janis Radins Sent: Wednesday, January 10, 2007 12:37 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Some AS3 components troubles Hey people

[Flashcoders] amfphp and postgres

2007-01-03 Thread Janis Radins
Hey ppl! I know this is a little of offtopic but still my problem is connected with Flash and AS. I'm trying to connect flash to data from postgres with amfphp and somehow it just doesnt work. Amfphp is returning results as expected but as soon as I try to pass data from postgres it just dies

Re: [Flashcoders] Point inside Rectangle ?

2006-12-21 Thread Janis Radins
Check whteher your point is iniside boundries by something like this: if(point.x rect.minX point.x rect.maxX point.y rect.minY point.Y rect.maxY) guess something like that should work. 2006/12/21, Oliver Müller [EMAIL PROTECTED]: Hi all, I'm looking for a mathematic way to check if a

[Flashcoders] Mark Anders source files from FOTB

2006-12-20 Thread Janis Radins
Hey ppl! I was wondering if anyone managed to find Mark Anders source files from FOTB. I've been googlin quite a lot and no result. During hes session about Flex components Mark did promised that he will make them avilable online. Hopefully he didnt lie! :) regards Jānis

Re: [Flashcoders] How to send Audio objects as MP3 via XML-RPC?

2006-11-29 Thread Janis Radins
Where are you getting your sound object from? 2006/11/29, Leo Burd [EMAIL PROTECTED]: Hello Robert, Thanks so much for your message! My problem is creating an MP3 file out of a Sound object, not the other way around... do you have any suggestions on how to do that? Best, Leo -

Re: [Flashcoders] How to send Audio objects as MP3 via XML-RPC?

2006-11-29 Thread Janis Radins
PROTECTED]: - From a microphone input... .L. - Original Message - From: Janis Radins [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 29, 2006 10:34 AM Subject: Re: [Flashcoders] How to send Audio objects as MP3 via XML-RPC? Where

Re: [Flashcoders] How to send Audio objects as MP3 via XML-RPC?

2006-11-29 Thread Janis Radins
btw, not long time ago i heard some person on efnet #actionscript complaning that FMS and red5 are saving FLV's encoded with sorensen which he claimed is unconvertable to any alternative format. 2006/11/29, Robert r. Sanders [EMAIL PROTECTED]: Ah, ok, that makes things clearer. First, look at

Re: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Janis Radins
That code is so retard, get moving away from flash 4 syntax, it's 2006 out there! Try this: line._y += 4; line.duplicateMovieClip(tope+t, t); t++; if(line._y 75) { stop(); } And frame loops are bad fasion btw. Use SomeMovieClip.onEnterFrame or setInterval() for timed loop. One more thing is

Re: [Flashcoders] Tween color of dynamic text

2006-11-22 Thread Janis Radins
or you could use something like this class of myne http://www.mediaverk.lv/asd/com/jR/Math/ColorTween.as to get all color steps and afterwards apply that color in timed loop. Like var colors:Array = com.jR.Math.ColorTween.getColorArray([StartColor, endColor], numberOfSteps); and applying that

Re: [Flashcoders] Tween color of dynamic text

2006-11-22 Thread Janis Radins
this: 4951245,6133970,7316439,8499164,9681633,10864358,12046827,13229552,14412021,15594746 from going from a blue to white: [0x4B8CCD,0xFF] ?? On 11/22/06, Janis Radins [EMAIL PROTECTED] wrote: or you could use something like this class of myne http://www.mediaverk.lv/asd/com/jR/Math/ColorTween.as to get all color steps and afterwards

Re: [Flashcoders] Tween color of dynamic text

2006-11-22 Thread Janis Radins
last value of output is the one before final value hence 0xFF isnt included wrote this calss for quite a while ago and really dont even remember was this something intentional or I just forghot about final value anyways thats bug only if you're not aware of it 2006/11/22, Martin

Re: [Flashcoders] Tween color of dynamic text

2006-11-22 Thread Janis Radins
using setRGB, so I did this: var decToHex = 0x + toWhite[nWhiteCount].toString(16).toUpperCase(); which is basically working instead of tweaking and setting text formats On 11/22/06, Janis Radins [EMAIL PROTECTED] wrote: those values are decimal representation of hex color values you can

Re: [Flashcoders] Dynamic Pie Chart

2006-11-22 Thread Janis Radins
seee www.mediaverk.lv/asd thats not ready made solution but it sure provides all API needed to implement it 2006/11/22, eric dolecki [EMAIL PROTECTED]: Q: Has anyone seen a dynamic pie chart component that allows one to add slices with code, remove them with code, and also allows one to click

Re: [Flashcoders] Remoting bytesLoaded/bytesTotal

2006-11-15 Thread Janis Radins
a file or wherever you do on the server side? You can show a indeterminate progress bar. When result come back remove It. On 11/13/06, Yehia Shouman [EMAIL PROTECTED] wrote: If there's a way for the server people to add a content header with content length, it might work On 11/13/06, Janis

[Flashcoders] Remoting blank requests

2006-11-14 Thread Janis Radins
Hey! I'm in a process of exploring why my remoting data feeds get slow somtimes. Therefore i installed Service Capture and started to look what it does and found out that there are blank requests before real request with proper data. I believe this might confuse my app, since any data request

Re: [Flashcoders] Remoting blank requests

2006-11-14 Thread Janis Radins
. regards, Muzak - Original Message - From: Janis Radins [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, November 14, 2006 12:29 PM Subject: [Flashcoders] Remoting blank requests Hey! I'm in a process of exploring why my remoting data

[Flashcoders] Remoting bytesLoaded/bytesTotal

2006-11-13 Thread Janis Radins
hye ppl! I'm in a situation that remoting calls get slow at some point for users with slow connection, hence client asked for loading progress display. As far as i know there is no sutch thing as bytesLoaded /total for remoting calls, I just serched help docs and that only confirmed that. I

Re: [Flashcoders] frustrated with textFields: getting height while textisn't fully 'there'

2006-11-13 Thread Janis Radins
this is old bug of flash in flash8 it's not that present tho i guess I've seen it few times anyways, simple touching that property before actual use helps. as simpel as trace(txt._height) make textfield report correct value 2006/11/13, Muzak [EMAIL PROTECTED]: Create a second textfield

Re: [Flashcoders] Writing code for big teams

2006-11-08 Thread Janis Radins
just force them to execute some registration code on first frame of theyr movie and pass instance which will accept all those calls according to predefined communication interface 2006/11/8, Ricardo Sánchez [EMAIL PROTECTED]: Hi! Where I work we are about to begin a pretty big project

Re: [Flashcoders] access to drawing API information via ActionScript

2006-11-07 Thread Janis Radins
No you cannt access curve data throught AS. Only thing thats possible would be to save all drawing activity in memory for later reproduction. That wouldnt be that hard actually. 2006/11/7, Ben [EMAIL PROTECTED]: Hi Flashcoders is it possible to write ActionScript code to gain access to

Re: [Flashcoders] wmode=transparent and buttons behavior woes

2006-11-01 Thread Janis Radins
or: http://www.gskinner.com/blog/archives/54.html Jason Merrill Bank of America Learning Organization Effectiveness - Technology Solutions -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Janis Radins Sent: Tuesday, October 31

[Flashcoders] wmode=transparent and buttons behavior woes

2006-10-31 Thread Janis Radins
Somehow when i set wmode=transparent to flash object all buttons start to behave in some strange way, calling onRollOver/onRollOut on wrong moments. Anyone knows what exactly is going on and why, or how to prevent this? I've noticed this long time ago. Janis

Re: [Flashcoders] Some whining about AS2 interfaces

2006-10-23 Thread Janis Radins
Interfce main purpose is to define communication methods for some kind of object. Pls be so kind and tell me what in a hell private properties have to do with external objects which what to communicate with instance implementing particular interface? Static mighe be usefull, but then again,

Re: [Flashcoders] Inheritance and contructor issue

2006-10-23 Thread Janis Radins
that is not what is happening here. try this: class TestClass1 { public function TestClass1() { trace(TestClass1 TestClass1 TestClass1 ); } } class TestClass2 extends TestClass1 { private static var instance:TestClass2 = null; public static function get smething():TestClass2 {

Re: [Flashcoders] newbie question - drawing a ring

2006-10-20 Thread Janis Radins
check out www.mediaverk.lv/asd it might give you just what you need 2006/10/20, Guntur N. Sarwohadi [EMAIL PROTECTED]: Hello David, You can use flash drawing API. You might use just 2 drawing methods: moveTo(x,y) moves a pointer from where you want to start drawing from and curveTo(cpx,

Re: [Flashcoders] Javascript Zoom To Location

2006-10-15 Thread Janis Radins
I'm not realy sure I understand what exactly you are up to, but if youre interesting in zooming specifics maybe one of my lil experiments migth help you. I made this just for fun a while ago, take a look and maybe it can help you: http://www.mediaverk.lv/trash/zoom.html

Re: [Flashcoders] hello, and interval management question

2006-10-15 Thread Janis Radins
yes you can pass that interval ID you can do something like this: var intContainer:Object = new Object(); intContainer.interval = setInterval(someFun, 50, intContainer); in this case intContainer will be to first argument of that functon and you'll be able to refference it anytime as

Re: [Flashcoders] reseting ASSetPropFlags back to default

2006-10-12 Thread Janis Radins
. greetz JC On 10/11/06, Janis Radins [EMAIL PROTECTED] wrote: Hey ppl! I have made some pretty nice printR function ( www.mediaverk.lv/asd/com/jR/Utils.as) it's working pretty well and i'm thinking of new features. One good feature would be to use ASSetPropFlags in order to show private

[Flashcoders] reseting ASSetPropFlags back to default

2006-10-11 Thread Janis Radins
Hey ppl! I have made some pretty nice printR function ( www.mediaverk.lv/asd/com/jR/Utils.as) it's working pretty well and i'm thinking of new features. One good feature would be to use ASSetPropFlags in order to show private properties and that could be done relatively easy. Thought the problem

Re: [Flashcoders] masking a clip which uses the drawing api

2006-09-18 Thread Janis Radins
Masking with elements made up by drawing API works 100%, ive done it many times. What is it that doesnt work for you? 2006/9/15, Merrill, Jason [EMAIL PROTECTED]: Is it not possible to mask a clip into which you draw things using the drawing API? I'm not totally sure about masking, but in

Re: [Flashcoders] need help in drawing arrow

2006-08-11 Thread Janis Radins
You could do that witht those classe www.mediaverk.lv/asd Arrow would be a laine or thin rectangle with triangle on begining or end 2006/8/11, Ravi Marella [EMAIL PROTECTED]: Really sorry:( The code is intended for drawing elliptical orbits not arrows...sorry again :( :( best regards

Re: [Flashcoders] strong typing, attachMovie

2006-08-01 Thread Janis Radins
that is because attachMovie returns MovieClip. First of all dont forghet to extend MovieClip in those classes. A simple workaround would be: var myPlayer:player = player (myWorld.attachMovie(playerID, playerMC, 10,{_y:220})); 2006/8/1, Martin Weiser [EMAIL PROTECTED]: Hello, i got little

Re: RE: [Flashcoders] Problems getting the brightness of a colorreturnedfrom getPixel

2006-07-31 Thread Janis Radins
Brightness of color can be found in quite easy way. If we have decimal representation of RGB brightness in percents will be 100*(((R+G+B)/3)/255) Color brightness represents position of particular color in color tween from 0xFF at 0 position The base color at position 127.5 and 0x0 at 255.

[Flashcoders] Getting FLV file size server-side

2006-06-28 Thread Janis Radins
Hello people! I'm trying ot get size of FLV file server-side using php, searched list archive and web but found no results. I know that this data should be somewhere in first bytes of file does anyone know where exactly? tnx in advance ___

Re: [Flashcoders] Conditional Import Statements

2006-06-05 Thread Janis Radins
no there is no way improts are executed at compile time all you can do is to define which class to use depending on player version 2006/6/5, Christian [EMAIL PROTECTED]: Hey Guys, So i'm in the process of writing a class that does a lot of JavaScript handling. The tricky part is, I want to

Re: [Flashcoders] Q: creating oval mask with 4 bezier points

2006-06-01 Thread Janis Radins
Meybe this http://www.mediaverk.lv/asd/#ellipse can help you. 2006/6/1, mike cann [EMAIL PROTECTED]: Hi, There are probably better examples if you googled around a while but I found these usefull: http://www.nuran.org/ (Click closed spline on the right hand side)

Re: [Flashcoders] static variable in class to keep an array of members

2006-04-07 Thread Janis Radins
that is exacly how I am doing this and i dont see any reason why you shouldnt be doing same ;) comeClass { private static var instances:Array = null; public function comeClass(){ if(instances == null){ instances = new Array(); } instances.push(this) } } 2006/4/6, Manuel Saint-Victor [EMAIL

Re: [Flashcoders] Variable containing a String instance crash Flash 8 on [List Variables]

2006-04-04 Thread Janis Radins
new String instance is created by simple var myString:String = new String() with no arguments. though this might be quite a bug, once i tried new Object(a) that leaded to total crash of flash ide that finished not only with restrating flash but i had to reinstall it. 2006/4/4, Fumio Nonaka

Re: [Flashcoders] How soon do Flashvars become available ?

2006-03-22 Thread Janis Radins
flashVars are loaded before first frame, get vars start to in first frame 2006/3/22, Robert Chyko [EMAIL PROTECTED]: You can use them right away. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Manuel Saint-Victor Sent: Wednesday, March 22, 2006

Re: [Flashcoders] While and Var

2006-03-21 Thread Janis Radins
createTextField() returns refference to textfield object only since flash 8 2006/3/21, Arul Prasad [EMAIL PROTECTED]: var dtd; var spa; var spa1; var dt = 0; while (dt=99) { dtd = var+dt; spa = dt*5; spa1 = (dt*15)+45; _root.createTextField(dtd, dt, 0, spa1, 100, 15);

Re: [Flashcoders] CSS with input text

2006-03-20 Thread Janis Radins
use textField.setNewTextFormat() 2006/3/20, Danny Kodicek [EMAIL PROTECTED]: I've got a textField I'm trying to use for input text and I'd like to be able to style it. Unfortunately, the htmlText is being automatically set to this: TEXTFORMAT LEADING=2P ALIGN=LEFTFONT FACE=Arial SIZE=12

Re: [Flashcoders] Windows IE Cache Problem

2006-03-15 Thread Janis Radins
guess the very default routine to deal with cache should do smthn.loadImage(webCamImg.jpg?dummy=+new Date()*1) 2006/3/15, Bo Parker [EMAIL PROTECTED]: I have a client that has webcams that are sending images via ftp to a folder every 15 seconds to a static link and overwriting the previous

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

2006-03-15 Thread Janis Radins
Guess this should do: public static function cloneObject(object:Object):Object { var __return:Object = new Object(); for(var i:String in object){ __return[i] = object[i]; } return __return; } 2006/3/15, Merrill, Jason [EMAIL PROTECTED]: If done it

Re: [Flashcoders] storing embedded font data in local shared objects(LSOs)?

2006-03-14 Thread Janis Radins
I'm a fraid that is impossible 2006/3/12, Ken Fine [EMAIL PROTECTED]: Hi all, Can anyone tell me if there's a manageable way to embed font data in an LSO (Flash local shared object) such that it can be stored on the user's machine and used by a movie? Or, perhaps someone can

Re: [Flashcoders] Loading several images with one progressbar?

2006-03-14 Thread Janis Radins
just read file size on server-side and pass it along image urls 2006/3/12, Sascha Balkau [EMAIL PROTECTED]: Hi Adrian, thanks for the idea but this approach will not work in my case because the images are loaded sequencially. If one image is finished loading, my class starts loading the

Re: [Flashcoders] Get the average of 2 colors

2006-03-10 Thread Janis Radins
Get my ColorTween class at www.mediaverk.lv/asd/com/jR/Math/ColorTween.as Then do the simple thing: import com.jR.Math.ColorTween; var midColor:Number = new ColorTween([0xFF, 0xFF]).getPoint(255/2); trace(0x+midColor.toString(16)) 2006/3/10, Joakim Carlgren [EMAIL PROTECTED]: Whats the

Re: [Flashcoders] edit multiple colors in txtField

2006-03-10 Thread Janis Radins
just use setTextFormat(startIndex, endIndex, _fmt), it will produce html code that can be extracted from htmlText 2006/3/10, Flash guru [EMAIL PROTECTED]: Have you thought of using css to do your formatting. ___ Flashcoders@chattyfig.figleaf.com To

Re: [Flashcoders] Get the average of 2 colors

2006-03-10 Thread Janis Radins
you're wellcome 2006/3/10, Joakim Carlgren [EMAIL PROTECTED]: Thanks Janis...works great. Will take a closer look later. Kindly Joakim Carlgren -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Janis Radins Sent: den 10 mars 2006 15:17

Re: [Flashcoders] Flash Web Browser Component

2006-03-09 Thread Janis Radins
get real, Flash HTML tag support is way too weak to display any even most simple one web page 2006/3/8, Johannes Boyne [EMAIL PROTECTED]: But do you really want ActiveX in your Flash?! I think, it isn't in a SandBox like Flash or Java, so it is dangerous, right? And there, from my point of

Re: [Flashcoders] Robust Drawing Classes?

2006-03-09 Thread Janis Radins
Finally I have my drawing classes ready. They might need some minor modifications but in general they are doing what I was planning. You can get em at www.mediaverk.lv/asd Everyone is wellcome to share ideas on what could be improved. 2006/2/22, Peter O'Brien [EMAIL PROTECTED]: I can't testify

Re: [Flashcoders] Strange var assignment issues

2006-03-03 Thread Janis Radins
you should better use var word_mc:MovieClip = clip_to_copy.duplicateMovieClip(clipid + i, i) tho that shouldnt 2006/3/3, Danny Kodicek [EMAIL PROTECTED]: BUT if I change the line 'var word_mc:MovieClip' to just 'var word_mc', ie remove the type definition It works, so why if I define the

Re: [Flashcoders] Clone Array of Type Object

2006-03-03 Thread Janis Radins
array clone is done quite easy. see this: var old_array:Array = new Array(1, 2, 3, 4); var new_array:Array = old_array.concat(); new_array.shift(); trace(old_array+ : +new_array); 2006/3/3, eric dolecki [EMAIL PROTECTED]: I agree with Michael... import mx.utils.ObjectCopy; obj = new

Re: [Flashcoders] Clone Array of Type Object

2006-03-03 Thread Janis Radins
sorry for duplicating, didnt noticed Ryan allready told same thing for other Array prototype that does the same 2006/3/3, eric dolecki [EMAIL PROTECTED]: Here is the trace for your code BTW: 1,2,3,4 : 2,3,4 On 3/3/06, Janis Radins [EMAIL PROTECTED] wrote: array clone is done quite

Re: [Flashcoders] Strange var assignment issues

2006-03-03 Thread Janis Radins
there are 2 duplicateMovieClip functions first one is global function second one is prototype of MovieClip class 2006/3/3, Danny Kodicek [EMAIL PROTECTED]: you should better use var word_mc:MovieClip = clip_to_copy.duplicateMovieClip(clipid + i, i) Does that work now? Last time I checked,

Re: [Flashcoders] rotate gradient fill

2006-02-24 Thread Janis Radins
it seems that matrix of form {a, b, c, d, e, f, g, h, i} is capable of doing this job i found matrix implementation that allows this kindof manipulations at http://www.flashadvisor.com/forum/viewtopic.php?t=380start=0 and seems that after transfering ti to AS2 and slight modifications it might

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

2006-02-23 Thread Janis Radins
I've done JS resize for www.pastkartes.lv and i thnk it works good and looks good too 2006/2/23, Josh McDonald [EMAIL PROTECTED]: I've got to say that the first link is much nicer than the resize the flash solution they've got here, so perhaps it's not so bad an idea. And the second link,

[Flashcoders] rotate gradient fill

2006-02-23 Thread Janis Radins
Hello people! Just noticed that beginGradientFill matrix r property doesn't have any effect on radial fills. That might be my mistake as well, though i tested it with MM sample code and still no luck. this.createEmptyMovieClip(gradient_mc, this.getNextHighestDepth()); with (gradient_mc) {

Re: [Flashcoders] Robust Drawing Classes?

2006-02-22 Thread Janis Radins
I'm pretty close to make it to version 1.0 of my drawing classes atm, untill that happens you can contact me offlist if youre interested in earlyer versions 2006/2/22, Luca Candela [EMAIL PROTECTED]: Hi, does anyone knows if there are nice a well built drawing classes (for free) to use in

Re: [Flashcoders] UML tool for AS2

2006-02-17 Thread Janis Radins
Tnx Scott! Looks very mutch like what I've been looking for. 2006/2/17, Scott Mathieson [EMAIL PROTECTED]: 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

Re: [Flashcoders] UML tool for AS2

2006-02-17 Thread Janis Radins
it claims that it can. tho i didnt found how :) 2006/2/17, Jim Kremens [EMAIL PROTECTED]: actionscript support straight of the box Can it do reverse engineering with Actionscript? Jim Kremens ___ Flashcoders@chattyfig.figleaf.com To change your

[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] Re: Q:Creating a full spectrum 'rainbow' Gradient

2006-01-23 Thread Janis Radins
I've made sutch class long time ago. MovieClip.beginGradientFill() does that. 2006/1/20, Andrew Widdowson [EMAIL PROTECTED]: Hi there, If you want a real rainbow gradient, consider translating the fortran code found at the following page, which contains a routine for approximating R/G/B

[Flashcoders] amfphp 1.0 slow?

2006-01-09 Thread Janis Radins
Hey ppl! I just lounched first project which runs on amfphp 1.0 and I've encountered a problem - when flash app is accessed on web it is getting extremely slow on data transfers. Simple call for few kb data takes 5-10 seconds. Otherwise everything is allright, and its very fast when lounched

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

2005-12-15 Thread Janis Radins
I guess it's as simple as using unicode font. Best of all use device fonts. 2005/12/16, Devendran I [EMAIL PROTECTED]: Any how Thank you guys.. I'll do it. If u Know any other Simple way to get Unicode input please let me know. Thanks, Regards, Devendran.I 8ball

Re: [Flashcoders] lil OOP question

2005-11-30 Thread Janis Radins
not getting? Dimitrios - Original Message - From: Janis Radins [EMAIL PROTECTED] To: Flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 30, 2005 3:24 PM Subject: [Flashcoders] lil OOP question hey ppl I'm wondering is there a way to chech wether some class function exists

Re: [Flashcoders] flash - css tooltip

2005-11-30 Thread Janis Radins
youre talking about CSS tooltip using browser propertys or tooltip created in flash envoirment? 2005/11/30, eric dolecki [EMAIL PROTECTED]: Im working on something where I would like to generate css tooltips out of above a flash container... does anyone have a working example or code of some

Re: [Flashcoders] Creating a button class entirely in 2.0 with no symbol association, possible?

2005-11-24 Thread Janis Radins
. var b = new myButton(); b._x = 200; -- won't work Janis Radins [EMAIL PROTECTED] wrote: I'm doing this all the time I've made tonns of different inputs fro diferent projects and finally I am planing to code some fullscale AS2 only UI collection. Thats done like this: class myButton

Re: [Flashcoders] Creating a button class entirely in 2.0 with no symbol association, possible?

2005-11-23 Thread Janis Radins
I'm doing this all the time I've made tonns of different inputs fro diferent projects and finally I am planing to code some fullscale AS2 only UI collection. Thats done like this: class myButton { private var mc:MovieClip; function myButton(host:MovieClip, level:Number){ mc=

Re: [Flashcoders] [Web usability - Fullscreen - CSS?] I know ... but customer wants it Mac/PC

2005-11-20 Thread Janis Radins
CSS works only inside browser window, you cannt have to fullscreen without resizing window to that size. So only option is to use JS window.open(... fullscreen=1 ...) Popup blockers can be tricked, btw 2005/11/20, af a [EMAIL PROTECTED]: Hello, First of all, thanks to

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

2005-11-15 Thread Janis Radins
document.all doesnt exist in w3c specifications there for FF doesnt know about it use document.getElementById instead, and it will work in both browsers 2005/11/15, [EMAIL PROTECTED] [EMAIL PROTECTED]: i guess you could try moving it to -1000px or something like that. might be a work around at

Re: [Flashcoders] Dynamic resizing of flash object throught JS calls

2005-11-14 Thread Janis Radins
I tried to resize DIV instead of OBJECT but still no luck 2005/11/14, John Giotta [EMAIL PROTECTED]: I've done this with a DIV tag wrapping the Flash Embed code. Simply change the css constraints on the DIV tag and make the width and height of the embed 100%.

[Flashcoders] Dynamic resizing of flash object throught JS calls

2005-11-11 Thread Janis Radins
Hey folks! I have here flash page which is ment to change it's size dynamcally through JS calls but somehow I cannt manage to get it bug free on anything else than FireFox. The idea is that I have flash movie with: [AS] Stage.scaleMode = noScale; Stage.align = TL; [/AS] initaly set to width and

Re: 网易邮箱自动回复: [Flashcoders] Dynamic res izing of flash object throught JS calls

2005-11-11 Thread Janis Radins
Does everyone received my post as bunch of '? ? 2005/11/10, [EMAIL PROTECTED] [EMAIL PROTECTED]: 您发给我的信件已经收到。 网易163邮箱--专业电子邮局,2000M超大空间,支持超大附件,全国唯一24小时客户服务。 欢迎您来注册使用。网易126邮箱:http://www.126.com ___