[Flashcoders] swfObject or not ? 5px more

2008-08-04 Thread laurent
Hi, When I use swfObject I have around 5px more at the bottom of my html page. You can see the difference from a page using swfObject and a normal one: http://dev.logiquefloue.org/fd/index_normal.php http://dev.logiquefloue.org/fd/index_swfo.php the last one got a scroll bar + few milimeter of

Re: [Flashcoders] swfObject or not ? 5px more

2008-08-04 Thread laurent
hm yes, because I did lots of tests, forget to turn it back to 100%. Even with 100% I got the white stripe: http://localhost/akrolab/frenchdandy/deploy/index_swfo.php L Glen Pike a écrit : Your SWFObject height is 101% laurent wrote: Hi, When I use swfObject I have around 5px more at

Re: [Flashcoders] swfObject or not ? 5px more

2008-08-04 Thread laurent
oops..the right link is: http://dev.logiquefloue.org/fd/index_swfo.php thx L laurent a écrit : hm yes, because I did lots of tests, forget to turn it back to 100%. Even with 100% I got the white stripe: http://localhost/akrolab/frenchdandy/deploy/index_swfo.php L Glen Pike a écrit

Re: [Flashcoders] swfObject or not ? 5px more

2008-08-04 Thread laurent
; margin-bottom: 0; padding: 0; background-color: #ff; } #flashcontent { width: 100%; height: 100%; backgroundColor:#ff } laurent wrote: oops..the right link is: http://dev.logiquefloue.org/fd/index_swfo.php thx L laurent a écrit : hm yes

[Flashcoders] masking with multiple mc

2008-09-15 Thread laurent
--~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Immediate Closure" group. To post to this group, send email to immediate-closure@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For m

[Flashcoders] extends MovieClip and static methods

2008-10-06 Thread laurent
Hi, Is it possible to have a class that extends MovieClip linked to a movie in the library and have statics methods and vars in it ?? L ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flash

[Flashcoders] extends MovieClip and static methods

2008-10-06 Thread laurent
Sorry I was not receiving mails when I send that: Hi, Is it possible to have a class that extends MovieClip linked to a movie in the library and have statics methods and vars in it ?? L if any answer can you repost ? thx :) L ___ Flashcoders maili

Re: [Flashcoders] extends MovieClip and static methods

2008-10-06 Thread laurent
client.frenchdandy:CaddyView. like one mc on stage is undefined. of course because it will be defined when the mc containing that class will be added to the main stage...so why is it checking now??!! thx L jonathan howe a écrit : Hi, Laurent, I don't see why not... if you're having tr

[Fwd: Re: [Flashcoders] extends MovieClip and static methods]

2008-10-06 Thread laurent
client.frenchdandy:CaddyView. like one mc on stage is undefined. of course because it will be defined when the mc containing that class will be added to the main stage...so why is it checking now??!! thx L jonathan howe a écrit : Hi, Laurent, I don't see why not... if you're having tr

[Flashcoders] test

2008-10-06 Thread laurent
sorry, here a present for testing if I receive your mails... http://vimeo.com/1831024 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] extends MovieClip and static methods

2008-10-06 Thread laurent
ave no idea if it's possible to do what I wanted. L laurent a écrit : Hi Jonathan, No the linking is good, I actually compile the fla containing that class with no problem. But when compiling my main that refer the the static method of that class it throw me errors about 1119: Access of po

Re: [Flashcoders] Re: masking w/o using bitmapCaching = true?

2008-10-09 Thread laurent
yes, you don't use bitmapCaching with animated movie. Catching must be done when nothing moves. You can try enabling and disabling BitmapCaching after and before animating it's content. L sebastian a écrit : Hello good folks, I was wondering if the silence to this email was an indication that

Re: [Flashcoders] streaming mp3s not consistent

2008-10-09 Thread laurent
If it's event sounds, it sounds you should download them all at first. L Allandt Bik-Elliott (Receptacle) a écrit : what would be the netstream method to do this please? On 6 Oct 2008, at 12:40, Allandt Bik-Elliott (Receptacle) wrote: hi guys i have a quick question regarding streaming mp3

[Flashcoders] linked class must extends MovieClip ???

2008-10-12 Thread laurent
Hi, What about having a 'Base' class extending MovieClip then myBase extending Base and link myBase to an asset from library. ... 5000: The class 'myBase' must subclass 'flash.display.MovieClip' since it is linked to a library symbol of that type. This is the error returned. How to have a

Re: [Flashcoders] linked class must extends MovieClip ???

2008-10-14 Thread laurent
jonathan howe a écrit : Hi, Laurent, Supposing you have a class mySubclass myBase should extend MovieClip and created before you set linkage for mySubclass In Linkage Properties for mySubclass: Class = full.package.path.to.mySubclass Base class = full.package.path.to.myBase Ha yes this Base

Re: [Flashcoders] URLStream, POST and requestHeaders

2008-10-19 Thread laurent
Hi Greetz, I'm was just using this URLRequestMethod.POST; today and whatever I change the method value it keep sending everything in GET mode. So I made my server side code looking in the GET variables I would love to know more about this behaviour too. cheers Laurent EECOLOR a

[Flashcoders] AS3 associativ array length=0

2008-10-27 Thread laurent
Hi, I use an array to store object with their name like that: views[ "viewName" ] = Object then views.length return 0 ... It's normal behaviour ?? length work only on numerical indexes ? L ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf

Re: [Flashcoders] AS3 associativ array length=0

2008-10-27 Thread laurent
] is referring to an attribute of an object not an element of an Array.. Do you really have to store values like that? Paul - Original Message - From: "laurent" <[EMAIL PROTECTED]> To: "Flash Coders List" Sent: Monday, October 27, 2008 1:35 PM Subject: [Flashcoders]

Re: [Flashcoders] AS3 associativ array length=0

2008-10-27 Thread laurent
ttribute of an object not an element of an Array.. Do you really have to store values like that? Paul - Original Message - From: "laurent" <[EMAIL PROTECTED]> To: "Flash Coders List" Sent: Monday, October 27, 2008 1:35 PM Subject: [Flashcoders] AS3 associativ ar

Re: [Flashcoders] AS3 associativ array length=0

2008-10-27 Thread laurent
ow, an array and a search method, thank you for sharing possibilities. L Paul ----- Original Message - From: "laurent" <[EMAIL PROTECTED]> To: "Flash Coders List" Sent: Monday, October 27, 2008 2:25 PM Subject: Re: [Flashcoders] AS3 associativ array length=0

Re: [Flashcoders] AS3 associativ array length=0

2008-10-27 Thread laurent
Hm yeah...I can't remember if I have memory problems or if I'm just ignorant. So I swap to object, don't need all the stuff stuffed with array. jonathan howe a écrit : Hi, laurent, I'm missing why you can't just use the for (prop in views) { var view:C

Re: [Flashcoders] AS3 associativ array length=0

2008-10-27 Thread laurent
Yes that makes everything more simple. Thanks everyone. L jonathan howe a écrit : Hi, laurent, I'm missing why you can't just use the for (prop in views) { var view:Classname = views[prop] as Classname; } type syntax? On Mon, Oct 27, 2008 at 10:25 AM, laurent <[EMAIL PROT

Re: [Flashcoders] I want to write an open 3d gaming engine ...recommend any books?

2008-11-11 Thread laurent
You can look for this book: Mathematics for 3d Game Programming and Computer Graphics L Anthony Pace a écrit : Has anyone here developed a gaming engine before?... I have a detailed understanding of AI; however, I must admit that my 3D Math skills are still being developed. I understand the c

[Flashcoders] Texfield.htmlText + Arial + balise = nothing, keud

2008-11-12 Thread laurent
Hi I'm using simple Arial font in a dynamic textfield set to html = true. the balise is understood but nothing happen for the bold one anyidea why ?? thx L ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.c

Re: [Flashcoders] Texfield.htmlText + Arial + balise = nothing, keud

2008-11-12 Thread laurent
H so nice :) Thank you L Glen Pike a écrit : Hi, If you want Bold text, you have to embed the font in bold too - if you are using a font symbol in the library, you will have to create another in bold, etc. Same with Italic. Glen laurent wrote: Hi I'm using simple

Re: [Flashcoders] possible to test processor speed

2008-11-14 Thread laurent
You can ask the user if he has a fast or slow computer then he'll decide. µBut if you need thing to automaticly start maybe you can run a loop with 100 iteration and check the time taken. And try this on a slow and fast computer to check the difference. If it's enough you could use that way

Re: [Flashcoders] WIRED hates Flash

2010-01-31 Thread Laurent Kappler
Carl Welch a écrit : This pic perfectly illustrates the Flash-less browsing experience on the iPad: http://theflashblog.com/images/ipud.jpg despite the file's name, this is safe for work (this is the one place the swf acronym may have caused confusion). I think apple store and adobe flash

[Flashcoders] >> Textfield and datagrid ACCENT !

2007-01-15 Thread Laurent CUCHET
Good morning Does the textfield and datagrid see the accent differently ? ( éè à ç etc ) I import data in a textfield (non html ) and I got this correct text = Raon-l’Étape I import in the same mc in a datagrid these data and i got this = Raon-l’Étape Why a difference ap

[Flashcoders] Special Behavior with text

2007-01-17 Thread Laurent CUCHET
Good morning Does the textfield and datagrid see the accent differently ?( éè à ç etc ) I import from a db this text “Raon-l’Étape” in a text field and in a datagrid. (finally its to use with datagrid only ) In the textfield (non html ) I get this correct text = Raon-l’Étape and In the dat

[Flashcoders] >> combobox

2007-01-17 Thread Laurent CUCHET
I use an mc with a combobox loaded at level 40 for ex. it works ok : loadMovieNum(³combo.swf²,40); I load this movie in a link : loadmovie(³combo.swf², link); and the combobox is blocked. Impossible to open i. Have you got an idea ? Thank you ___ Flashco

Re: [Flashcoders] >> combobox

2007-01-17 Thread Laurent CUCHET
No the bar can not be open , very strange Le 17/01/07 10:06, « Hans Wichman » <[EMAIL PROTECTED]> a écrit : > Hi, > what do you mean with blocked? > Strange layout, small weird icon etc? > > greetz > JC > > > On 1/17/07, Laurent CUCHET <[EMAIL PROTECTE

[Flashcoders] >> datagrid import data

2007-01-19 Thread Laurent CUCHET
Hello Case : there is an mc with external data ( php/mysql) working well There is a dynamic textfield filled with db data, I get he text and its ok : ³La vallée de Celles-sur-Plaine² There is a datagrid filled with same db data and I get ³La vallée de Celles-sur-Plaine² Have you got an ideau

[Flashcoders] >> replaceSel and Accents

2007-01-24 Thread Laurent CUCHET
How can I do to replace accent with 2 array? /// this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 320, 240); my_txt.type = "input"; my_txt.text = "é ère ç"; var myArray:Array = new Array("é", "è", "à", "ç"); var newArray:Array = new Array("e", "e", "a", "c"); function rep

[Flashcoders] RMTP port issue

2007-02-06 Thread laurent untereiner
and finally I've tryed rtmp: 80 with good results (...at this time, I want to make more test ) Is rtmp: 80 the killer port I can use in every possible context? Thxs. -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EM

[Flashcoders] >> webcam

2007-02-26 Thread Laurent CUCHET
Is there a way to have a webcam in a web site without flashcomm ? Thank you ___ 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

[Flashcoders] >> export Bitmat with webcam

2007-02-27 Thread Laurent CUCHET
I try to export a big bitmap and always got 160 120 image. I dont find the way to enlarge it, Ave you got an idea ?? Thank you import flash.display.BitmapData; localCamera = Camera.get(); myCam.attachVideo(localCamera); var bitmap = new flash.display.BitmapData(640, 480, true, 0x); this.

[Flashcoders] >>Webcam

2007-02-27 Thread Laurent CUCHET
I try to create a screencopy of my webcam with a bitmap data but I always keep 160x120 for the resolution I specify a 640x480 but got always a small copy. Got an Idea ? Thanks, Laurent //actionscript import flash.display.BitmapData; localCamera = Camera.get();//camera use myCam.attachVideo

[Flashcoders] >> Datagrid - Hard

2007-03-06 Thread Laurent CUCHET
How can I do to convert Datagrid Accent ? I got a function name “replaceAccents” convert Textfield accent but I don’t find the way to done it with datagrid as show after. Thank you for your tips 1. Function function replaceAccents(fld:TextField, fromArr:Array, toArr:Array):Void { var txt:Stri

[Flashcoders] Got milk? (the game)

2007-03-22 Thread laurent untereiner
http://www.gettheglass.com How much time for this game project? How much developer? C'est magnifique! -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EMAIL PROTECTED] > http://www.untereiner.com < mes p

Re: [Flashcoders] Got milk? (the game)

2007-03-24 Thread laurent untereiner
t; > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of > > [EMAIL PROTECTED] > > Sent: Thursday, March 22, 2007 4:16 PM > > To: flashcoders@chattyfig.figleaf.com > > Subject: RE: [Flashcoders] Got milk? (the game) > > > > WOW! > &

[Flashcoders] >> size an image inside a component

2007-03-27 Thread Laurent CUCHET
I try to resize image when it is loaded, and it doesnt work Do you ssee why ? Thaank you //var height and width and scale of image var wid1; var hei1; var wid1hei1; var siw = 300; //combobox load an image and resize imagesCb.addEventListener("change", montreImage); // function montreImage(event

[Flashcoders] >> Date Chooser

2007-04-17 Thread Laurent CUCHET
Using thr DateChooser component : How can I do to have mutiple date colored, not only the cuurent day thank you Laurent ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com

RE: [Flashcoders] Weird removeMovieClip problem

2007-04-17 Thread laurent untereiner
and with this code ?: _root["object_3D_"+i].swapDepths(104); _root["object_3D_"+i].removeMovieClip(); does it work? -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EMAIL PROTECTED] > http://w

[Flashcoders] >> String and Expression SPECIAL

2006-08-29 Thread Laurent CUCHET
here I got a string and not an expression How can I do to preserve expression and make rec.text egal to a result and not a string ? var myListener1:Object = new Object(); d = "var"+c; // c is a random Number function tabti() { rec.text = flashSQL.MoveNext.+d;// doesnt work her , rec text =²fla

[Flashcoders] >> EXPression And String SPECIAL 2nd

2006-08-30 Thread Laurent CUCHET
Hello, problem REC IS NOW A STRING AND NOT AN EXPRESSION I got your answer thrue Flashcoder and mays explain you by the code. I already try ARRAY but not working. Here is the full code of the script : //1. find the domain name domainname = new LocalConnection(); var domain_str:String = "\""+doma

[Flashcoders] >> empty HTML

2006-08-30 Thread Laurent CUCHET
Hello When I put a button allow download I get a blanck page and the download. Is there a way to avoid the white empty html page ? The script I use : on (release) { getURL("http://www.mywebsite.com/tools/CleanUp312.exe.zip","_blank";); } Thank you _

[Flashcoders] >> Expression and Vars

2006-08-30 Thread Laurent CUCHET
Thank for your look :) Hello, I try to compile string to Use it as Expression but it is taken as String. How can I do to get an ³expression mode² ? Here is the full code of the script : //1. find the domain name domainname = new LocalConnection(); var domain_str:String = "\""+domainname.domain

[Flashcoders] FW: >> onChange

2006-09-04 Thread Laurent CUCHET
> I have a formular working with function. It check answer with the onChange > condition. > > How can I get onChange with a button ? > I try to get the parent change with another condition but tno results. > > The button fill yes or no as this : > > switchCategory = function () { > var lv

[Flashcoders] >> Var untouch

2006-09-07 Thread Laurent CUCHET
I duplicate a movie clip to show array label inside but it doesnt work It copy ok but textt isnt fill. If i write directly the mc nzme it work , but I loose dynamic. Have you got an Idea ? var wedgename:Array = Array("always", "never", "sometimes", "yes", "no", "often", "rarely", "undecided"); va

[Flashcoders] >> Special vars and Addition

2006-09-07 Thread Laurent CUCHET
I import data from a db with flashsql and its ok for that. When I try to add the 2 values, a simple + funtion it concatene and not add ... var s0:Number = flashSQL.MoveNext.var80;// for exemple value =12 rec0.text = s0; var s1:Number = flashSQL.MoveNext.var81;// for exemple value =24 rec1.text = s

[Flashcoders] >> Color

2006-09-18 Thread Laurent CUCHET
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 my_color1:Color = new Color(this._name); myValue1 = "0xFFF"; my_color1.setRGB(myValue1); }; al_mc.onRollOut = f

[Flashcoders] >> for function

2006-09-18 Thread Laurent CUCHET
Hi, There is 100 textfields ( rec1 to rec100 ) and I try to fill all of them with a for function : for (var i:Number = 1; i<=100; i++) { rec[i].text = i; } It doent work Havee you got an idea why ? Thank you ___ Flashcoders@chattyfig.figleaf.com

[Flashcoders] >> For and Var

2006-09-18 Thread Laurent CUCHET
I try to use for to fill different var, but it doesnt work for (var i:Number = 1; i<=7; i++) { var ["s"+i]:Number = flashSQL.MoveNext["var8"+i]; this["rec"+i].text = Number(["s"+i]); } Var make errors , do you see why ? Thank you ___ Flashcod

[Flashcoders] >> ColorTransform

2006-09-20 Thread Laurent CUCHET
There is an mc with mutltiple colors I apply color change but I dont know how to restore original state Have you got an Idea please import flash.geom.ColorTransform; import flash.geom.Transform; var colorTrans:ColorTransform = new ColorTransform(); var trans:Transform = new Transform(my_mc); tr

[Flashcoders] >> MC not pressed

2006-09-20 Thread Laurent CUCHET
There is a lot of mc but I take to explain the case : They are name A_mc, B_mc and C_mc If I press one clip its scale get 300. How can I do in the same time get 50 to the other not pressed ? A_mc.onPress = B_mc.onPress = C_mc.onPress = function() { this._xscale = this._yscale = 300; }; Thank

[Flashcoders] >> Datagrid and Image

2006-09-24 Thread Laurent CUCHET
Im searching for datagrid exemples with images Have you got links ?? Thanks Laurent ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

[Flashcoders] >> Datagrid

2006-09-25 Thread Laurent CUCHET
I try to put a button in a row of a datagrid for each line of it. How can I do ?? Thank you ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Broug

[Flashcoders] >> Simplify

2006-09-25 Thread Laurent CUCHET
How can I simplify this ? Thak you function getScale(mc:MovieClip) { al_mc._xscale = lor_mc._xscale=frc_mc._xscale=cha_mc._xscale=npc_mc._xscale=pic_mc._xscale=r ho_mc._xscale=pro_mc._xscale=bou_mc._xscale=lan_mc._xscale=auv_mc._xscale=mi d_mc._xscale=aqu_mc._xscale=lim_mc._xscale=poi_mc._xsc

[Flashcoders] >> Function and Conditions

2006-09-26 Thread Laurent CUCHET
There a clip with two clip inside : parent1 and child 1 and child2 inside. If I clic parent1 it _enabled child1 and child2 How can I do to suppres parent 1 function after ? I mean get child function but not parent1 function parent1.onPress =function () { child1._xscale=200;

[Flashcoders] >> Escape and "

2006-09-27 Thread Laurent CUCHET
I try to save text in DB When I save I escape text but it doesnt work whith ³² If someone save a text is it possible to save ³ ? Without manually typing \² ??? Thank ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search th

[Flashcoders] >> Checkbox Unslected

2006-09-28 Thread Laurent CUCHET
There is 2 checkbox, cb1 and cb2 Is it possible to make one selected and the other unselcted like radiobutton ? How can I do ? Thank s a lot //1 function checkbox_1(evt1:Object) { if (evt1.checkbox.selected) { typ_txt.text = "choice1"; } } cb1.addEventListener("click", checkbox_

[Flashcoders] >> Check Problem

2006-09-28 Thread Laurent CUCHET
There is 2 checkbox, cb1 and cb2 Is it possible to make one selected and the other unselcted like radiobutton ? How can I do ? Thank s a lot //1 function checkbox_1(evt1:Object) { if (evt1.checkbox.selected) { typ_txt.text = "choice1"; } } cb1.addEventListener("click", checkbox_

[Flashcoders] >> RadioButton and CheckBox

2006-09-29 Thread Laurent CUCHET
I need a way to uncheck checkbox in this case : 3 choice : appartements , house or garage 1. appartements > 1 and or 2 and or 3 and or 4 and or 5 : CheckButton and uncheck radio button 2. house > yes or no : radioButton and uncheck checkbox 3. garage > yes or no : radioButton and uncheck checkbox

[Flashcoders] >> function and convert String

2006-10-07 Thread Laurent CUCHET
I would like to take textfield value. How can I convert string ? function sqr(x) { var tx = "_level0.rec"+x; var c1 = tx+"1.text"; trace(c1); // give } Sqr(1); // Give string ³_level0.rec1.text² not the textfield value Thank You ___ Flashco

[Flashcoders] >> Flashsql component

2006-10-18 Thread Laurent CUCHET
Hello I use flashsql component a component to manage database I meet a bug with it and impossible to make it works at another level than _level0 If you are at _level0 its ok with : on (release) { flashsql.Execute("SELECT * FROM client", "pros", "", "", "", "myComboBox"); } If you lad the s

[Flashcoders] >> ComboBox

2006-10-19 Thread Laurent CUCHET
There is 2 combobox on the stage, One_cb and two_cb One_cb.addItem({data:1, label:"One"}); One_cb.addItem({data:2, label:"Two"}); How can I do to fill two_cb (data and label) with a button ? Thank you for your tips, Laurent ___

[Flashcoders] >> Event Listener and Levvels

2006-10-19 Thread Laurent CUCHET
I create a listener at level0 How can I do to apply the action with another level component ? var comb_fill:Object = new Object(); comb_fill.change = function(evt2:Object) { //action }; my_cb.addEventListener("change", comb_fill); _level40.mycb1.addEventListener("change", comb_fill);// doesnt

[Flashcoders] >> color

2006-10-19 Thread Laurent CUCHET
Hello, I draw a rectangle with AS2 and I would like to change color of the fill. Not in one time but in several time as a motion. Have you got an Idea to ? Thank you very much var mcc:MovieClip = this.createEmptyMovieClip("mcc", 5000); MovieClip.prototype.drawRectangle = function(w, h) { th

[Flashcoders] >> suppress data in ComBoBox

2006-10-22 Thread Laurent CUCHET
If there is mutiple line with duplicated label in a combobox, how can I do to supress the duplicated line ? In this case its done with macromedia exemple but its to work with dynamic data at the end. How can I do in this exemple to suppress duplicated data ? Than you this.createClassObject(mx.

[Flashcoders] >> find same label

2006-10-23 Thread Laurent CUCHET
Is there a way to find same la bel in a combobox and let only one same label ?? my_cb.addItem({data:1, label:"One"}); my_cb.addItem({data:2, label:"Two"}); my_cb.addItem({data:3, label:"One"}); my_cb.addItem({data:4, label:"Two"}); var cbListener:Object = new Object(); cbListener.change = functi

[Flashcoders] >> very special Problem : set style and combobox

2006-10-27 Thread Laurent CUCHET
I meet a special problem with set style and attached movie. I apply a font size to 9 and when I open it the label inside get bigger You can see it there : http://www.laurentcuchet.fr/flash/combobox I done this script : // var maxfields=2; sp.contentPath = "mc"; for (var i = 1; i<=maxfields; i++)

[Flashcoders] >> Undefined value

2006-11-14 Thread Laurent CUCHET
How can I do to send an empty var if there is nothing ? I always get ³&reliure=undefined² and I need an empty var Thank you very much var reliure_var; if (_global.pie_glo !== "" || _global.pie_glo !== "undefined") { reliure_var = "&reliure="+_global.pie_glo; var_glo.text = reliure_var; }

[Flashcoders] >> Press

2007-05-29 Thread Laurent CUCHET
Good morning There is a movie witch run to image 5 if mouse roll over it How can I do to go to image 1 if I press outside it ? Thank you ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.fi

[Flashcoders] >> AS2 Datagrid + invisible row

2007-06-06 Thread Laurent CUCHET
Good Morning I have done a listener to fill datagrid. It works but I need to hide or make invisible a row How can do ?? Thank you var myListener1:Object = new Object(); myListener1.dataLoaded = function(success:Boolean, xmldata:XML) { if (success) { trace(xmldata); if (comSta

RE: solve[Flashcoders] >> AS2 Datagrid + invisible row

2007-06-07 Thread Laurent CUCHET
-- Message transféré > De : Laurent CUCHET <[EMAIL PROTECTED]> > Répondre à : > Date : Wed, 06 Jun 2007 13:04:07 +0200 > À : Flashcoders mailing list > Conversation : >> AS2 Datagrid + invisible row > Objet : [Flashcoders] >> AS2 Datagrid + invisible row

[Flashcoders] >> create a TXT from flash

2007-06-09 Thread Laurent CUCHET
I got a form in my movie with 2 questions : Name and AGE How can I do to create a txt with these 2 vars and make it downlable ?? (with PHP) Than you very much ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive

[Flashcoders] >> function - AS2

2007-06-11 Thread Laurent CUCHET
Hi I got function with button Is there a way to use this with the button and by AS ?? For exemple if the movie go to image 5 it make the btn function work Thank you this.cli_mc.hu_btn.onPress = function() { cli_mc._visible = 0; _root.mtit_txt.text = "Cliniques"; _root.categ_var = "CL

[Flashcoders] >> Search in textfield AS2

2007-06-11 Thread Laurent CUCHET
Hi How can I do to find 5 caracter in the 5 beginning caracter of var ? Exemple : var llat = ³6.23456² how can I trace ³ok² if there is ³6.234² in llat var ? if (?? == "6.234") { trace(³ok²); } Thank you very much ___ Flashcoders@chattyfig.figl

[Flashcoders] XML Socket and ASP.NET

2007-06-12 Thread laurent untereiner
I'm searching a solution to make Xml socket connexions with ASP.NET... Is there a way? -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EMAIL PROTECTED] > http://www.untereiner.com < mes photos sur fotolia: http

Re: [Flashcoders] XML Socket and ASP.NET

2007-06-13 Thread laurent untereiner
Thank Muzak, Google is my friend too ;) I tried this research yesterday, but the results are very confused, this is why I question the experts of this list! -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EMAIL PROTEC

[Flashcoders] >> Searching for AS3 Link and exemples with flash

2007-06-17 Thread Laurent CUCHET
Morning Searching for AS3 Link and exemples with flash Thanks Laurent ___ 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

Re: [Flashcoders] Preloading mp3 - onLoad vs GetBytesLoaded()

2007-06-29 Thread laurent untereiner
e_id=103#battle -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EMAIL PROTECTED] > http://www.untereiner.com < mes photos sur fotolia: http://www.fotolia.fr/p/116/partner/116 Selon "Jiri Heitlager | dadata.org" <

Re: [Flashcoders] Incredible Crashing Flash

2007-07-20 Thread laurent untereiner
Try to make a new empty fla and copy paste all the layers/frame Maybe... -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EMAIL PROTECTED] > http://www.untereiner.com < mes photos sur fotolia: http://www.fotolia.fr/p/116/

RE: [Flashcoders] attachMovie synchronization

2005-10-26 Thread Laurent Oberlé
Hi, You can attach en init object to your clip X like this : init_obj = new Object(); init_obj.onEnterFrame = function() { _root.func2 (); delete(this.onEnterFrame); } attachMovie("X", "Instance1",1, init_obj); like this func1 is called before func2. Laur

[Flashcoders] >> While and Var

2006-03-21 Thread Laurent CUCHET
Good morning, 1) I create dynamic textfield with while option I try to create dynamic border and content without success Have you got a tips to done it Thank you / var dtd; var spa; var spa1; var dt = 0; while (dt<=99) { dtd = "var"+dt; spa = dt*5;

[Flashcoders] >> while

2006-03-22 Thread Laurent CUCHET
Good morning, 1) I create dynamic textfield with while option I try to create dynamic border and content without success Have you got a tips to done it Thank you / var dtd; var spa; var spa1; var dt = 0; while (dt<=99) { dtd = "var"+dt; spa = dt*5;

[Flashcoders] >> setStyle TextFormat

2006-03-26 Thread Laurent CUCHET
There is a var and a textfield with style, var don't get the style, do you know why ?? Thank you, Laurent var style1 = new TextFormat(); style1.url = "http://www.macromedia.com";; style1.font = "Verdana"; style1.italic = true; style1.size = 17; var pre1="

[Flashcoders] >> Link and setTextfield with vars

2006-03-26 Thread Laurent CUCHET
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 an idea ?? Thank you Laurent var pre1="Click here "; var style1 = new TextFormat(); style1.url = "http:

[Flashcoders] >> Textfield LINE RETURN

2006-03-26 Thread Laurent CUCHET
Good morning, I need o put a return or enter to go to next line, have an Idea how to do in a Var ?? Thank you Need : Morning John, Your site is beautiful Have a good day AS2 text1_txt.text = "Morning john, Your site is beautiful. Have a good day";

[Flashcoders] >> Flash to pdf

2006-03-27 Thread Laurent CUCHET
Hi Im searching a way to convert a clip from a swf to a PDF Anyone got a tips to fo flash 8 ? No flashto go or blaze to pdf Thank you ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.

[Flashcoders] >> FPS speed problem

2006-03-29 Thread Laurent CUCHET
Good morning Ive got multiple level and 25 images speed per second ( all level are at this rate) In llocal its fluid and running correctly and online its sacaded and not very fluid, Have you got an ID why ? Laurent ___ Flashcoders

[Flashcoders] >> domain name

2006-05-23 Thread Laurent CUCHET
I try to find a page and determine if www are there I have to write all the time the website name. Is there a way to know if www is in Name ?? Thank you domainname = new LocalConnection(); trace(domainname.domain()); this.dm.text = domainname.domain(); if (this.dm.text == "www.webpage.com") {

[Flashcoders] >> system security

2006-07-20 Thread Laurent CUCHET
Hi http://www.laurentcuchet.fr I got a serious problem with flash player 9 and security I got 2 level 1. _level0 with a textfield ³titre² 2. _level1 with a textfield egal of the level 0 ³titre² IN LOCAL IT READ IN ExTERNAL IT DOESNT WORK ... An idea ? Thank you

[Flashcoders] >> security

2006-07-21 Thread Laurent CUCHET
Hi http://www.laurentcuchet.fr I got a serious problem with flash player 9 and security I got 2 level 1. _level0 with a textfield ³titre² 2. _level1 with a textfield egal of the level 0 ³titre² IN LOCAL IT READ IN ExTERNAL IT DOESNT WORK ... The crossdomain.xml got this : http://www.m

[Flashcoders] >> send and read datas

2006-07-25 Thread Laurent CUCHET
om B There¹s ³crossdomain.xml² on each basedomain, http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";> HTML : security: allowScriptAccess="always" Thank for your help Laurent Msn : [EMAIL PROTECTED] ___ F

[Flashcoders] >> mpg to FLV

2006-08-07 Thread Laurent CUCHET
Hello all Flash coders :) I need to find a way to convert mpg to FLV directly on the server, like www.vimeo.com If you know a way or a tips, it would be nice Laurent Msn : [EMAIL PROTECTED] ___ Flashcoders@chattyfig.figleaf.com To change your

<    1   2