Re: [Flashcoders] BitmapData and Streaming Video

2005-12-14 Thread John Grden
Hey Lori, does it happen with progressive downloaded FLV's or true FCS streamed video? I've been able to do it with progressive's without a problem. On 12/14/05, Lori Hutchek <[EMAIL PROTECTED]> wrote: > > Hi All, > > I'm attempting to take a capture of the stage doing > BitmapData. I

[Flashcoders] [OT]License Management for Components Development

2005-12-14 Thread Wade Arnold
The company that I work for Is about to launch a large set of component. I would like to be able to restrict what URL's the components can run on based on user registration. Has anyone on the list ever written a license management system based on the per domain model? I would like to give the c

[Flashcoders] SWF Scaling Questoin

2005-12-14 Thread Robert Sandie
Was testing the scale features inside of Flash with an FLVPlayback component. Ran the simple script below. I would assume that when you move the debug screen the video object would stay the same size as the screen. This was not the case. I guess its a question of what "absolute zero" (0,0) is o

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
Oh man, I need to get me one of those! Crunching those big flash files can take a while on my machine. I use the word FLASH in an attempt to stay on topic. And more info regarding BDB and FSFS: http://subversion.tigris.org/faq.html#bdb-fsfs-convert It mentions that BerkeleyDB was the default,

[Flashcoders] sortable list? anyone?

2005-12-14 Thread Mike Lyda
Has anyone seen AS2 code to accomplish this: http://tool-man.org/examples/sorting.html It's doable, and so figure somebody has already done it.. and I'm feeling lazy and not wanting to re-invent the wheel. ;) __ Do You Yahoo!? Tired of spam? Yahoo

Re: [Flashcoders] Eclipse & FlashOut Setup Question

2005-12-14 Thread Robert Sandie
Sometimes its the simple things. Just had to -clean the directory. Also found a fairly useful tool for generating actionscript with UML: http://www.darronschall.com/weblog/archives/000174.cfm Robert Sandie wrote: Making the switch from SEPY to Eclipse and am having an issue with Eclipse V3.1.

RE: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Glenn J. Miller
Dual 1.8GHz Athlon MP's w/ 4GB RAM... ^_^ FWIW, at the command line as the svn repository owner: $ svnadmin create --fs-type fsfs /path/to/repos I believe if I'm not mistaken, BerkeleyDB is indeed the default... Hope this helps. Peace... -- Dok Skyymap, Inc. -Original Message- From: [E

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
Very cool! Thanks for popping in with that. I'm glad to see a heavier usage of SVN(on linux even!) in the web/flash world. Makes my life easier when I push for it as an emerging standard. Peace C PS: So I feel a bit dumb now, I must admit: I'm running FSFS. I thought I was running BerkeleyDB

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread guo haifeng
trace(this._alpha); trace(this._alpha-10); Output: 100 90 On 12/15/05, Judah Frangipane <[EMAIL PROTECTED]> wrote: > > how come floats arent exact? jk > > will floats be exact in AS3? or will future versions of flash support > big ints? > > judah > > John Dowdell wrote: > > > Jason Rayles wrote:

RE: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Glenn J. Miller
Chris, Just some 'nice-to-know' information. We're running several Subversion repositories on a Fedora Core 3 boxen - FSFS Subversion file system type. It absolutely rips a wake in the water for speed, and is very stable and secure as well (svn-ssh://)... Just thought I'd add my $0.03 {adjusted f

Re: [Flashcoders] Mp3:: issues...

2005-12-14 Thread Flavio Ramos
That's another old bug that macromedia tryes to forget. It exists since which version? 5.0? On 12/14/05, Mike Duguid <[EMAIL PROTECTED]> wrote: > > Use 44/22/11Khz sample rates and you should be fine. > > On 12/14/05, Karim Beyrouti <[EMAIL PROTECTED]> wrote: > > Hello ! > > > > We are using

[Flashcoders] Eclipse & FlashOut Setup Question

2005-12-14 Thread Robert Sandie
Making the switch from SEPY to Eclipse and am having an issue with Eclipse V3.1.1 and FlashOut. Everything is setup including MTASC and ASDT but FlashOut is not showing up in the preferences bar. I downloaded the FlashOut Package and unzipped the com.patapenko.flashout_0.1.6 package in eclipse\

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Sorry about all the posts, i seem to have it under control now, thanks for all the help on getting me started with this! i think im gonna love it! Chris Hill wrote: Lol, this is a problem that I had. If you uncomment that line, you need to uncomment the line that has [general] in it, too. The

Re: [Flashcoders] remoting v service

2005-12-14 Thread Al Veldhuis
Hey Gavin, An option you could try out is Emissary from FlashLink Solutions. I have been working with it for a short while now and it works pretty well. Its not exactly flash remoting but it is really easy to get data to and from a MS SQL server in Windows. I believe the URL is http://www.fl

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
This is what my I get when I change the svnconf file. THis is what mine looks like: Its like the password-db is changing the directory it look sin or something? Error: Commit failed (details follow): Error: Can't find config file 'C:\svnrepos\juicyink\conf\bob' Error: Check the path and/or U

[Flashcoders] BitmapData and Streaming Video

2005-12-14 Thread Lori Hutchek
Hi All, I'm attempting to take a capture of the stage doing BitmapData. It seems to be working throughout my movie, EXCEPT, when I have streaming video on the stage. Has anyone else run into this issue, maybe come up with a work around? Here's the code I'm using, It's really strai

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
Lol, this is a problem that I had. If you uncomment that line, you need to uncomment the line that has [general] in it, too. The [general] bit is called a section header. But you don't need to uncomment the 'auth-access = write' line, that's a default. But you will need to uncomment the 'passw

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Judah Frangipane
how come floats arent exact? jk will floats be exact in AS3? or will future versions of flash support big ints? judah John Dowdell wrote: Jason Rayles wrote: Has this been discussed? Flash player 8 trace(this._alpha); this._alpha -= 10; trace(this._alpha); Output: 100 89.84375 Not th

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
> > I haven't checked various pocket devices on MIDI recently, but the > problem on desktops has been when you get varying capabilities on > various platforms, so that the same MIDI file can sound different on > different machines. > > jd > > I understand that there are various complications, espec

Re: [Flashcoders] Mp3:: issues...

2005-12-14 Thread Mike Duguid
Use 44/22/11Khz sample rates and you should be fine. On 12/14/05, Karim Beyrouti <[EMAIL PROTECTED]> wrote: > Hello ! > > We are using this software that generates mp3's, which i am loading into > flash. > The problem: flash makes a mess of decoding the audio. check it out: > >http://kurst

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Awesome thanks for all the help, I have figured out how to get it working but others on my network cannnot commit their changes. It says this: Connection is read-only I then went into the svnserve.conf file and uncommented this line (anon-access = write) thinking it would be available but th

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread John Dowdell
Jason Rayles wrote: Has this been discussed? Flash player 8 trace(this._alpha); this._alpha -= 10; trace(this._alpha); Output: 100 89.84375 Not that I can readily recognize, although from the fragments above it looks vaguely like the normal "how come floats aren't exact" topic. jd --

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Morten Barklund Shockwaved
Jason Rayles wrote: Has this been discussed? Flash player 8 trace(this._alpha); this._alpha -= 10; trace(this._alpha); Output: 100 89.84375 Yup, alpha is stored internally as values dividable by 100/256. Thus the value upon setting will be rounded to the nearest legal value. Use another var

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Martin Wood
quite a few times, its not just v8 :) alpha is a byte value (0-255) mapped into the range 0-100 martin Jason Rayles wrote: Has this been discussed? Flash player 8 trace(this._alpha); this._alpha -= 10; trace(this._alpha); Output: 100 89.84375 Thanks, Macromedia! -- Martin Wood http://re

RE: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Ben Smeets
Hi Jason, The solution is like others already mentioned. The problem is the getNextHighestDepth and removeMovieclip unable to remove mc's in too high or too low levels. How i solve this is to first swapDepths and after that remove. 1. attach at getnexthighestdepth 2. mc.swapDepths(9); (i

[Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Jason Rayles
Has this been discussed? Flash player 8 trace(this._alpha); this._alpha -= 10; trace(this._alpha); Output: 100 89.84375 Thanks, Macromedia! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/f

Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Jason Rayles
Magic, that's it. I am not using any prebuilt components, but I have made some components that extend UIObject, so I suspect that is why getNextHighestDepth returns 1048576, which I guess is outside the valid range. The documentation tells me to use the version 2 DepthManager class, but I am no

[Flashcoders] Phantoming in List Component

2005-12-14 Thread Steve Krichten
I've had similar problems. And when you do get it working it still flickers due to the scrolling algorithm (refreshing of items). That's why I made this... http://www.sleekdigital.com/downloads/scrolllistexample.zip http://www.layer51.com/proto/d.aspx?f=1396 This is a bit out-dated now, but

[Flashcoders] Mp3:: issues...

2005-12-14 Thread Karim Beyrouti
Hello ! We are using this software that generates mp3's, which i am loading into flash. The problem: flash makes a mess of decoding the audio. check it out: http://kurst.co.uk/wotw/cepstralTest/ http://kurst.co.uk/wotw/cepstralTest/audio.mp3 i think its because its encoded usi

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
You should be able to delete the folder you imported into the repo, but I am hesitant to tell you to delete anything just in case. I have not used the native filesystem method, I'm using the BerkeleyDB method on a linux box. I believe there is no way to convert, but you can always export the r

Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Cinetryx
Hello, I noticed a problem with this function, getNextHighestDepth, it positions the clips to too high level and so removeMovieClip does not delete your clip. You have to put yourself a level to your clip. bye Jason Rayles a écrit : Is there a reason that a movie clip attached to _root cann

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

2005-12-14 Thread Moses Gunesch
Martin - by the way - I've been trying to email you for several days now, but your server's spamcop is bouncing me. Maybe you can write me from an alternative address (webmail?) or get your server admin to whitelist my IP. Sorry to ping the list with this folks but, I have no other way to g

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Perfect this is what I was just reading in TortoiseSVN help. I just wasnt sure if I could then delete the folder I had imported. It says in the help that their are 2 ways in which it can store the files, in a db, or in the native filesystem. How do you change between the two and will using t

Re: [Flashcoders] Live Preview Woes

2005-12-14 Thread Judah Frangipane
That worked. Thanks :) // in my class // traces 'true' in components on the stage and 'undefined' in test movie trace("_global.isLivePreview = " + _global.isLivePreview) Derek Vadneau wrote: If your component live preview is generated by Flash, when you specify an AS2 class in the Component D

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

2005-12-14 Thread Cinetryx
Thank for your answer, i already that but when you fast rollOver/rollOut on several intance you can see a problem on tween's. example : i have a button on my scene with 2 clip on this, "bullet" and "texte". button.onRollOver = function(){ this.bullet.stopTween(); this.texte.stopTween();

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
I believe the issue is that you don't need to stick your project into c:\svnrepos\project1. When you create the repos, it creates a dir structure like this: conf/ dav/ db/ format hooks/ locks/ README.txt And saves your files in its own special way. After you import the c:\svnrpos\projec

Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Morten Barklund Shockwaved
Jason Rayles wrote: Is there a reason that a movie clip attached to _root cannot be removed using removeMovieClip? If _root.getNextHighestDepth() returns a negative value, then you cannot remove the movieclip unless you swap it up to some positive depth. I'm not sure, but that might be it.

Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Hans Wichman
Hi, is this in an empty movie, or a movie with components in it? Try and trace the depth, if its higher than a certain number (which may be caused by components on your stage) you have to swap it to a lower depth first. greetz Hans At 10:27 PM 12/14/2005, Jason Rayles wrote: Is there a reason t

Re: [Flashcoders] Flexbuilder 2: how can I hide subcontrolsoftheRichTextEditor?

2005-12-14 Thread JesterXL
I just read the documentation to find out what buttons are where: http://livedocs.macromedia.com/labs/1/flex/langref/index.html MXML Only Components > Rich Text Editor There are no class files provided in this build. I think the buttons are in an HBox, so if you do the below, it'll resize for

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
When I do a commit, after adding the file of course. The commit happens, but where does it stop that file? Shouldnt it post my new file to the repository? instead it just sends it back to where i first created it like so: Adding: Desktop\test\tests.txt Sending Content: C:\Documents and Setti

[Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Jason Rayles
Is there a reason that a movie clip attached to _root cannot be removed using removeMovieClip? if I do _root.attachMovie("square", "s", _root.getNextHighestDepth()); then _root.s.removeMovieClip(); does not remove the clip. However if I do mc.attachMovie("square", "s", mc.getNextHighestDepth()

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread David Skoglund
I think you should use the "commit" command to commit you changes instead of "update". /David Skoglund www.monsterland.se - Original Message - From: "Mike Boutin" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, December 14, 2005 10:09 PM Subject: [Flashcoders] SV

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Weyert de Boer
Hi John, I haven't checked various pocket devices on MIDI recently, but the problem on desktops has been when you get varying capabilities on various platforms, so that the same MIDI file can sound different on different machines. Yes, but that's probably because every platform and/or videocard

Re: [Flashcoders] Phantoming in List Component

2005-12-14 Thread John Giotta
This tutorial on ActionScript.com helped alot! http://www.actionscript.com/index.php/fw/1/displaying-images-in-a-datagrid-utilizing-a-cell-renderer/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listin

[Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Just a few questions about SVN & TortoiseSVN. I have ran the 1 click setup SVN that installs Subversion and TortoiseSVN. It created the repository in c:\svnrepos I stuck my project in a folder c:\svnrepos\project1, then I import it into the repos. Now when I make a new directory and use CH

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread John Dowdell
Tyler Wright wrote: Also, am I incorrect in understanding that many hand-held devices with Flash Lite already have MIDI available in some form? I haven't checked various pocket devices on MIDI recently, but the problem on desktops has been when you get varying capabilities on various platform

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
Also, am I incorrect in understanding that many hand-held devices with Flash Lite already have MIDI available in some form? I don't know what the implemenations are or what they would mean to the common OS. Does anyone have experience with this? ___ Fla

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
Thank you. I understand that "Who wants (feature)?" is a very general request. In this instance I was probing for feedback on the exact same questions you're asking, which the developers of Flashcoders gave. To sum up directly, there were a few areas covered in these conversations: Developers w

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread fla coder
xnice! On 14/12/05, Martin Wood <[EMAIL PROTECTED]> wrote: > > I urge you to get someone to have a good read through the discussion. > There was a lot of good input and i think improving the audio > capabilities of flash would be a huge step forward for what i consider > to be the most neglected a

Re: [Flashcoders] CSS styles vs. TextFormat

2005-12-14 Thread Joseph Balderson
> I'd like to know, what are advantages (if any) of using TextFormat > instead of CSS ? HTML textfields with embedded fonts using formatting-specific tags cannot use setTextFormat or setNewTextFormat. The formatting must be defined in a TextField.styleSheet object. Of course, you can use HTML

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Martin Wood
I urge you to get someone to have a good read through the discussion. There was a lot of good input and i think improving the audio capabilities of flash would be a huge step forward for what i consider to be the most neglected aspect of flash. Or, if all else fails then persuade adobe to buy

Re: [Flashcoders] Live Preview Woes

2005-12-14 Thread Derek Vadneau
If your component live preview is generated by Flash, when you specify an AS2 class in the Component Definition dialog, then you can check for _global.isLivePreview in your class code. Some of the V2 components use this. That variable is populated by Flash when your live preview is generated

Re: [Flashcoders] Phantoming in List Component

2005-12-14 Thread John Giotta
Ok, I understand what your saying about setValue being called with every change to the List, but now I'm having problems with my thumbnail icons disappearing. I basically what to build a CellRenderer that allows me to load external JPEGs as the cell icon. __

Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda
AH! It all makes sense now. Thanks for your help, I really appreciate it. Helmut. Helen Triolo wrote: Helmut Granda wrote: Thanks all for your help on this. What I can't get my head around and maybe that is why I cant get this to work is, how does the DG knows to get the info from certail

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Stan Vassilev
I'll give a hint :) - Don't include default General Midi Bank (that'd be at least 1-2 MB to sound reasonable, so it's out of question, that's like bundling fonts in the player, pointless), just provide the engine and some sort of instrument/patch format we can load - This is similar to the M

Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helen Triolo
Helmut Granda wrote: Thanks all for your help on this. What I can't get my head around and maybe that is why I cant get this to work is, how does the DG knows to get the info from certail columns only? I dont see the declaration that the information belongs to the DG. Using Helen's sample

Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda
Thanks all for your help on this. What I can't get my head around and maybe that is why I cant get this to work is, how does the DG knows to get the info from certail columns only? I dont see the declaration that the information belongs to the DG. Using Helen's sample mydata = [{company:a, i

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread John Dowdell
Tyler Wright wrote: This conversation has now been posted to http://codext.xtyler.com/code/2 I've posted a summary along with a direct quote of the entire conversation which I hope will continue to receive contributions. If everyone approves, I'll send it off to MM, though I know they also keep

[Flashcoders] Re: FLV Length

2005-12-14 Thread Cole Peterson
This is in response to > Does anyone know how to retrieve the length of an .FLV file with C#? Flash Mx 2004: Update your C:\Program Files\Macromedia\Flash MX 2004\en\First Run\Classes\NetStream.as with function onMetaData(info:Object):Void; to enable getting the duration of your flv's

[Flashcoders] Using the magic mx.utils classes

2005-12-14 Thread Sander
Hi there, I found a nice list of classes that shipped with Flash 2004, like Xpath and Collection. But these seem to be the "best" documented ones. Others like mx.utils.errorStrings are a mystery even to Google. Does anyone know of a website that explains the usage of these classes? Needle

[Flashcoders] Live Preview Woes

2005-12-14 Thread Judah Frangipane
I am working on a component that attaches a movieclip. When I drag it to the stage it attaches multiple copies of this movieclip skipping my checks and balances. But when I test the movie it works fine and only shows one instance like i designed it to. Is there anyway to find out in my compon

[Flashcoders] Flexbuilder 2: Drag & Drop

2005-12-14 Thread Tom Bray
How can I prevent the data in the dragSource from being deleted from the dragInitiator? I'm using MM's drag & drop example below. When you drag an item from one list to the other, the data is removed from the dragInitiator and I don't want that to happen. I tried supplying my own dragComplete even

[Flashcoders] Fast Property Compare

2005-12-14 Thread clark slater
Hey Folks, Originally sent this yesterday but it never seemed to come through. Apologies if you get it twice. I'm working on some code for a catalog style application and I need to compare objects from two different sets of data. Any object may have 10+ properties and I need to know if *some* pro

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

2005-12-14 Thread Moses Gunesch
On Dec 14, 2005, at 5:38 AM, Martin Klasson wrote: So I can not recommend this engine as the 1.1 version has some problems, which DID work in the 1.0 release. I have emailed Moses about this, but he might not be up yet. Christ almighty Martin! It's called a private beta and you are breakin

Re: [Flashcoders] Attaching components within components

2005-12-14 Thread Pranav Negandhi (Fractal Ink)
I think I made some breakthrough here. When I trace a typeof(oStackVar) it returns "object" instead of "movieclip". What gives? I thought components were movieclips. I'm guess that because its being interpreted as an object, the createClassObject method doesn't run correctly. Anybody got any i

Re: [Flashcoders] SendAndLoad and Paypal problem

2005-12-14 Thread David Rorex
On 12/14/05, Thierry V. <[EMAIL PROTECTED]> wrote: > Hello List !! > > I try to make a cart in a full flash site, and since 1 week, try to work > with paypal, but no success... > > my code : > > [code] > var lv:LoadVars = new LoadVars(); > lv.sendAndLoad( url, lv, "POST" ); > [/code] > > > If I try

RE: [Flashcoders] DataGrid - Content

2005-12-14 Thread Robert Chyko
When you are creating the columns in your datagrid do not create a column for the id's, just for whatever you want to actually display. Then you can put whatever values you want into your DataSet, but the Datagrid will only display the values that have columns associated with them. So if in your

RE: [Flashcoders] Loading Xml from Flash over Http

2005-12-14 Thread Brent Gore
It seems that using the "/dir/file.xml" works over "dir/file.xml". This is a step in the right direction, but I'm sure we'll still get a lot of complaining about this. :) Even worse, our dev environment is IIS, but the production environment is unix, so who knows what will happen. Thanks for the

Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda
Thanks Robert, Im glad to hear it can be done, with a for loop I am populating the Datagrid: myDataSet = newArray(); for (var i = 0; iHow would I avoid creating a new column and not getting an error from the compiler? Sorry I have been strugling with this project for a LONG time a

Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helen Triolo
Put your contents into one array with object elements and use the columnNames property to specify only the columns (ie, object properties) you want to show. For example, mydata = [{company:a, id:3}, {company:b, id:54}, etc]; mygrid.columnNames = ["company"]; There's a working example here: h

Re: [Flashcoders] image manipulation in Flash

2005-12-14 Thread Helmut Granda
Maybe the following tutorial will get you started: http://www.tutorialized.com/tutorial/Using-Advanced-Bitmap-Color-Manipulation/3124 Helmut. rishi wrote: Hi I want to do image manipulation in Flash. Problem Definition. I have a png image exported at 80% quality . I am using 4 colo

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
I should be the one to thank you guys. Anyone also know the link the the MM wish list? Tyler On 12/13/05, Weyert de Boer <[EMAIL PROTECTED]> wrote: > > Yeah, looks nice! > ___ > Flashcoders mailing list > Flashcoders@chattyfig.figleaf.com > http://chat

RE: [Flashcoders] DataGrid - Content

2005-12-14 Thread Robert Chyko
Sure, when you are setting up the Datagrid, just do not create a column for the id's. When you add a row to the Datagrid you can keep id as one of the values, but it just will not be displayed because there is no column for it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PR

[Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda
Is there anyway to add Data to the Data grid but to keep some of the data "hidden" for a later use? EXE: company = [a,b,c,d,e,f,g,h,i] id = [3,54,97,23,65,87,54,23] I am displaying the company array into my DataGrid, but I would like to keep the ID in relation to the company, I can create an a

Re: [Flashcoders] Flexbuilder 2: how can I hide subcontrols oftheRichTextEditor?

2005-12-14 Thread Tom Bray
Thanks again. Now, I'd like to update the layout of the subcontrols to account for extra space left by the ones I've hidden. Is that possible? Would I need to actually remove individual subcontrols with removeChild()? And can I move all the subcontrols so they're above the textarea instead of be

[Flashcoders] Attaching components within components

2005-12-14 Thread Pranav Negandhi
Sigh! I don't even know where to begin. I'm creating a component called Stack through the createClassObject command. A while later I'm creating a component called Card inside the Stack using createClassObject. And it returns null. The exact same line of code placed on the stage or on the construct

[Flashcoders] Looking for developer for start-up?

2005-12-14 Thread Jason Sosa
Building a start-up for the radio/music industry. Wondering if anyone is interested in an equity share for contributing development. Need a back end guy smart as shit. Heavy back end logic, lots of forms. Have industry partners and have been featured in Billboard Radio Monitor. ***

Re: [Flashcoders] FLV Length

2005-12-14 Thread Jordan L. Chilcott
The duration is located within the metadata of an FLV. Unless C# is able to read the metadata within an FLV, you can always read it within a Flash Player or browser and have it pass the info to C#. jord On Dec 14, 2005, at 5:55 AM, Jim Tann wrote: Does anyone know how to retrieve the lengt

Re: [Flashcoders] private/public troubles

2005-12-14 Thread grant
If I have a main Application class I generally drag it to the stage and then in my external code I have the application start in the onload method of the class. I never use root, in your case its probably not a big deal I just find sometime in the future a use of root would come back and bite m

Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread Weyert de Boer
You can also do this easily with Fusion 5, anyway it's not that difficuilt anyways. I saw some nice Sin City flows for Fusion 5 at IBC. Awesome. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listi

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Merrill, Jason
Keep the captions in an external XML file. Have an event trigger a text field to update. For example, I use Xpath and wrote this function, which updates based on a movie's current frame (because I am using the media playback component's cue points which advance the frames based on the cue points)

Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread Weyert de Boer
The compositing system used for something like this is typically a flame or inferno (autodesk/discreet) seat which can then motion blend between the still sequences. There are also some cheaper plugins for AfterEffects and Shake that will do this, albeit not nearly as good, which is why this

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
Yeah - sorry what I meant was if you use the flash 8 video encoder tool there's a whole section in the setting devoted to cue points, event triggering etc. It's a bit easier to set up than the old MX04 way if I recall. M > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PRO

Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread Jon Bradley
On Dec 14, 2005, at 10:37 AM, nik crosina wrote: This IKEA thingy is just brilliant! But I think it is a bit out of our reach time-wise and buclient budget wise. Techniology wise I wanted to get an idea from you guys as to whcih solution you would gravitate towards to. My gut feeling would be

Re: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Derivative
Sorry - Should have clarified. These movies are just Flash movies although I will be doing some FLV's in a while so that is helpful, particulary thrwoing the text in XML for the client. Sean On 12/14/05, Merrill, Jason <[EMAIL PROTECTED]> wrote: > When you mean, "movies" - do you mean video clips

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Merrill, Jason
>>You can embed cue points in flash 8 flvs You can also target Flash 7/use Flash MX 2004 to add cue points as well. Jason Merrill | E-Learning Solutions | icfconsulting.com NOTICE: This message is for the designated recipient only and may contain privileged or confidential informa

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Merrill, Jason
When you mean, "movies" - do you mean video clips or Flash movies? If you mean video clips, then Flash MX 2004 and Flash 8 have built-in cue point features. Coincidentally, I was just doing some of this last night for a Flash 7 file. Using the Media Playback component, you can add cue points to

Re: [Flashcoders] Xpath and aphostrophes

2005-12-14 Thread Helmut Granda
MM V7 AS2 Crashes too. Any Suggestions? So far Im working on testing if the string has a ' to change it to Hex and back. Helmut Helmut Granda wrote: MM V8 AS2. I havent tried with any other compilers, maybe a bug in the compiler? Helmut [EMAIL PROTECTED] wrote: are you compiling with th

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
You can embed cue points in flash 8 flvs Then use these to trigger your subtitles > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Derivative > Sent: 14 December 2005 16:26 > To: Flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] Displ

[Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Derivative
Hola - I am working on a project that includes several movies which the client wants to make more usable to hearing-impaired viewers. I have done this in the past simply by syncing up scrolling text on the timeline but this obviously gets annoying over several movies, edits, etc. I know Flash has

Re: [Flashcoders] Xpath and aphostrophes

2005-12-14 Thread Helmut Granda
MM V8 AS2. I havent tried with any other compilers, maybe a bug in the compiler? Helmut [EMAIL PROTECTED] wrote: are you compiling with the MM compiler or with MTASC and if so what version, i had the issue when running MTASC V9 and don't have this issue with 1.11 Grant - Original Messa

Re: [Flashcoders] private/public troubles

2005-12-14 Thread PR Durand
Thanx a lot Grant, I think you pointed right. 'will test it. Why on _root? because the project is a full external code, and this class is the core of the application, so why not putting it on _level0 (so mainSwf._root) ? Is it better to make a CoreComponent and drag it to the scene? PR [EMAIL

RE: [Flashcoders] Firefox bug?

2005-12-14 Thread Ben Smeets
The FireFox browser does not default see the body of an html page at 100% height of the browser window in later html standards. Getting rid of the doctype helps, because you force the browser into quirks mode where the body IS 100% height. Another solution is also to set the height of the body to 1

Re: [Flashcoders] private/public troubles

2005-12-14 Thread grant
did you type your instance of oCore on root ? if your data is not "typed" the iDE will not enforce access modifiers. e.g var core:Core = new Core() trace (core.oParam); /// should not compile var anotherCore = new Core() trace (anotherCore .oParam); /// should compile as anotherCore is not type

Re: [Flashcoders] Xpath and aphostrophes

2005-12-14 Thread grant
are you compiling with the MM compiler or with MTASC and if so what version, i had the issue when running MTASC V9 and don't have this issue with 1.11 Grant - Original Message - From: Helmut Granda [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 12/

Re: [Flashcoders] Firefox bug?

2005-12-14 Thread MetaArt
Yes, real pixel width and height values is a solution, that solve the problem, but so born other two! First, if user have a screen resolution less than 1024x768, must scroll vertical to see the menu buttons; second, if I wrote, as width value, the stage width, I can't see the background beyond the

Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread nik crosina
This IKEA thingy is just brilliant! But I think it is a bit out of our reach time-wise and buclient budget wise. Techniology wise I wanted to get an idea from you guys as to whcih solution you would gravitate towards to. My gut feeling would be to use Shockwave because of its 3D features, but inst

Re: [Flashcoders] Firefox bug?

2005-12-14 Thread Éric Thibault
The code inside your HTML page is : codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"; width="100%" height="100%" id="magmart" align="middle"> bgcolor="#7251bc" width="100%" height="100%" name="magmart" align="middle" allowScriptAccess="same

Re: [Flashcoders] Firefox bug?

2005-12-14 Thread MetaArt
Sorry but... can you tell me more (and more 'clear') about? thanx... Enrico Tomaselli +> web designer <+ [EMAIL PROTECTED] http://www.metatad.it ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] Firefox bug?

2005-12-14 Thread Éric Thibault
if instead of width="100%" height="100%" you put the actual real pixel dimentions in width and height (but then you will have scrollbars...) ? Because the swf IS 100% of my FF screen! It seems like a deficient implementation from IE... A+ MetaArt wrote: I have dev a Flash movie, showed

  1   2   >