[Flashcoders] Import gone

2005-12-07 Thread eric dolecki
Colleague is having a problem with Flash 8 Pro... it froze up and now since then he can't do any Import bitmaps, etc. into the IDE. JSFL commands don't appear to do anything either. Anyone else have any ideas? He has 2004 installed and is removing it, then removing F8, then reinstalling F8 to hope

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread hank williams
This new client is not in place of the current lightweight player. It is a separate thing, like central. So there will always be separate browser plugins for pdf and swf. Regards Hank On 12/7/05, Chad Mefferd <[EMAIL PROTECTED]> wrote: > Gone are the days of a lightweight flash player. > > On Dec

Re: [Flashcoders] universal toString() function

2005-12-07 Thread Jobe Makar
Hi Andreas, Give this a shot I think it will do what you need. Its a little messy since I just typed it really quick. Hope it helps: //---Some contrived complex structure to trace var myOb = new Object(); myOb.name = "jobe" myOb.animals = ["free", "gulliver"]; myOb.someArr = [{email:"[EMAIL PR

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread hank williams
I was just about to say it sounds like a browser, but with the ability to capture apps and content sychronize data, work offline and keep applets automatically up to date. I think its basically central, but in a UI that looks more like a browser. Regards Hank On 12/7/05, Mike Mountain <[EMAIL PR

[Flashcoders] [ann] Reminder: Sydney Developers Group December Meeting

2005-12-07 Thread Chris Velevitch
Tues, 6th Dec, ActionScript 3 by Robin Hilliard at 6pm for 6:30 start at MLC School Burwood. Tonight Robin Hilliard of Rocketboots discuss and show us Actionscript 3. While FlashDev meetings are free and open to all it's best to RSVP to help with catering. http://www.flashdev.org.au/program/ htt

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Chad Mefferd
Gone are the days of a lightweight flash player. On Dec 7, 2005, at 10:07 AM, Mike Mountain wrote: Our long-term plan is to develop a "universal client" by combining PDF, Flash and HTML in a single, integrated runtime. How does this differ from a browser? M __

RE: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Mountain
> Our long-term plan is to develop a "universal client" by > combining PDF, Flash and HTML in a single, integrated > runtime. How does this differ from a browser? M ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figlea

Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Paul Hart
That sounds interesting. Any more details? On 07/12/05, Zoltan Csibi <[EMAIL PROTECTED]> wrote: > Hi Michael > > Don't know if this is in your timeframe but we are preparing the alpha > release of the Fluorine .NET remoting gateway. This works like the MM one > for .NET and additionally supports

RE: [Flashcoders] Can FCS detect player version?

2005-12-07 Thread Alistair Miller
If you are just looking to perform different actions per flash version... Using a flash 7 movie (have not checked 8 but assume it would work on that as well) you can check what version of flash the client is being used. Then code specific actions for that version of flash to execute. In one proj

[Flashcoders] Re: Re: Flash is a single-threaded app? Maybe it'sjusttheAVM? or...

2005-12-07 Thread A.Cicak
Believe me multithreding is lot harder to debug, read and maintain in most cases assuming that onEnterFrame is not made in way that you put 20 loops all in one function (onEnterFrame) . You could make object (MultiLoop) which has method Update, some private counters, etc. and for each problemati

RE: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Zoltan Csibi
Hi Michael Don't know if this is in your timeframe but we are preparing the alpha release of the Fluorine .NET remoting gateway. This works like the MM one for .NET and additionally supports pageable recordsets and .NET custom authentication (Fluorine is open source) Zoli -Original Message--

RE: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Sara Spalding
The answer about the Flash Player and Adobe Reader was a little confusing. We updated the Q&A to make it more clear. Here's the updated text: What are Adobe's plans for Flash Player and Adobe Reader? Our long-term plan is to develop a "universal client" by combining PDF, Flash and HTML in a sin

Re: [Flashcoders] universal toString() function

2005-12-07 Thread Helen Triolo
Here is a start for you, from Dave Yang: http://quantumwave.com/flash/listObject.html. Somewhere he had a method to show arrays formatted in a way similar to what you show too, but I can't find that. This one works nicely though -- I tried a quickly modified version to see: var o:Object = {

Re: [Flashcoders] eclipse UNDELETE

2005-12-07 Thread Chris Allen
Try this. Right click on the parent directory (or if it was the root directory, click on the project) in the Navigator, Package Explorer, or Flash Explorer (FDT only) pane and select Restore from Local History. You should be able to get it back like that. For better protection and help with vers

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

2005-12-07 Thread Martin Wood
hank williams wrote: Why bother with compression. This just creates more processor overhead. a minute of cd quality sound should be 10mbytes. This is not so bad. I dont know if flash would have any memory issues with this but I doubt it. In any case it could be chunked. But then the issues is w

[Flashcoders] Q:using BitmapData to Record Screen Actions

2005-12-07 Thread bitstreams
Hi I want to create a simple app that allows the creation of 'recordings', basically movies that are recordings of anything that might happen on the stage. I'd appreciate any feedback on my basic logic which is as follows: 1) Create a 'snaphot routine whose only purpose is to create a

[Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Judah Frangipane
FAQ Adobe acquisition of Macromedia http://www.adobe.com/aboutadobe/invrelations/adobeandmacromedia_faq.html Interesting key points: *How long will it take to integrate Flash Player and Adobe Reader?* It will be a multiyear effort. Ultimately, our goal is to combine both in a single client.

[Flashcoders] universal toString() function

2005-12-07 Thread Andreas Weber
I'm quite sure that this must be around somewhere, but this time I didn't have any luck searching the archives... What I'm looking for is similar to a deep-copy/clone method (e.g. Arul/Tatsuo http://chattyfig.figleaf.com/mailman/htdig/flashcoders/2004-March/106149.htm l) but instead of getting a c

Re: [Flashcoders] Can FCS detect player version?

2005-12-07 Thread Éric Thibault
Just an idea: If you place a flash 3, 4 or 5 inside your HTML and inside that flash you detect the version, you could than loadMovie a SWF accordingly? What happens if I load a 8 SWF inside a 5 SWF are my 8 fonctionnalities still execute? :-\ A+ inbox.flash wrote: Is there a way

[Flashcoders] Can FCS detect player version?

2005-12-07 Thread inbox.flash
Is there a way without using javascript, for a flash app (maybe FCS?) to detect the player version? Need to send the right stream depending on flavor. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/ma

Re: [Flashcoders] Re: Flash is a single-threaded app? Maybe it's justtheAVM? or...

2005-12-07 Thread Chris Allen
On 12/7/05, A.Cicak <[EMAIL PROTECTED]> wrote: > I dont understand how your UI could lock in the first place? Sockets and > sounds are already working in another thread and all other code which could > lock the UI (like some long loops, etc.) can be made by "emulating" loop > with onEnterFrame and

[Flashcoders] [OT] Job in Boston

2005-12-07 Thread Chris Allen
Okay, now that Flashcoders is back up I'm trying again, here is what I tried to post on Monday: > Hi, > > I just wanted to let everyone know of an opening at Mass General Hospital > in Boston. We are looking for a excellent Java and Flash developer. You > can check out the posting here: > http:

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

2005-12-07 Thread bryan.rice
On Dec 7, 2005, at 8:43 AM, hank williams wrote: But I am really curious about this loader thing. I am not really aware of it. It sounds like a huge deal. It is a very cool AS3 feature: http://www.flashguru.co.uk/actionscript-3-new-capabilities/#more-606 blue skies, bryan __

[Flashcoders] License rules when distributing Flash exe files

2005-12-07 Thread brian groth
Hi I have tried to search for info on the license rules when distributing Flash exe files. I have had no luck. Can someone point me in the right direction? Thanks Brian ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.fig

[Flashcoders] Re: Flash is a single-threaded app? Maybe it's justtheAVM? or...

2005-12-07 Thread A.Cicak
I dont understand how your UI could lock in the first place? Sockets and sounds are already working in another thread and all other code which could lock the UI (like some long loops, etc.) can be made by "emulating" loop with onEnterFrame and few counters. "Scott Hyndman" <[EMAIL PROTECTED]> w

RE: [Flashcoders] XML question

2005-12-07 Thread Glenn J. Miller
Variable scope... Try declaring them *outside* the onLoad() function, because those variables conveniently drift out of scope (release themselves) as the code exits that function... Hope this helps... -- Dok Skyymap Inc. 770.321.3967 Office 770.321.3454 Fax -Original Message- From: [EM

RE: [Flashcoders] Swtich Statement issue!?

2005-12-07 Thread Glenn J. Miller
Dan, Does a strict cast to the Number datatype process correctly? switch(Number(currItem.getMediaType())) { case VideoVO.FLV_STATE: break; default: break; } Or var _fState:Number = Number(currItem.getMediaType());

Re: [Flashcoders] swf to pdf

2005-12-07 Thread g.wygonik
hi igor i know that there are server-side tools to convert images into PDFs. should just be a matter of hooking up a PHP front-end to them. although, i wouldn't doubt there's a PHP PDF library to do it too. a search over at www.planetpdf.com may help. the next version of my blazePDF component all

Re: [Flashcoders] HTML in XML

2005-12-07 Thread JOR
You want to use .nodeValue when accessing CDATA or the data will be escaped. JOR ___ === James O'Reilly === === SynergyMedia, Inc. === www.synergymedia.net Mike Boutin wrote: I am bring in some html text to show in flash in an xml file like this:

Re: [Flashcoders] HTML in XML

2005-12-07 Thread Sander Janssens
Make sure your XML document is in Unicode. I use Unicode-8, but our ASP pages write Unicode-16. You don¹t need any CDATA tags. I have XHTML info bubbles with CSS and images; text is like this: Network Address Translation NAT or Network Address Translation takes place on the boundary bet

Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Paul Hart
I have written a .NET based web service(for a game scoreboard) which I use to read/write to a SQL database from flash, the type of data source doesn't matter to .NET, if you want I can package it up and send the source to you? Let me know because I'll need to remove sensitive connection string det

Re: [Flashcoders] Filereference.upload

2005-12-07 Thread Mike Duguid
If you read flashes built in help files ActionScript classes > FileReference > upload it tells you 100mb On 12/5/05, rishi <[EMAIL PROTECTED]> wrote: > Hi > > > > Is there any Limit to size of file with uploading file greater than 10 > mb. Although with php/asp scripts I have uploaded more than

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

2005-12-07 Thread hank williams
> I think one of the biggest challenges for this idea would be encoding > the sound into the created swf, im not really up for writing an mp3 > encoder in actionscript. But if there is a more simple encoding scheme > that can be used then it would be one route to synthesizing and > processing audio

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

2005-12-07 Thread Martin Wood
being able to read the data is cool, but just to say it one more time, being able to create audio data would be great. I do have one idea which i'll attempt if it doesnt look like we will get sound buffer access when the next player is released. As i mentioned earlier there is a Loader.loadBy

Re: [Flashcoders] Flash is a single-threaded app? Maybe it's just theAVM? or...

2005-12-07 Thread hank williams
On 12/7/05, erixtekila <[EMAIL PROTECTED]> wrote: > > Le 6 déc. 05, à 22:26, Scott Hyndman a écrit : > > > And just as a side note, I came up with an interesting idea today on > > how > > to emulate multiple threads in Flash. Just use more than one movie! > > Talk > > between the UI movie and the b

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

2005-12-07 Thread hank williams
Thanks, but could you give me a little overview of what that is. There is only code with no description. Thanks Hank On 12/7/05, Robert A. Colvin <[EMAIL PROTECTED]> wrote: > http://www.richapps.de/?p=23 > > check it out..;) > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAI

Re: [Flashcoders] Applying tween class to textfields

2005-12-07 Thread erixtekila
FYI, I made another tween engine build on a "new concept". I just have published some source code on my site : http://www.v-i-a.net/blog/archives/2005_11.html For the none frenchist, here is an overview. If you find it interesting, I'll put this in osflash site. Here is the idea behind this imp

Re: [Flashcoders] Flash is a single-threaded app? Maybe it's just theAVM? or...

2005-12-07 Thread erixtekila
Le 6 déc. 05, à 22:26, Scott Hyndman a écrit : And just as a side note, I came up with an interesting idea today on how to emulate multiple threads in Flash. Just use more than one movie! Talk between the UI movie and the background worker movie with a LocalConnection object, and you're in bu

Re: [Flashcoders]read attributes names in XML

2005-12-07 Thread GregoryN
Well, I found solution myself. Assuming that n:XMLNode is the node in question: for(var i in n.attributes){ trace("n.attributes[" +i+ "] = "+n.attributes[i]); } Thanks. -- Best regards, GregoryN http://GOusable.com Flash

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

2005-12-07 Thread Robert A. Colvin
http://www.richapps.de/?p=23 check it out..;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Wednesday, December 07, 2005 8:07 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Who wants MIDI in the Flash Player? > the 8.5 p

Re: [Flashcoders] HTML in XML

2005-12-07 Thread erixtekila
Le 6 déc. 05, à 19:20, Mike Boutin a écrit : I am bring in some html text to show in flash in an xml file like this: When i trace it back in flash, it shows up like this: picture 0 Isn't it the expected behavior : to escape the html tags ? If you want to display the html

RE: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Pete Hotchkiss
Openamf is not .NET http://starwolf.ch/ is -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Serge Jespers Sent: 07 December 2005 12:56 To: Flashcoders mailing list Subject: Re: [Flashcoders] flash and ASP.NET Have a look at http://www.openamf.org Don't k

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

2005-12-07 Thread hank williams
> the 8.5 player already has an FFT (aka sound spectrum) function built > in, but i think its buggy (this is what i have read, ive not tried it yet) > Are people currently trying to do sound related stuff? Hank > :) > > martin > ___ > Flashcoders maili

Re: [Flashcoders] read attributes names in XML

2005-12-07 Thread Karthik
The attibutes property is actually an Object containing all the attributes for a node, that you can cycle through using a for..in loop. hth -K On 07/12/05, GregoryN <[EMAIL PROTECTED]> wrote: > Hello Flashcoders, > > I'd like to save attributes names from XML file as properties of > some obje

Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Martin Wood
does it have to be asp? you can run php on IIS and php has ODBC libraries http://us2.php.net/odbc so flash -> amfphp -> ODBC bingo. :) also you can run apache on windows, you dont have to run IIS. It depends on what your constraints are i suppose. martin Serge Jespers wrote: Have a look

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

2005-12-07 Thread Martin Wood
On another note I also think, particularly with the speed of 8.5, that it would be great to give us direct access to the sound buffer. I am not sure how fast 8.5 math will be but if you can do a good FFT we could be making actual synthesizers and audio processors in flash. To me that would be cool

Re: [Flashcoders] read attributes names in XML

2005-12-07 Thread Hans Wichman
http://www.sephiroth.it/file_detail.php?id=129 At 01:55 PM 12/7/2005, GregoryN wrote: Hello Flashcoders, I'd like to save attributes names from XML file as properties of some object. For example: XML (fragment): ... ... Result: ... my_object.attr1; // value: val1 my_ob

Re: [Flashcoders] Re: Slightly OT: Jaws

2005-12-07 Thread Karthik
Thanks. I was actually having trouble getting *anything* read by JAWS on XP + any browser + any version of Flash on two different PCs. The only way I've been able to get this working now is by setting things up on fresh install of Win2k SP4 and IE. Cheers -K On 07/12/05, Naveen <[EMAIL PROTECTED]

Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Serge Jespers
Have a look at http://www.openamf.org Don't know if this can help you but it's also a third party remoting solution. I need to create a Flash application for a small non-profit can't afford the $999 price tag of MM's Flash Remoting gateway. Is there a third party remoting solution like AM

[Flashcoders] read attributes names in XML

2005-12-07 Thread GregoryN
Hello Flashcoders, I'd like to save attributes names from XML file as properties of some object. For example: XML (fragment): ... ... Result: ... my_object.attr1; // value: val1 my_object.attr2; // value: val2 Of course I can assign these props literally: my_object.

Re: [Flashcoders] floating point

2005-12-07 Thread Hans Wichman
k, thanks all. i went for the boundary check. the other one was ""+i == "0.8" which was even dirtier ;) At 12:33 PM 12/7/2005, Danny Kodicek wrote: - Original Message - From: "Toon Van de Putte" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, December 05, 2005 10:10

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

2005-12-07 Thread hank williams
I think midi support would be nice. In truth though, the question is a little broader than midi. It would be great if there were a sandbox safe way to access USB and/or firewire devices. Midi is but one. It would need to work something like the way that the webcam access works where the software as

AW: [Flashcoders] floating point

2005-12-07 Thread Kerem Gülensoy
try adding integers...i ran into the same problem some time ago... this will work: var i = 0; onEnterFrame = function () { i = i + 1; trace (i); if (i/10 == 0.7) trace("here"); } kerem -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im A

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

2005-12-07 Thread Johan Lopes
Very interesting thread. I recall a post on FlashCoders by Alexis Isaac a while back and I relayed it on my blogsite here: http://www.statik1.com/mt-weblog/archives/84.html He's the direct link to it: http://www.alexisisaac.net/products/flashMidi/, although as Martin mentioned you can also fin

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

2005-12-07 Thread A3D
Pros: Midi gives Flash / you an interface to communicate with the world out site your computer…and you can even make (sequens) music with it :) Cons: Lots of bad tunes. A3 Tyler Wright wrote: The Flash Player has evolved through the ages to provide the most needed functionality. Through each

RE: [Flashcoders] _root.getURL("javascript:..."); Local - Problems

2005-12-07 Thread lieven.cardoen
Nobody? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lieven Cardoen Sent: woensdag 7 december 2005 9:27 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] _root.getURL("javascript:..."); Local - Problems Hi there, I'm making a cd and

RE: [Flashcoders] Double click event

2005-12-07 Thread Sumeet Kumar
var timeInterval_int = 700; this.press_int = getTimer(); if ((this.press_int-this.lastPress_int)mailto:[EMAIL PROTECTED] On Behalf Of Flash guru Sent: Tuesday, December 06, 2005 2:32 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Double click event hi all, I was wondering if anyo

[Flashcoders] Passing Init object to a flash component

2005-12-07 Thread Manuel Saint-Victor
Hello, I am trying to pass an init object to a custom component using the following code: thisButton=game.createObject("GameButton", "button"+i+j, this.getNextHighestDepth(), {labelText:"button"+i+j, bColor:0x00}); I had tried unsuccesfully to set the button's style using thisButton.setStyle(t

[Flashcoders] Double click event

2005-12-07 Thread Flash guru
hi all, I was wondering if anyone knows of a double click event. I want to be able to double click on a movie clip to perform an action rather than a single click. any help would be great, thanks. -juegas ___ Flashcoders mailing list Flashcoders@chatty

Re: [Flashcoders] motion detection

2005-12-07 Thread Daniel Cascais
Yep, that did the trick. Thanks. On 12/7/05, Rob Dackson <[EMAIL PROTECTED]> wrote: > It seems to be a Quicktime Movie, so maybe you have a > problem with your QT installation? > > Direct link to the movie, if it works better: > http://www.playdocam.com/flash8/playdocam-flash8.mov > > /RobD > > 20

Re: [Flashcoders] motion detection

2005-12-07 Thread Rob Dackson
Cedric, Very very nice, thanks for the link! //RobD 2005/12/7, Cedric Muller <[EMAIL PROTECTED]>: > > some nice fire effect w/motion detection ... > I did some tests a few months ago, but then I didn't have Flash 8 > (coding without seeing the results > had to encode the swf file > then > test

Re: [Flashcoders] floating point

2005-12-07 Thread Boon Chew
This has to do with the fact that not every decimal value can be exactly represented by a binary floating point. So the results of adding a bunch of binary numbers that is not exact to begin with will come out to be different than the actual binary floating point for 0.8. You can either turn

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

2005-12-07 Thread Martin Wood
Interesting question, although ive made use of midi everyday for, well, too long now :), im really not sure if making it part of the player as a single functional unit would be the best move. Personally i would rather see a more open, low level approach to sound in the player upon which MIDI a

Re: [Flashcoders] floating point

2005-12-07 Thread Danny Kodicek
- Original Message - From: "Toon Van de Putte" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, December 05, 2005 10:10 PM Subject: Re: [Flashcoders] floating point var i = 0; var j= 0.8; j*=10 onEnterFrame = function () { i = i + 1; trace (i); if

Re: [Flashcoders] motion detection

2005-12-07 Thread Rob Dackson
It seems to be a Quicktime Movie, so maybe you have a problem with your QT installation? Direct link to the movie, if it works better: http://www.playdocam.com/flash8/playdocam-flash8.mov /RobD 2005/12/7, Daniel Cascais <[EMAIL PROTECTED]>: > > What does it do, apart from crashing IE and FF when

Re: [Flashcoders] motion detection

2005-12-07 Thread Cedric Muller
some nice fire effect w/motion detection ... I did some tests a few months ago, but then I didn't have Flash 8 (coding without seeing the results > had to encode the swf file > then test in a browser) ... so I didn't go to far with research, but it seems that motion detection in f8 is pretty s

Re: [Flashcoders] motion detection

2005-12-07 Thread Daniel Cascais
What does it do, apart from crashing IE and FF when you open it? > http://www.playdocam.com/flash8/fire.html -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.

Re: [Flashcoders] motion detection

2005-12-07 Thread Rob Dackson
Hi George, I don't know much about motion detection in Flash, but I think this site has the best example so far that shows it's definitely possible to make very exact and fluid detections in Flash 8: http://www.playdocam.com/flash8/fire.html // RobD - Original Message - From: "George"

RE: [Flashcoders] flash 8

2005-12-07 Thread Martin Klasson
Google on ExpressInstall, Or google on FlashObject, which is a javascript that implements a neat solution to printing out swf's to html, as well as can do detection and ExpressInstall. / martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL P

[Flashcoders] Re: Event and listener problem

2005-12-07 Thread old9
been fixed, I just forgot to initialize the EventDispatcher. sorry for the stupid question. :( 2005/12/5, old9 <[EMAIL PROTECTED]>: > > Hi there, > I've wasted the whole afternoon with the event and listener thing, I know > it could be another basic question, > but I just cant figure it out

[Flashcoders] macromedia.com

2005-12-07 Thread Mick Gow
OOooo http://www.macromedia.com/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] flash 8

2005-12-07 Thread dan
Hi all I want my users to migrate to flash 8 player How can I let them download the plug-in without redirect to macromedia site? Is there some easy way? 10x dan ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com

[Flashcoders] RE: How to make a class instance

2005-12-07 Thread Naveen
function deleteClasses(classInstance){ for(var i in classInstance){ if(typeof classInstance[i] == "function"){ delete model[i]; }else if(typeof classInstance[i] == "object"){ deleteClasses(classInstance[i]);

Re: [Flashcoders] where and how can I learn actionscript bytecode

2005-12-07 Thread Tyler Wright
It's not going to delete because somewhere else in your code you have a reference to that object. For example: var myObj = new A(); myObj.destory(); // won't be deleted until myObj no longer points to the class. If you really have your heart set on following something a little more OOP, try thi

Re: [Flashcoders] floating point

2005-12-07 Thread Toon Van de Putte
var i = 0; var j= 0.8; j*=10 onEnterFrame = function () { i = i + 1; trace (i); if (i == j) trace("here"); } Or is that just not possible (ie you don't know how many decimal spaces j will have)? On 12/4/05, Hans Wichman <[EMAIL PROTECTED]> wrote: > > Hi peeps, > related disc

[Flashcoders] Flash PHP XML problem

2005-12-07 Thread Sajid Saiyed
Hi friends, I am facing a new challenge (maybe not new to others here) I have this application where I am searching MySql database and returning the results in an XML format using PHP. I have some 600 records in the database (Which I feel is not too big.) Now, some of the results are showing up

[Flashcoders] Re: Slightly OT: Jaws

2005-12-07 Thread Naveen
Hi Karthik, One thing you would need to remember is that large text are not completely read out. I think it stops at 256 characters in Flash. Select the text at run-time in your flash text field, and it should read out. Regards, Message: 6 Date: Tue, 6 Dec 2005 06:40:12 +0530 From: Karthik <[E

Re: [Flashcoders] Flash Audio stream

2005-12-07 Thread Ramon Tayag
mpeg... layer 3? that's mp3. Yes, flash can do that quite simply. Mon On 12/7/05, Fredrik Lantz <[EMAIL PROTECTED]> wrote: > Hi i have an easy question, i am trying to play a music stream from the web, > the stream is in mpeg format. > > Is it possible for flash to play this or should i just dro

[Flashcoders] flash and ASP.NET

2005-12-07 Thread Michael Appelmans
I need to create a Flash application for a small non-profit can't afford the $999 price tag of MM's Flash Remoting gateway. Is there a third party remoting solution like AMFPHP that I could use? Essentially I need to read and write to an Access database on a Windows web host. Thanks for any sugges

[Flashcoders] Event and listener problem

2005-12-07 Thread old9
Hi there, I've wasted the whole afternoon with the event and listener thing, I know it could be another basic question, but I just cant figure it out please help.. //in ParaControl.as //here I defined 3 functions to receive the events sent by the ParaHolder instance //but there is something w

[Flashcoders] Flash Audio stream

2005-12-07 Thread Fredrik Lantz
Hi i have an easy question, i am trying to play a music stream from the web, the stream is in mpeg format. Is it possible for flash to play this or should i just drop it? I am using an ordinary sound object to load the stream a onLoad callback function to start it. Regards //Fredrik

Re: [Flashcoders] List Component

2005-12-07 Thread John Giotta
@Al: Thanks for the tip! If all else fails. @Ryan: Can you point me to one of those tutorials? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] external jpg resize script

2005-12-07 Thread GregoryN
Hello Mike, You should use another object (Object) as listener. Just replace your code with the following: //SET STAGE PROPERTIES Stage.showMenu = false; Stage.scaleMode = "noScale"; Stage.align = "LT"; //RESIZE EXTERNAL JPG var tmp:MovieClip; tmp = this.createEmptyMovieClip("bgExpand_mc", 1); t

Re: [Flashcoders] urgent

2005-12-07 Thread Danny Kodicek
>in flash how to cordinate moive name with variable like trace(_root["box_m" add i].d+(j).txt1) I *think* what you're looking for is (_root["box_m"+i].d+j).txt1 If the variables are i=1 and j=2, then this will find the variable d of the movieclip "box_m1", which, let's say, is "jiggle", and

Re: [Flashcoders] List Component

2005-12-07 Thread John Giotta
I found a nice tutorial at CommunityMX by Joey Lott, but I notice that when I mouse over the cell that it sometimes shifts the cell content. Plus, when the thumbnail's height is taller then the text it gets through off. ___ Flashcoders mailing list Flashc

Re: [Flashcoders] HTML markup for highlighted text...

2005-12-07 Thread Claus Wahlers
> I'm working on a chat, and what I want to do is "highlight" text that is > whispered. But the background-color style property doesn't work on spans, > does anyone know of a good way to set the background color of text in an > HTML text field? Is it even possible? Not possible, without using

Re: [Flashcoders] urgent

2005-12-07 Thread Danny Kodicek
>in flash how to cordinate moive name with variable like trace(_root["box_m" add i].d+(j).txt1) I *think* what you're looking for is (_root["box_m"+i].d+j).txt1 If the variables are i=1 and j=2, then this will find the variable d of the movieclip "box_m1", which, let's say, is "jiggle", and

[Flashcoders] Displaying special characters in Datagrid

2005-12-07 Thread Sajid Saiyed
Hi, The datagrid is not able to display special characters: The "ç" character in that name "Françoise" is displayed as Square block. Is there a solution to this? Thanks. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.f

Re: [Flashcoders] urgent

2005-12-07 Thread Ramon Tayag
Sorry, I don't understand what you mean. The code doesn't seem like it'll even execute. What's your question? Mon On 12/6/05, Mohammad Sajid <[EMAIL PROTECTED]> wrote: > in flash how to cordinate moive name with variable like > > trace(_root["box_m" add i].d+(j).txt1) > > -- Ramon Miguel M. T

[Flashcoders] urgent

2005-12-07 Thread Mohammad Sajid
in flash how to cordinate moive name with variable like trace(_root["box_m" add i].d+(j).txt1) - Yahoo! Personals Single? There's someone we'd like you to meet. Lots of someones, actually. Yahoo! Personals _

[Flashcoders] Problem with xml loading a second time

2005-12-07 Thread Paul Steven
Hi there I am loading in some xml to get the values for a Poll on my site. This works fine when the page first loads. However after someone has voted in the Poll I then want to read in the new values from the xml file. The code I have is as follows: pollData = new XML(); pollData.ignoreWhite = t

RE: [Flashcoders] Hide scrollbar until enough text to require it(UIScrollbar)

2005-12-07 Thread Paul Steven
Thank you ever so much - that works a dream Cheers Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Devendran I Sent: 02 December 2005 11:40 To: Flashcoders mailing list Subject: Re: [Flashcoders] Hide scrollbar until enough text to require it(UIScrollb

Re: [Flashcoders] XML question

2005-12-07 Thread Ramon Tayag
use Delegate - import mx.utils.Delegate; var a:Array = new Array(); .. .. main.onLoad = Delegate.create(this, populateXML); function populateXML():Void { trace(a); } Goodluck, On 12/7/05, Flash guru <[EMAIL PROTECTED]> wrote: > Hey all, > > here's the code i'm working

[Flashcoders] _root.getURL("javascript:..."); Local - Problems

2005-12-07 Thread lieven.cardoen
Hi there, I'm making a cd and I'm trying to trigger a javascript function. All this is done locally (--> cd). In Internet Explorer it doesn't work, in Firefox, there comes a popup from flash. When clickin' on settings I can add the swf to allow triggering a javascript function. After this, the

[Flashcoders] XML question

2005-12-07 Thread Flash guru
Hey all, here's the code i'm working with: var main:XML = new XML(); main.ignoreWhite =true; main.onLoad =function(success:Boolean){ if (success) { var developers:Array = this.firstChild.childNodes; var siteUrl:Array = new Array(); var stanceUrl:Array = new Array(); var introUrl

Re: [Flashcoders] output gone in flash 8?

2005-12-07 Thread YuriGoul
Like excluding all the properties from textfields and such, that would be a great feature. On 4-dec-2005, at 21:10, Michael Bedar wrote: Now if MM would add a few more options in that menu, and add a param to trace to set the level, we would be in all set... On Dec 4, 2005, at 3:04 PM, Yu

[Flashcoders] XML question

2005-12-07 Thread Flash guru
Hey all, here's the code i'm working with: var main:XML = new XML(); main.ignoreWhite =true; main.onLoad =function(success:Boolean){ if (success) { var developers:Array = this.firstChild.childNodes; var siteUrl:Array = new Array(); var stanceUrl:Array = new Array(); var introUrl

Re: [Flashcoders] Function

2005-12-07 Thread Julien Vignali
It doesn't work because of the infamous scope problem. the "this" in the function refers to the erase_btn, and "var2" is not an attribute of the button. You need to use the Delegate: import mx.utils.Delegate; erase_btn.onPress = Delegate.create(this, eraseTF); function eraseTF(){ var2.

[Flashcoders] RE: How to make a class instance self-destructible?

2005-12-07 Thread rob costello
On a related note, I'd be interested to know what people make of destroyObject method in the V2 components ie UIObject.destroyObject() I've had no luck using it to clear component instances does a component instance call it on itself, as the syntax seems to suggest; or call it on another instanc

[Flashcoders] eclipse UNDELETE

2005-12-07 Thread Cosmin Cimpoi
I set up a project in eclipse targeting a folder that had some files inside it. I had an error and now those files are deleted. Thei are not in recycle bin either. Does anybody know a method to restore those files? thanks to anyone send a clue my way. cosmin ___

<    1   2   3   >