Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Stéphane Bebrone
Hi Anggie, Take a look at this interesting interview of Erich Gamma about Design Patters (How to use): http://blog.itpub.net/post/1087/48817 Greets, Stéphane. 2006/2/23, Troy Rollins [EMAIL PROTECTED]: On Feb 23, 2006, at 1:07 AM, Manuel Saint-Victor wrote: Aangie- I'm a noob also and I

[Flashcoders] WebService - simple example

2006-02-23 Thread franto
Hello, i'm trying to make my 1st WebService, but im looking for simple example... i've found this: http://www.macromedia.com/devnet/flash/articles/mxna_sample.html looding content from MXNA, but there are 2 problems, - in that page, content never loaded in FF flash 8 playe - there is link for

Re: [Flashcoders] how to make single cell in the grid non editable?

2006-02-23 Thread Oleg Filipchuk
I hope it would be better. It's nothing else left. :( So does anyone know any smart solution about making individual cell non/editable? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] Key.addListener and the escape key for flash player8

2006-02-23 Thread Igor Vasiliev
When you normally publish the file in Flash IDE using Ctrl+Enter, go to main menu control disable keyboard shortcuts and you'll see your trace :) Igor V. a.k.a. The Helmsman www.mixtv.tv -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Matsikas

Re: [FlashCoders] scrollRect

2006-02-23 Thread Dimitrios Bendilas
Hello Jester, I apologize for taking S long to reply. Thank you very much for the information you provided! When I was asking you how you handle alpha I meant alpha values. Like when having a few movieclips on top of another, with _alpha = 40 or any value100. Can you do that with

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

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

Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Martin Wood
Take a look at this interesting interview of Erich Gamma about Design Patters (How to use): http://blog.itpub.net/post/1087/48817 thats really good. definitely worth reading for anyone with questions about design patterns. :) Martin. ___

[Flashcoders] addEventListener -- removeAllListeners EventDispatcher class

2006-02-23 Thread lieven.cardoen
The problem is this : ... correctButton.addEventListener(onRelease, Delegate.create(controller, controller.correctButton_OnRelease)); solutionButton.addEventListener(onRelease, Delegate.create(controller, controller.solutionButton_OnRelease)); nextButton.addEventListener(onRelease,

Re: [Flashcoders] addEventListener -- removeAllListenersEventDispatcher class

2006-02-23 Thread Miguel Angel Sánchez
Try this: var dcb:Function = Delegate.create(controller, controller.correctButton_OnRelease); correctButton.addEventListener(onRelease, dcb); ... correctButton.removeEventListener(onRelease, dcb); [EMAIL PROTECTED] escribió: The problem is this : ...

Re: [Flashcoders] addEventListener -- removeAllListenersEventDispatcher class

2006-02-23 Thread Michael Nisi
This delegate implementation sends a reference to the receiver. http://dynamicflash.com/2005/02/delegate-class-refined/ Maybe you could store references to all your delegations somewhere. Something like a DelegateLocator . ;) Just a thought... Regards, Michael On 2/23/06, Miguel Angel Sánchez

[Flashcoders] rotate gradient fill

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

[Flashcoders] Cool Navigation

2006-02-23 Thread eric dolecki
http://promotion.yepp.co.kr/j70/main.html does anyone have anything similar to this they would like to share? Its a pretty interesting way of navigating. - edolecki ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] flash.net.FileReference: no way to return selected path after browse?

2006-02-23 Thread lars
is it me, or is it impossible to return the selected path after a browse? for me it returns the selected filename but i cant find the path anywhere? thanks: lars ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] onActivity for SOUND object?

2006-02-23 Thread Dennis - I Sioux
Hey Guys, I need something as the microphone.onActivity on the sound object.. so i can get the current output of my volume. Any thoughts? Many thanks! Dennis ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] custom menus in projectors (dndTree)

2006-02-23 Thread grimmwerks
Hey all - I've got dndTree from Drumbeat Insight in an application; when it's in authoring and .swf mode the custom menus work, but when it's in projector mode they don't; what am I missing? Thanks. ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] flash.net.FileReference: no way to return selected path after browse?

2006-02-23 Thread lars
well, if i allow access to local folders via the settings manager it would be ok to return paths, too... doesnt make sense imho not to pass the path after the browse dialog, does it? Am 23.02.2006 15:49 Uhr schrieb Michael Stuhr unter [EMAIL PROTECTED]: lars schrieb: is it me, or is it

Re: [Flashcoders] onActivity for SOUND object?

2006-02-23 Thread Dennis - I Sioux
Hmm i've already got a program that spits out an array for each frame.. but i was actually looking for a solution within flash.. Any thoughts? - Original Message - From: eric dolecki [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday,

Re: [Flashcoders] flash.net.FileReference: no way to return selected path after browse?

2006-02-23 Thread bryan.rice
Nope - security violation. You can only get a pointer to the file and upload it. That is it. blue skies, bryan On Feb 23, 2006, at 9:09 AM, lars wrote: is it me, or is it impossible to return the selected path after a browse? for me it returns the selected filename but i cant find the

Re: [Flashcoders] getting the actual width of a scaled child clip

2006-02-23 Thread Lanny McNie
good point On 2/22/06, Grant Cox [EMAIL PROTECTED] wrote: Except you would have to iterate through every _parent level until you hit the _root anyway, in case any ancestor clip is scaled... I've done that before for visibility ( parent was _visible=false, grandchild was _visible=true but of

Re: [Flashcoders] flash.net.FileReference: no way to return selected path after browse?

2006-02-23 Thread eric dolecki
anyone know if using an amazon webservice for something like album art, using zinc, whether one can save off the resulting jpgs after loading? On 2/23/06, bryan.rice [EMAIL PROTECTED] wrote: Nope - security violation. You can only get a pointer to the file and upload it. That is it. blue

Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Roman Blöth
Anggie Bratadinata schrieb: Stephane, that's a good article. [..] Take a look at this interesting interview of Erich Gamma about Design Patters (How to use): http://blog.itpub.net/post/1087/48817 And - if not already mentioned here - think about buying the book Head First - Design Patterns

[Flashcoders] Flash connecting to a database - all running on a DVD-ROM

2006-02-23 Thread nik crosina
*Flash connecting to a database - all running on a DVD-ROM? * Is it possible? I am looking into doing exactly that for a massive trainig programme that needs to access and display a large number of modules in treeView (Flash Tree component) where each node connects to a record in the database that

[Flashcoders] Installing Custom Ant Tasks in Eclipse

2006-02-23 Thread John Mark Hawley
There doesn't seem to be a simple tutorial for actually getting custom Ant tasks installed and running. Even as2Ant leaves you out to dry when it comes to actually getting it to work the first time. Any help? Has anyone else on the list experimented with the Prebob preprocessing Ant task, or

Re: [Flashcoders] Flash connecting to a database - all running on a DVD-ROM

2006-02-23 Thread Ron Wheeler
Are all of the data and referenced files on the DVD? We have done a database of Personal Protective Equipment for first responder with pictures of each piece of equipment and full descriptions on a CD. Built a search engine in Flash to select items based on several criteria. The pictures

Re: [Flashcoders] Installing Custom Ant Tasks in Eclipse

2006-02-23 Thread Martin Wood
this article has a small section on using custom ant tasks in eclipse : http://www-128.ibm.com/developerworks/opensource/library/os-ecant/ it might help.. martin John Mark Hawley wrote: There doesn't seem to be a simple tutorial for actually getting custom Ant tasks installed and running.

Re: [Flashcoders] Installing Custom Ant Tasks in Eclipse

2006-02-23 Thread Ron Wheeler
You might as this in the Ant forum. Lots of good Eclipse and Ant guys there who can probably see where you have gone wrong. user@ant.apache.org Ron John Mark Hawley wrote: There doesn't seem to be a simple tutorial for actually getting custom Ant tasks installed and running. Even as2Ant

Re: [Flashcoders] dynamic text field whoas

2006-02-23 Thread James Deakin
Hi Guys, I'm having a few issues with html formatted text-fields. I have embedded the following fonts in the library and given them linkage names Helvetica 55 Roman, 75 Helvetica Bold, Helvetica 56 Italic. Then I am using the code below to try to dynamically produce a textfield which can

[Flashcoders] sound problem

2006-02-23 Thread Thomas Arnoldi
Hi all, I wonder if anyone found a solution: The problem is that I have a loaded a external soundfile in a swf file and if the user leaves the page, the sound keeps playing. Thanks Thomas. Thomas Arnoldi [EMAIL PROTECTED] www.syntheticdesign.dk http://www.syntheticdesign.dk/

Re: [Flashcoders] sound problem

2006-02-23 Thread Jim Berkey
Do you mean in a 'tabbed' browser, so that the tab with the sound on it stays active after moving to another tab? That's the only time I've encountered that. - Original Message - From: Thomas Arnoldi [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, February 23,

Re: [Flashcoders] sound problem

2006-02-23 Thread Marc Hoffman
In all my experience, when the swf's host page closes, the sound stops within a second or less. In which browser configuration(s) are you having this problem? If you're using Flash to call a new page, call stopAllSounds() at the same time. - Marc At 09:20 AM 2/23/2006, you wrote: I wonder

[Flashcoders] I.E. won't play MP3 (sometimes)

2006-02-23 Thread Marc Hoffman
If you have 10 seconds, please test this so if this problem is only on my laptop. This movie streams short MP3's when the user clicks a button. Works fine in I.E. on 3 of my machines, but on my laptop the MP3 never plays, although it does get loaded into I.E.'s cache. I'd appreciate knowing

[Flashcoders] Re: Installing Custom Ant Tasks in Eclipse

2006-02-23 Thread John Mark Hawley
UPDATE: After a lot of flailing and forcing Ant to specifically include the jars for Prebob, I actually got it to run. However, all it does it copy things from one directory to another, and no amount of manual flogging and guesswork can get it to actually preprocess anything. Has anyone tried

Re: [Flashcoders] Flash connecting to a database - all running on a DVD-ROM

2006-02-23 Thread clark slater
Hi Nik, Check out SWFStudio, it offers ADO connectivity. Downside is ADO has to be installed on the machine. Alternatively check out the Catalog plugin for SWFStudio - offers search functions through a flat tab delimited file. We used it to do exactly what you describe for a HUGE floor tile

RE: [Flashcoders] I.E. won't play MP3 (sometimes)

2006-02-23 Thread Helmut Granda
The name of the bird plays but the arrows don't work on WIN XP IE7. It works fine in FF. ...helmut -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Marc Hoffman Sent: Thursday, February 23, 2006 11:38 AM To: Flashcoders mailing list

Re: [Flashcoders] sound problem

2006-02-23 Thread Nick Gerig
I think you need to set the scope of the sound when you do new Sound(scope) cheers Nick Thomas Arnoldi wrote: I don't know about tabbed browser, but when I back click on explorer, the sound keeps playing. It doesn't in firefox. Thomas Arnoldi [EMAIL PROTECTED] www.syntheticdesign.dk tlf.

RE: [Flashcoders] sound problem

2006-02-23 Thread Thomas Arnoldi
I've done that, and it works fine (stopAllSounds()); but it is when go to completely new site the problem occur - only in explorer. I've experienced it in other flash sites, but it seems most of them solved the problem. Thomas Arnoldi [EMAIL PROTECTED] www.syntheticdesign.dk tlf. 36 44 99 98

RE: [Flashcoders] I.E. won't play MP3 (sometimes)

2006-02-23 Thread Marc Hoffman
Thanks for checking, Helmut. Do you mean the arrows aren't visible or they don't do anything? Very strange since there's nothing odd about them that I can think of -- just movie clips with _Up _Over and _Down labels and callback functions assigned to them for onRelease. I've had more stuff

[Flashcoders] server sends a fault, flash receives an unable to connect to endpoint

2006-02-23 Thread PR Durand
Hi List I still can't find any help neither solution and my client needs me to find it quickly... In a webservice connected flash application, when the server sends an exception, (working, verified when fill the address directly in a browser), flash doesn't receive it, but throws a onFault

[Flashcoders] Q: FlashPluginSwitcher

2006-02-23 Thread bitstreams
Hi has anyone used the flash plugin switcher? http://www.kewbee.de/ Haveing an issue setting it up since in the help it refers to the cab files, but all that's available for download are exe installers. Dows anyone know if current and older flash player(cab) files are available for downloading

Re: [Flashcoders] I.E. won't play MP3 (sometimes)

2006-02-23 Thread Éric Thibault
Everything is OK here : WinXP pro sp2 + IE 6.0.2900 sp2 Marc Hoffman wrote: I'd still appreciate hearing if others with I.E. 6 have trouble with this. Helmut, your findings are interesting, too. If the problem I experience is related to your experience, why would I.E. be taking longer than

[Flashcoders] simple FUSE question

2006-02-23 Thread artur
i actually really need to do this with Fuse so that i can use some more of it sequencing methods. thanks though.. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] simple FUSE question

2006-02-23 Thread Zeh Fernando
I would use zmc_tween: http://hosted.zeh.com.br/mctween/using.html #include zmc_tween.as ... Of course I'm using his old stuff. Just remember that, in this case, the filename would be mc_tween2.as, and it's not so old. Just oldschool. :) i want to create a tween that loops the _y value of

Re: [Flashcoders] simple FUSE question

2006-02-23 Thread Roger Braunstein
try using this: (new com.mosesSupposes.fuse.Fuse( {label: start, target: blah, _y: yend, seconds: 1, ease: easeInOutQuad}, {target: blah, _y: ystart, seconds: 1, ease: easeInOutQuad}, {command: skipTo, commandargs: [start]} )).start(); //roger //partlyhuman.com On 2/23/06, artur [EMAIL

Re: [Flashcoders] Q: FlashPluginSwitcher

2006-02-23 Thread Jörg Müller
Hi! I'm using FlashPluginSwitcher. I think when they wrote the readme file about extracting the cabs Macromedia had them still up in that format. I just checked, you're right: I guess if no one else has the players archived in a different format, you have to install them all using the exes

[Flashcoders] Building my application

2006-02-23 Thread Patrick Matte
I usually put all my movieclips on stage with a linkage to an as2 class extending MovieClip. The problem I have with this technique is that sometimes, nested movieclips are not loaded when I try to call a function from their parent. Does anyone have an idea for a workaround this? I know that if

[Flashcoders] datagrid schema

2006-02-23 Thread Rodrigo Guerra
Can anyone help me understanding how i use the datagrid schema, i know it helps a lot in the parsing but i couldn't much info about it. i think the principle it's the same for others components that has this function too for what i see it will describe, or validate , or facilitate the parsing

Re: [Flashcoders] I.E. won't play MP3 (sometimes)

2006-02-23 Thread Byron Canfield
Worked fine for me: XP/sp2, IE 6.0.2900.2180.xpsp_sp2_gdr_050301-1519 -- Byron Barn Canfield If you have 10 seconds, please test this so if this problem is only on my laptop. This movie streams short MP3's when the user clicks a button. Works fine in I.E. on 3 of my machines, but on my

RE: [Flashcoders] Opening SWF in Flash via command line

2006-02-23 Thread jim
Can you do it with flashcommand, that mike chambers command line tool? Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Grden Sent: 23 February 2006 21:32 To: Flashcoders mailing list Subject: [Flashcoders] Opening SWF in Flash via command line

Re: [Flashcoders] rotate gradient fill

2006-02-23 Thread Josh McDonald
Dude is this a joke? What do you get when you rotate a circle? Or are you just trying to say something else? If it's not, what are you expecting to happen when you change r for a radial gradient? -Josh -- His comrades fought beside him, Van Owen and the rest... But of all the

Re: [Flashcoders] Opening SWF in Flash via command line

2006-02-23 Thread Ryan Matsikas
flip your slashes? C:\Program Files\Macromedia\Flash 8\Flash.exe D:\logo.swf works for me.. On 2/23/06, jim [EMAIL PROTECTED] wrote: Can you do it with flashcommand, that mike chambers command line tool? Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [Flashcoders] Key.addListener and the escape key for flash player8

2006-02-23 Thread Ryan Matsikas
works for me from 7 and 8 in IE and Firefox On 2/23/06, blists [EMAIL PROTECTED] wrote: No, this is outside of the IDE. Try it yourself and tell me what you get. Dump that code into a new empty fla, then publish it for flash 7 player and you will see a trace when you hit escape. Then

Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Anggie Bratadinata
I'm still waiting for that book (from a nearby bookstore). Maybe next month :( -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep 21 Malang - East Java I N D O N E S I A http://design.ibshastautama.com Roman Blöth wrote: Anggie Bratadinata schrieb: Stephane, that's a good article.

RE: [Flashcoders] OT: Design patterns

2006-02-23 Thread Bjorn Schultheiss
One way to describe design patterns is to separate the responsibility of classes in your application, therefore making decoupling possible. Eg MVC separates the model, view and controller, potentially promoting reusability, and the ability to work on either model, view or controller independently

[Flashcoders] method to authenticate/license a flash app?

2006-02-23 Thread lars
hi all. i have a little vj app i'm developing. it'll be a flash projector app i'm developing for a club. i'm looking for ideas on how to protect this projector (protect against copying to other machines than the one in the club). is there anyway to get some unique machine id or anything else to

Re: [Flashcoders] Building my application

2006-02-23 Thread Aaron Smith
clip.onLoad(); usually works fine for me. Unless your attaching a substantial amount of clips at run time. Then what you need to do is attach one. wait for a load event to be fired. then load the next clip. loading a substantial amount of clips at one time will get varied results when it

[Flashcoders] Multiple videos

2006-02-23 Thread Manuel Saint-Victor
I am setting up an app with multiple videos and wanted to find a simple multivideo tutorial. Not an elaborate gallery but something I can break apart to see some basic rules and answer some questions that I have. Thanks, Mani ___

[Flashcoders] simple FUSE question

2006-02-23 Thread artur
im getting the following errors: Fuse#0Item#0 invalid value encountered:undefined Fuse#0Item#1 invalid value encountered:undefined here is the code: (new com.mosesSupposes.fuse.Fuse( {label: start, target: kiss0, _y: yend, seconds: 1, ease: easeInOutQuad}, {target: kiss0, _y: ystart,

[Flashcoders] simple FUSE question // solved

2006-02-23 Thread artur
woops- i forgot to put values in for yEnd and yStart thanks!! ___ 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

Borders 30% off--Re: [Flashcoders] OT: Object-Oriented ActionScript For Flash 8 thebook

2006-02-23 Thread Manuel Saint-Victor
Okay hopefully this doesn't constitute spam- and I won't get rotisserie'd for it There is a 30% borders coupon I just spent 30 minutes googling for -good until the 26th LINK http://f.chtah.com/i/9/276579820/item0222.htm Mani On 2/22/06, Hairy Dog Digital [EMAIL PROTECTED] wrote: Barnes and

Re: [Flashcoders] flash.net.FileReference: no way to return selected path after browse?

2006-02-23 Thread David Rorex
Depends what you mean by save off the resulting jpgs after loading. But the answer is probably yes, with zinc, there is not really any security sandbox (as you are now a desktop application, not a web app), and you can do pretty much whatever you want. -David R On 2/23/06, eric dolecki [EMAIL

Re: [Flashcoders] rotate gradient fill

2006-02-23 Thread pixelassembly
:) it's probably not a joke. if the height and width values are non-identical, then rotating would have an effect (the fill is not radially symetrical). anyway, I don't know the answer to the question, but maybe the rotation is being performed before the scaling (this would probably not have

[Flashcoders] Problem with LocalConnection?

2006-02-23 Thread Dave Mennenoh
I posted this question in macromedia.flash.actionscript but haven't gotten a response... I figure it most be something simple - I just don't know what it is... I am using a LocalConnection object to communicate between two swf's on the same page. Works great. Sent .fla to client - he made a

Re: [Flashcoders] rotate gradient fill

2006-02-23 Thread Josh McDonald
Yeah my bad, I didn't think flash could do a skewed radial gradient. Now it makes sense :) -- His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best. Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460

Re: [Flashcoders] how to make single cell in the grid non editable?

2006-02-23 Thread Grant Cox
The only way I've done it is by making the entire datagrid non-editable, and listening for a double click on a single cell. When this happens, if that cell can edited that column is set to editable, and the appropriate cell is selected. On a mouse deselect (onBlur?) the column is set back to

Re: [Flashcoders] Key.addListener and the escape key for flash player8

2006-02-23 Thread blists
Thanks for checking this. What version of the IDE are you publishing from? And just to confirm, your saying it works when changing the publishing settings from 7 to 8. What version of the flash player do you have? Brook At 02:30 PM 2/23/2006, you wrote: works for me from 7 and 8 in IE and

Re: [Flashcoders] Re: Installing Custom Ant Tasks in Eclipse

2006-02-23 Thread Grant Cox
I messed around with a few preprocessors a week or so ago, and just had so many problems (due to ignorance - I'm a noob when it comes to java/ant etc). However, finally I got FMPP to work ( http://fmpp.sourceforge.net/ ), and while the preprocessing directives aren't the prettiest (they look

Re: [Flashcoders] Opening SWF in Flash via command line

2006-02-23 Thread John Grden
lol, really?? slashes?? Ok, cool - I'll give er' a go On 2/23/06, Ryan Matsikas [EMAIL PROTECTED] wrote: flip your slashes? C:\Program Files\Macromedia\Flash 8\Flash.exe D:\logo.swf works for me.. On 2/23/06, jim [EMAIL PROTECTED] wrote: Can you do it with flashcommand, that mike

Re: [Flashcoders] Opening SWF in Flash via command line

2006-02-23 Thread John Grden
where Can I get that nifty gem? On 2/23/06, jim [EMAIL PROTECTED] wrote: Can you do it with flashcommand, that mike chambers command line tool? Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Grden Sent: 23 February 2006 21:32 To:

Re: [Flashcoders] Opening SWF in Flash via command line

2006-02-23 Thread David Rorex
http://weblogs.macromedia.com/mesh/archives/2003/11/flashcommand_fl.cfm hey, what do you know, googling for mike chambers flashcommand and pressing i'm feeling lucky finds it. -David R On 2/23/06, John Grden [EMAIL PROTECTED] wrote: where Can I get that nifty gem? On 2/23/06, jim [EMAIL

Re: [Flashcoders] method to authenticate/license a flash app?

2006-02-23 Thread David Rorex
On 2/23/06, lars [EMAIL PROTECTED] wrote: hi all. i have a little vj app i'm developing. it'll be a flash projector app i'm developing for a club. i'm looking for ideas on how to protect this projector (protect against copying to other machines than the one in the club). is there anyway to get

[Flashcoders] swf to screansaver? mac osx?

2006-02-23 Thread Aaron Smith
does anyone know of any open source tools for making a swf into a screensaver on mac osx SMITH ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] method to authenticate/license a flash app?

2006-02-23 Thread Mike Duguid
zinc (multidmedia.com) has some commands that may be useful, e.g System.getHDSerial() and the System.registry commands could be useful too. http://www.multidmedia.com/support/learning/docs/ On 2/23/06, lars [EMAIL PROTECTED] wrote: hi all. i have a little vj app i'm developing. it'll be a

[Flashcoders] Loading/Unloading Components Question

2006-02-23 Thread Shy Aberman
Hi- I have a pretty complicated question for the wizards on Flashcoders. The short version is: How can I unload a Flash component such that I can cleanly load a newer version of the same component, and then use the newer code? The long version is: + My team is building a Flash application and

Re: [Flashcoders] Problem with LocalConnection?

2006-02-23 Thread Johannes Nel
i would imagine that the lc class would be declared dynamic, but maybe it ain't on his machine. anyway check if this solves your problem var receiving_lc:LocalConnection = new LocalConnection(); receiving_lc[showpic] = function (goWhere:String) { gotoAndPlay(goWhere); }; On 2/23/06, Dave

Re: [Flashcoders] method to authenticate/license a flash app?

2006-02-23 Thread Adrian Raper, Clarity
ZINC lets you get the machineID of the computer you are running on in one call. We match this against an expected machineID written to a licence file during installation. (The licence file has a checksum). If they don't match, then you can catch it. If you are only selling the application once,

Re: [Flashcoders] Opening SWF in Flash via command line

2006-02-23 Thread John Grden
who'd have thunk it. Thanks Ryan, that worked ;) On 2/23/06, David Rorex [EMAIL PROTECTED] wrote: http://weblogs.macromedia.com/mesh/archives/2003/11/flashcommand_fl.cfm hey, what do you know, googling for mike chambers flashcommand and pressing i'm feeling lucky finds it. -David R On

[Flashcoders] On2 VP6 Pro encoders

2006-02-23 Thread Troy Rollins
Hey all, Sorenson squeeze is making my life hell with the VP6 Pro plugin. I am using it (on OSX) mostly for the capability to insert cue points (and the compression, of course), but squeeze just sucks at the cuepoints part. While the pro plugin is only good for Squeeze, I'd buy another

Re: [Flashcoders] Building my application

2006-02-23 Thread Patrick Matte
Thanks, its awesome. My problem was that i was running code right in the parent class constructor. Now I've just put all that code into onLoad and it works perfectly. My life will now be better. - Original Message - From: Aaron Smith [EMAIL PROTECTED] To: Flashcoders mailing list