Re: [Flashcoders] Q:Tween Class..detect tween in progress

2006-03-07 Thread Oleg Filipchuk
Hi, there is tween.onMotionChanged ( obj:Object ) ___ 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 Premier

[Flashcoders] FP8 AS2 color picker and comboBox

2006-03-07 Thread Martin Weiser
Hello everyone, i seek for color picker component (tried many, Illogiz, not working in as2), please doeas anyone have some really good? And custom combobox. simple as possible, thanks in advance Martin ___ Flashcoders@chattyfig.figleaf.com To

[Flashcoders] Heap Size Eclipse

2006-03-07 Thread lieven.cardoen
I have some problems using eclipse lately. Problems start when launching MTASC for compiling a huge project. The heap size goes up to 253M of 254M, and remains this high, even after mtasc has compiled. I tried to set maximum heapsize to 512M, but then it seems as heapsize goes up to 512M, and

Re: [Flashcoders] Heap Size Eclipse

2006-03-07 Thread Nicolas Cannasse
Is there a Java Virtual Machine that can do better, and what has MTASC to do with the heap size...? MTASC is an external process and doesn't run on the JVM. I don't see how it could even have some effect on it (?). Nicolas ___

Re: [Flashcoders] Newbiew question AS3

2006-03-07 Thread Michael Klishin
stefan burt wrote: I've heard a lot about flex are there any sites/app's on the net which offer a good impression of what the platform is capable of? Take a look at adobe labs showcase, the most interesting Flex 2 Apps at the moment can be found there -- Michael Antares Klishin, Email:

Re: [Flashcoders] Load external bitmap into bitmapdata?

2006-03-07 Thread Adrian Park
Awesome! Thanks Jesse/JesterXL. I love finding out I'm wrong when there is a better way :) On 3/6/06, Marcelo Volmaro [EMAIL PROTECTED] wrote: Indeed, it works!, Also, trying this i´ve found a method to attach loaded movies as bitmaps... now i can create libraries of MCs!! Thanks! On

RE: [Flashcoders] Heap Size Eclipse

2006-03-07 Thread lieven.cardoen
That's what I thought also. Maybe because before launching MTASC, Eclipse goes parsing all of the files in the project. Ok, I restarted My Computer because after compiling with MTASC there was a System Idle Process that kept on using 95% of CPU. I restarted Eclipse and now Heap Size is 34M. I

Re: [Flashcoders] FP8 AS2 color picker and comboBox

2006-03-07 Thread Michael Stuhr
Martin Weiser schrieb: Hello everyone, i seek for color picker component (tried many, Illogiz, not working in as2), please doeas anyone have some really good? And custom combobox. simple as possible, thanks in advance i've done some color picker work on this @ home, can put it OL when

[Flashcoders] Deactivate dragScroll in FlashPaper, it is possible?

2006-03-07 Thread David Serrano
Anybody know if I can deactivate the scrollDrag in a FlashPaper(I think is called panning)? I only want to deactivate this one. I want the others options (scrollbar, mousewheel) continue working. Any response? Thanks in advance. David ___

[Flashcoders] Bouncing laserbeam for game

2006-03-07 Thread James Marsden
Hello games people, I'm tasked with programming a bouncing laserbeam like in the following pic. http://www.irem.co.jp/e/game/r/rtype/image/r1stg6.gif Has anyone done this kind of thing before and can point me in the right direction? TIA, James

Re: [Flashcoders] FP8 AS2 color picker and comboBox

2006-03-07 Thread Iv
Hello Martin, MW i seek for color picker component (tried many, Illogiz, not MW working in as2), please doeas anyone have some really good? - try this: http://www.dembicki.org/GradientAndSafePalette.as -- Ivan Dembicki

RE: [Flashcoders] Bouncing laserbeam for game

2006-03-07 Thread Mike Mountain
Well I've never made one before - but I'd store an array of the gun, mirrors, and goals x,y and rotation properties and crawl through them to draw the line...something like: [as] w = Stage.width; h = Stage.height; Stage.align = TL; Stage.scaleMode = noScale; // points = new Array({x:10, y:10,

Re: [Flashcoders] Bouncing laserbeam for game

2006-03-07 Thread James Marsden
Hey thanks Mike, I've managed to do it rather simply with this in case anyone is interested: // create laser point var laser = {x:0, y:0, vx:10, vy:10, steps:[], count:0}; onEnterFrame = function() { // bounce off the walls if (laser.x 400) { laser.vx *=-1; } else if

RE: [Flashcoders] Bouncing laserbeam for game

2006-03-07 Thread Mike Mountain
Cool - you've used fixed mirrors though? The versions of this game I've played had the rotation of the mirror as part of the puzzle complexity. So you have a selection of mirrors in a toolbox that point at varying 90 degree steps that you drag onto the screen in some kind of maze - then when you

Re: [Flashcoders] Bouncing laserbeam for game

2006-03-07 Thread James Marsden
I haven't heard of that, but it sounds ace! Might have to have a go... Mike Mountain wrote: Cool - you've used fixed mirrors though? The versions of this game I've played had the rotation of the mirror as part of the puzzle complexity. So you have a selection of mirrors in a toolbox that

Re: [Flashcoders] String problems?

2006-03-07 Thread Flash Mel
Ah! I knew I was missing something! Dang. Thanks, Geoffrey! On 3/6/06, Geoffrey Williams [EMAIL PROTECTED] wrote: Need to 'eval' num. use array notation. controller_mc.attachMovie(gallery_mc, gallery_mc, 50); theGallery = controller_mc.gallery_mc; gallery_contains = 4; for (i = 0;

Re: [Flashcoders] Remove right click menu

2006-03-07 Thread Dominico Savio
I can't use director because of the following reason: 1. The client worry that Director will be gone in the next 4, 5 years, and the application have to last longer than that :( 2. We are using Flash Remoting, loadVariables via ASP.NET page, load XML and I am not so sure we can do that with Flash

RE: [Flashcoders] Shape tweens through AS?

2006-03-07 Thread Jim Tann
That is the nastiest green I have ever seen it hurts my brain looking at it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Weber Sent: 07 March 2006 05:29 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Shape tweens through AS?

Re: [Flashcoders] Shape tweens through AS?

2006-03-07 Thread elibol
very nice Andreas. M. On 3/7/06, Andreas Weber [EMAIL PROTECTED] wrote: Actually there are many very interesting uses for code-based Shape Tweening, one of them is to dynamically morph any shape into any other shape. As for finding the coordinates of the points that define the shape: one

[Flashcoders] Do getters and setters add any size to a file

2006-03-07 Thread Manuel Saint-Victor
I understand that the Actionscript class files are compiled into bytecode but I have not had enough experience to know whether or not all of this object oriented refactoring that I am doing to my current project is going to make it bulkier. I read somewhere about the different increases in file

[Flashcoders] FlashPaper and Flash 8 Issues

2006-03-07 Thread Greg Conover
Wanted to know if anyone found a workaround for the issues created by using FlashPaper 2 documents in a Flash application. Funny how Breeze doesn't seem to have any issues like this - almost like Macromedia has a version they're using but isn't available to the public. Greg Conover Committee

Re: [Flashcoders] Do getters and setters add any size to a file

2006-03-07 Thread Scott Fanetti
using getters and setters adds no noticeable overhead to your application. Yes the functions add a few bytes, but after compile the difference is undetectable. The benefit you get from proper encapsulation greatly outweighs the slight increase in development time it and script size you get

[Flashcoders] trace inside the browser

2006-03-07 Thread Rodrigo Guerra
hi, i'm trying to figure out a way to implement a debug that i can see online (in the browser) and not just inside the flash environment. just like trace, but it must work when the swf is online. i thought about a list component that appear and desapeear on a X keypress, and a function that

RE: [Flashcoders] Bouncing laserbeam for game

2006-03-07 Thread John Hattan
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Marsden Sent: Tuesday, March 07, 2006 5:45 AM To: Flashcoders mailing list Subject: [Flashcoders] Bouncing laserbeam for game Hello games people, I'm tasked with programming a bouncing laserbeam like in the

RE: [Flashcoders] trace inside the browser

2006-03-07 Thread Nick Weekes
I use Xray: http://www.osflash.org/xray -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rodrigo Guerra Sent: 07 March 2006 15:16 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] trace inside the browser hi, i'm trying to figure out a way

Re: [Flashcoders] trace inside the browser

2006-03-07 Thread Chris Hill
Use the luminic box logger. http://www.luminicbox.com/blog/default.aspx?page=postid=2 Rodrigo Guerra wrote: hi, i'm trying to figure out a way to implement a debug that i can see online (in the browser) and not just inside the flash environment. just like trace, but it must work when the

Re: [Flashcoders] trace inside the browser

2006-03-07 Thread Mark Walters
or if you just like using trace, follow my post here: http://www.digitalflipbook.com/archives/2005/07/trace_from_the.php - markW On 3/7/06, Chris Hill [EMAIL PROTECTED] wrote: Use the luminic box logger. http://www.luminicbox.com/blog/default.aspx?page=postid=2 Rodrigo Guerra wrote: hi,

Re: [Flashcoders] trace inside the browser

2006-03-07 Thread Rodrigo Guerra
i was using the folowing code that i got from another list, it's quick and dirty, (the problem is the *no history*) _global.alerta = function(mensagem){ getURL(javascript:alert(' + mensagem + ')); } alerta(bla) but for sure the ones showd here are more robust...i'm give a try... thank you

RE: [Flashcoders] trace inside the browser

2006-03-07 Thread Mendelsohn, Michael
Or, you can use: getURL(javascript:window.status = yourData); I like to think of the browser's status bar as a built in output spot, granted, it's only one line at a time. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] trace inside the browser

2006-03-07 Thread blists
This trace viewer works well for viewing traces inside the browser http://www.alexisisaac.net/flash/articles/flash-7-trace-viewer.html At 08:12 AM 3/7/2006, you wrote: i was using the folowing code that i got from another list, it's quick and dirty, (the problem is the *no history*)

Re: [Flashcoders] Do getters and setters add any size to a file

2006-03-07 Thread ryanm
In particular doe a bunch of getters and setters contribute to end weight such that if a client wants the lightest outcome they might be a factor or is it negligable. In general, code changes are not going to add noticable weight to the bytecode. Your library assets will usually be the bulk

[Flashcoders] NEED HELP - i have a demo in a few dayssss... IMG embed into TextArea and Scrollbar

2006-03-07 Thread julian atienza
I only need to solve a question... Can i embed an IMG with html code into a TextArea (smaller than Image) and one vertical scrollbar that scroll the image up and down? thanks in advance ___ Flashcoders@chattyfig.figleaf.com To change your subscription

Re: [Flashcoders] NEED HELP - i have a demo in a few dayssss... IMG embed into TextArea and Scrollbar

2006-03-07 Thread Yotam Laufer
If you don't need overflowing (around the image) text a ScrollPane would be better. Yotam. On 07/03/06, julian atienza [EMAIL PROTECTED] wrote: I only need to solve a question... Can i embed an IMG with html code into a TextArea (smaller than Image) and one vertical scrollbar that scroll

[Flashcoders] Re: NEED HELP - i have a demo in a few dayssss... IMG embed into TextArea and Scrollbar

2006-03-07 Thread julian atienza
Ok. Sorry. I didn't knew the ScrollPane Component (lol) I have only a image, so i can use it thanks anyway ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Heap Size Eclipse

2006-03-07 Thread Ron Wheeler
Which VM are you using? You might want to show the Eclipse startup command. Ron [EMAIL PROTECTED] wrote: I have some problems using eclipse lately. Problems start when launching MTASC for compiling a huge project. The heap size goes up to 253M of 254M, and remains this high, even after mtasc

Re: [Flashcoders] Re: NEED HELP - i have a demo in a few dayssss... IMG embed into TextArea and Scrollbar

2006-03-07 Thread Yotam Laufer
no problem. good luck. ___ 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 Premier Authorized Adobe Consulting and

Re: [Flashcoders] Load external bitmap into bitmapdata?

2006-03-07 Thread James Deakin
Wow thats great On 3/7/06, Adrian Park [EMAIL PROTECTED] wrote: Awesome! Thanks Jesse/JesterXL. I love finding out I'm wrong when there is a better way :) On 3/6/06, Marcelo Volmaro [EMAIL PROTECTED] wrote: Indeed, it works!, Also, trying this i´ve found a method to attach loaded

Re: [Flashcoders] Do getters and setters add any size to a file

2006-03-07 Thread Manuel Saint-Victor
Thank you. That's good to know because I was worried that with all of my preaching to people about getters and setters that I might hand over a nice fat file and look extra dumb! Mani On 3/7/06, Scott Fanetti [EMAIL PROTECTED] wrote: using getters and setters adds no noticeable overhead to

RE: [Flashcoders] trace inside the browser

2006-03-07 Thread Damian Taggart
Hi list, I wrote a simple class to do that. example here: http://w1imr.tvi.edu/apps/damian/temp/debug/traceinbrowser.html Download (with .as dependencies): http://w1imr.tvi.edu/apps/damian/temp/debug.rar If anyone improves this, let me know! example usage: import edu.tvi.utils.Debug;

[Flashcoders] clicking through an iframe on mozilla-based browsers ?

2006-03-07 Thread Isaac Rivera
I happen to be trying to make this work for a flash movie behind the transparent iframe, but it could be anything interactive behind the iframe the problem is the same. On mozilla based browsers, the iframe prevents a click through it to whaever is behind, not so on IE/PC where the

Re: [Flashcoders] 2D first person shooter

2006-03-07 Thread Andrew Nicoli
well doom is kinda of a 2d first person shoot ___ 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 Premier

[Flashcoders] components within custom components

2006-03-07 Thread Rich Rodecker
i posted this q on my blog, but wnated to ask here too: So, I'm taking my frist foray into building a legit flash component, and it uses some standard v2 components. I read in the documentation that you should use the component mc's instead of the compiled clips for the v2 components, but I

Re: [Flashcoders] Using setMask to Mask a loaded swf

2006-03-07 Thread Helen Triolo
Make sure the swf is loaded before assigning the mask, eg: var loader:MovieClipLoader = new MovieClipLoader(); function onLoadInit(_mc) { _mc.setMask(mask_mc); }; loader.addListener(this); loader.loadClip(movie.swf, holder_mc); Helen -- http://flash-creations.com http://i-technica.com

[Flashcoders] attatchMovie issue with a loaded mc

2006-03-07 Thread Marlon Harrison
I have a parent swf that loads in a series of children swfs and acts as a browser for them. Within the children swfs - there are a number of hotspot movieclips that trigger other events. I'd like to centralize the appearance of those 'hotspot' movieclips to the parent swf so that if i need to

[Flashcoders] 9-slice bugs

2006-03-07 Thread Sam Thorne
Hi list, I'm trying to get 9-slice scaling to work with several clips at the same time, which seems ridiculously buggy. If I have two instances of the same clip with 9-slice applied on stage, and scale them both with a Tween object, they scale fine. However, if I have two instances of

Re: [Flashcoders] components within custom components

2006-03-07 Thread JesterXL
Some background just to give reasoning behind the insanity. Regarding First Frame, the point of bounding box on the first frame is to give the component initial widht and height values. If there is nothing on the first frame, you're width and height properties (a.k.a. you're __width and

Re: [Flashcoders] 9-slice bugs

2006-03-07 Thread eric dolecki
do u have an example online we can look at to see the behavior? On 3/7/06, Sam Thorne [EMAIL PROTECTED] wrote: Hi list, I'm trying to get 9-slice scaling to work with several clips at the same time, which seems ridiculously buggy. If I have two instances of the same clip with 9-slice

Re: [Flashcoders] components within custom components

2006-03-07 Thread Rich Rodecker
ok cool. so, if all my assets are on frame one, i probably don't need the bounding box mc too then, right? On 3/7/06, JesterXL [EMAIL PROTECTED] wrote: Some background just to give reasoning behind the insanity. Regarding First Frame, the point of bounding box on the first frame is to give

[Flashcoders] moving components on stage

2006-03-07 Thread Rich Rodecker
I have a bunch of components on stage. I'd like to be able to set their position on stage depending on some values. The way it looks like I have to do it now is add a listener to each component named move, and then do a component.move(x,y) to move it...is this the simplest way? it looks like

[Flashcoders] preloader issue?

2006-03-07 Thread murder design
I have posted this before, and gotten some feedback, this is the result, yet i still cannot get the clip to display the load progress of bigfile.swf inside the label_txt. the swf loads inside of _root.target_mc ... any ideas here people? // - begin code target_mc.loadMovie(bigfile.swf);

RE: [Flashcoders] preloader issue?

2006-03-07 Thread Hairy Dog Digital
are your trace statements showing the expected info? -Original Message- From: murder design [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 1:46 PM To: Flashcoders mailing list Subject: [Flashcoders] preloader issue? I have posted this before, and gotten some feedback,

RE: [Flashcoders] preloader issue?

2006-03-07 Thread Hairy Dog Digital
Also, double check the string concatenation. You had an ampersand in... _root.label_txt.text = percent % LOADED It should be a plus sign... _root.label_txt.text = percent + % LOADED ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] preloader issue?

2006-03-07 Thread Van Tuck
If you attach this to the clip itself, it does work - onClipEvent (load) { this.loadMovie(bigfile.swf); } onClipEvent (enterFrame) { tBytes = this.getBytesTotal(); trace(tBytes: +tBytes); bLoaded = this.getBytesLoaded(); trace(bLoaded: +bLoaded);

Re: [Flashcoders] preloader issue?

2006-03-07 Thread Morrison
one for all those with gmail On 3/7/06, Van Tuck [EMAIL PROTECTED] wrote: If you attach this to the clip itself, it does work - onClipEvent (load) { this.loadMovie(bigfile.swf); } onClipEvent (enterFrame) { tBytes = this.getBytesTotal(); trace(tBytes: +tBytes);

[Flashcoders] Customizing Accordeon component

2006-03-07 Thread Wouter Steidl
Hi List! I am trying to customize the Accordion component and want to achieve the following: The Component will serve as a quizso each section of it will contain a quiz-questionnow in the header of the sections I want to display the number of the question AND the answer given to a

Re: [Flashcoders] preloader issue?

2006-03-07 Thread Byron Canfield
Part of the problem is that your onEnterFrame is getting stomped on by the reinstantiation of the target movieclip when the SWF actually begins to load. That effectively (quite) deletes the onEnterFrame. Either attach the onEnterFrame to some other timeline, or load the movie into some other

Re: [Flashcoders] FP8 AS2 color picker and comboBox

2006-03-07 Thread Yotam Laufer
If there's one piece of advice I can give you is to stay awat from Jumpeye Software's Color Picker Pro. It looks really nice and is very slick until you try and use it in a real world application. You CANNOT open the color picker with predefined values. The rainbow picker and lightness values

[Flashcoders] RadioButton CellRenderer vs. CheckBox CellRenderer

2006-03-07 Thread John Mark Hawley
I have need of a DataGrid with one column filled with CheckBoxes, and another column filled with RadioButtons. The RadioButtons should all be in the same RadioButtonGroup. I put together CellRenderers for these two columns, and everything *almost* works. Problems: No RadioButtonGroup is ever

[Flashcoders] attachMovie to a loaded swf

2006-03-07 Thread Marlon Harrison
I have a parent swf that loads in a series of children swfs and acts as a browser for them. Within the children swfs - there are a number of hotspot movieclips that trigger other events. I'd like to centralize the appearance of those 'hotspot' movieclips to the parent swf so that if i need to

Re: [Flashcoders] FlashPaper and Flash 8 Issues

2006-03-07 Thread John Dowdell
Greg Conover wrote: Wanted to know if anyone found a workaround for the issues created by using FlashPaper 2 documents in a Flash application. Funny how Breeze doesn't seem to have any issues like this - almost like Macromedia has a version they're using but isn't available to the public. Are

Re: [Flashcoders] How does goowy do it? (HTML in Flash)

2006-03-07 Thread John Dowdell
Ramon Miguel M. Tayag wrote: How do you put an HTML window within the Flash movie? I thought it might be superimposed... but I'm not sure. Jeremy Suriel of Goowy offered an excellent and extensive interview with Ryan Stewart just recently... searching for text inline on the second page has

Re: [Flashcoders] attachMovie to a loaded swf

2006-03-07 Thread lars
if i get it right this sounds more like a initialization or depth problem. attachMovieClip should work. have you tried createEmptyMovieClip with a getNextHighestDepth and load those icons into those? hth: lars Am 07.03.2006 22:37 Uhr schrieb Marlon Harrison unter [EMAIL PROTECTED]: I have a

[Flashcoders] Doh! Converting a floating point string to number loses precision

2006-03-07 Thread Boon Chew
How do you usually deal with the loss in precision (a bit oxymoron since floating point can't be exactly represented) when converting a floating point string to a number? var s:String = 952.86; var i:Number = parseFloat(s); trace(i); trace(i - 952.86); // Not zero! - boon

Re: [Flashcoders] attachMovie to a loaded swf

2006-03-07 Thread Marlon Harrison
thanks I don't think attachMovieClip will work in this instance from what I've been reading. Perhaps I can clarify a bit more. I have a container swf that loads in a series of children swfs. All of my code is in the container swf, as are the icon movieclips. I want to use attachMovie to put

Re: [Flashcoders] Doh! Converting a floating point string to number loses precision

2006-03-07 Thread Yotam Laufer
-1.13686837721616e-13 is as close to zero as you get matey 13 places after the decimal... On 07/03/06, Boon Chew [EMAIL PROTECTED] wrote: How do you usually deal with the loss in precision (a bit oxymoron since floating point can't be exactly represented) when converting a floating point

Re: [Flashcoders] preloader issue?

2006-03-07 Thread murder design
this code does work, however the percent displays something like 15 places ... onClipEvent (load) { this.loadMovie(bigfile.swf); } onClipEvent (enterFrame) { tBytes = this.getBytesTotal(); trace(tBytes: +tBytes); bLoaded = this.getBytesLoaded(); trace(bLoaded:

Re: [Flashcoders] attachMovie to a loaded swf

2006-03-07 Thread Adrian Park
I have always understood that you cannot attach an asset from the library of one swf into another loaded swf. I've never succeeded in doing it and haven't seen a workaround. Sorry I can't be more helpful. Please can someone prove me wrong! Adrian P On 3/7/06, Marlon Harrison [EMAIL PROTECTED]

[Flashcoders] a way to get the position in an array during interation

2006-03-07 Thread Manuel Saint-Victor
Is there a more elegant way to get the position of an element in an array than this: var firstList:Array=[element1,element2,element3]; for var(i=0;ifirstList.length;i++){ secondArray.push({itemId:i,itemname:firstList[i].name,firstList[i]} } my_lb.dataProvider=secondArray; i'm trying to

[Flashcoders] Re: Doh! Converting a floating point string to numberloses precision

2006-03-07 Thread A.Cicak
define epsilon and check if abs(x-y)epsilon Boon Chew [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] How do you usually deal with the loss in precision (a bit oxymoron since floating point can't be exactly represented) when converting a floating point string to a number? var

Re: [Flashcoders] RadioButton CellRenderer vs. CheckBox CellRenderer

2006-03-07 Thread Rajat Paharia
John - PhilFlash has lots of great sample code for CellRenderers, including a radiobutton one. http://philflash.inway.fr/dgratingrd/dgratingrd.html best, - rajat On 3/7/06, John Mark Hawley [EMAIL PROTECTED] wrote: I have need of a DataGrid with one column filled with CheckBoxes, and another

[Flashcoders] textArea background colour

2006-03-07 Thread Simon Lord
How can I remove the border and background fill of a textArea component? ___ 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] Getting a screenshot of flash app?

2006-03-07 Thread Sean K . Moran
Anyone know an automated server-side way of getting a jpg screenshot of a flash app? Would need to be linux based...no windows here. TIA, Sean ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Getting a screenshot of flash app?

2006-03-07 Thread Johannes Nel
if it flash 8 you could use bitmapdata On 3/7/06, Sean K. Moran [EMAIL PROTECTED] wrote: Anyone know an automated server-side way of getting a jpg screenshot of a flash app? Would need to be linux based...no windows here. TIA, Sean ___

Re: [Flashcoders] trace inside the browser

2006-03-07 Thread Josh McDonald
Make sure that if you're using 7, that you've got 7.2, it cures all the problems where it mysteriously stops working I think :) -- I got a fever! And the only prescription, is more cowbell. Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED]

Re: [Flashcoders] Doh! Converting a floating point string to number loses precision

2006-03-07 Thread Ron Wheeler
The way you deal with it will depend on what you want to do. If you want to see is something is close enough to zero you subtract them and check the difference if (Math.abs(i - 952.86)=0.1){trace(close enough for me)}else {trace(Not the same)}; if (Math.abs(i -

[Flashcoders] Datefield cell renderer needed

2006-03-07 Thread Dave Rabkin
Anyone have a datefield cell renderer that works? I have a datagrid bound to a dataset bound to a RDBMSResolver. When the data returned via Flash Remoting is bound to the dataset's dataprovider, my datefield cell renderer won't display the dates. The dates are in -MM-DD format to keep

[Flashcoders] Flash Video / on2 VP6 Keyframes/Interframes

2006-03-07 Thread Vibol Hou
I'm looking for more information on how on2 Vp6 keyframes and interframes are related to each other in an FLV. I understand how the FLV file has been packaged up, but how does vp6 apply interframes to a keyframe to generate the final video frame? -Vibol

[Flashcoders] Create an mxp from the command line

2006-03-07 Thread Clint Modien
Anyone ever created an mxp from the command line? ___ 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 Premier

Re: [Flashcoders] components within custom components

2006-03-07 Thread JesterXL
Correct. - Original Message - From: Rich Rodecker [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 07, 2006 1:28 PM Subject: Re: [Flashcoders] components within custom components ok cool. so, if all my assets are on frame one, i

[Flashcoders] Create an mxp from the command line

2006-03-07 Thread Clint Modien
Anyone ever created an mxp from the command line? ___ 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 Premier

[Flashcoders] getURL not working

2006-03-07 Thread hidayath q
Hi all, I have doubt in getURL method.Im using a XML in a file which is more than 500 nodes. i will be creating new nodes dynamically in XML and i want to write it to a text file using PHP. im using the getURL method inside press of a button component to transfer the data from flash to PHP.but i

Re: [Flashcoders] Doh! Converting a floating point string to number loses precision

2006-03-07 Thread Boon Chew
I am aware of this issue in precision loss in floating point computation. But here we are talking about converting a number from string back to number. Why is it so hard to implement this correctly in the VM to ensure that the string when converted back to number is representated exactly the

Re: [Flashcoders] Doh! Converting a floating point string to numberloses precision

2006-03-07 Thread JesterXL
Late in the thread, and suck at math, but there was discussion about this on Flexcoders too. Something about how certain numbers are only so big in Flash Player, and there was talk of porting BigInt from Java. Might want to check the archives there, or join, and ask since more Adobe peeps

Re: [Flashcoders] Doh! Converting a floating point string to number loses precision

2006-03-07 Thread Andy Johnston
For this reason people usually use server side scripts to supply flash with correct calculations for finance apps. It might not look like a big deal until you are using Flash to do some financial app, where you obtain a number from a string variable, convert it to a number, divide it with

Re: [Flashcoders] getURL not working

2006-03-07 Thread Bob Leisle
getURL() is the wrong way to go for sending data. The Flash XML object has methods specifically for sending and receiving data. Read up on the XML.load(), XML.send() and XML.sendAndLoad() methods. They'll do you right. hth hidayath q wrote: Hi all, I have doubt in getURL method.Im using a

Re: [Flashcoders] getURL not working

2006-03-07 Thread Mick G
seems obvious, but you are adding a GET or POST to the getURL? On 3/8/06, Bob Leisle [EMAIL PROTECTED] wrote: getURL() is the wrong way to go for sending data. The Flash XML object has methods specifically for sending and receiving data. Read up on the XML.load(), XML.send() and

[Flashcoders] vector to jpeg or png, php

2006-03-07 Thread Aaron Smith
I searched the list archives for a good solution for generating a jpeg or png using php. nothing found. I know i've seen some articles on this here and there but can't remember where exactly. does anyone have any good links for this? Flash 8 preferred because of bitmap api. Also note the DPI