Re: [Flashcoders] htmlText formatting problems...

2006-02-10 Thread Aaron Smith
I don't have too much use for the htmlText text fields but.. is there any \n being put in.. maybe when the use hit's enter??? On Feb 10, 2006, at 1:18 PM, ryanm wrote: I need to find out if this is a known bug, or if it's something unique to my app. What I have is a chat that uses

Re: [Flashcoders] Different rotation point for different instances of same object?

2006-02-10 Thread Aaron Smith
http://www.darronschall.com/weblog/archives/54.cfm w03 wrote: Can I change the point of rotation (reference point) of different instances of a MC on the fly? I need several instances of an object to rotate but each about a unique reference point within the instance. Thanks, I don't

Re: [Flashcoders] unSelectAll v2 List Component

2006-02-12 Thread Aaron Smith
', Delegate.create(this, onChange)); function onChange():Void { my_list['clearSelected'](); } ** now test publish it.. now anytime you select something in the list it will automatically deselect it. this will clear all selected items if multiple are selected also. Aaron Smith keith wrote

Re: [Flashcoders] unSelectAll v2 List Component

2006-02-12 Thread Aaron Smith
it to dispatch a change event call it like this: my_list['selectRow'](2,true,true);.. this is a simple example, just use this method call in your situation hope it helps Aaron Smith Aaron Smith wrote: Hey Keith! I fyou look in the macromedia list classes( mx.controls.listclasses ). specifically

Re: [Flashcoders] vardump an object in ActionScript?

2006-02-13 Thread Aaron Smith
Yeah I shouldn't diss it.. it's a cool tool, i'll give them that!. I guess I never have problems with depths or placement so it's just to much for me. So use what's comfortable. XRay is a nice tool. I'm not trying to diss it. Aaron Smith On Feb 13, 2006, at 2:50 PM, Chris Allen wrote

Re: [Flashcoders] mp3 not playing in I.E. 6

2006-02-13 Thread Aaron Smith
sound effects then yes.. use a sound object. Which if thats the case, I don't have any reccommendations at this point for your IE problem.. Aaron Smith Marc Hoffman wrote: I've seen some discussion of this in the archives, but nothing conclusive. My Flash 8 movie creates a sound

Re: [Flashcoders] mp3 not playing in I.E. 6

2006-02-13 Thread Aaron Smith
with mediaDisplay's in IE. So give it a shot. if your using just short sound effects then yes.. use a sound object. Which if thats the case, I don't have any reccommendations at this point for your IE problem.. Aaron Smith Marc Hoffman wrote: I've seen some discussion of this in the archives

Re: [Flashcoders] dispatching events at creation time?

2006-02-17 Thread Aaron Smith
if you subclass movieclip then you have access to the onLoad method. Just overload that and put your dispatch in there public function onLoad():Void { dispatchEvent({type:'onload', target:this}); } [EMAIL PROTECTED] wrote: A little late in the (reply) game, but you could try:

Re: [Flashcoders] Event Dispatcher

2006-02-17 Thread Aaron Smith
Just make sure int he constructor you initialize it:: EventDispatcher.initialize(this).. also you ned to have these var definititions: public var addEventListener:Function public var removeEventListener:Function; private var dispatchEvent:Function then to dispatch: dispatchEvent( {

[Flashcoders] TextArea component Special Chars?

2006-02-17 Thread Aaron Smith
Has anyone had issues with flash remoting (amfph) and sending text from the textArea component. It seems there are some weird extra characters that are being added to the data thats sent. Then php is having issues parsing it. Specifically when I copy text into the textArea component then

[Flashcoders] AS3 Packages

2006-02-18 Thread Aaron Smith
does anyone have a good reference for the new AS3 packages support. I have not had any experience with packages before. I want to see more of what it offers than just putting one class in a package. It seems like there is a ton more that can be done with packages I just don't know what. so if

[Flashcoders] mxml reference?

2006-02-18 Thread Aaron Smith
is there any good mxml tag references out for flex 2? I didn't see any on labs.macromedia.com or maybe I just didn't look hard enough. I guess i'm just looking for a reference to all the tags that can be used.. im new to flex, starting with flex 2. am currently a flash RIA / kiosk / web

Re: [Flashcoders] mxml reference?

2006-02-18 Thread Aaron Smith
that.. if there in that link somewhere.. could yhou point it out??. . thanks.. SMITH Danger wrote: http://labs.macromedia.com/wiki/index.php/Flex:Release_Notes#Beta_1_documentation On 2/18/06, Aaron Smith [EMAIL PROTECTED] wrote: is there any good mxml tag references out for flex 2? I didn't see

Re: [Flashcoders] mxml reference?

2006-02-18 Thread Aaron Smith
Danger, I think I found what im looking for.. it's just deeper in those mx.* packages.. Aaron Smith wrote: Danger, thanks for the link.. I've actually seen that. What i'm looking for is an mxml tag reference. that was more actionscript. I realize it all gets translated to actionscript

Re: [Flashcoders] Q;Flashdevelop users

2006-02-21 Thread Aaron Smith
I use it.. its great.. most information about it (configuration, fonts, colors) can be found on there website in different forum posts.. good luck SMITH [EMAIL PROTECTED] wrote: Hi Any FlashDevelop user fans? Trying to find some basic info on configuration...setting fonts etc. [e]

[Flashcoders] Object copy

2006-02-21 Thread Aaron Smith
Does anyone have a solution for copying or cloning objects.. I am using mx.utils.ObjectCopy and it doesnt work correctly. Just the object that i'm trying to copy doesnt seem to be an exact copy so the methods that I send the copy to don't work. Does anyone have a better solution that

Re: [Flashcoders] Object copy

2006-02-21 Thread Aaron Smith
that, it worked great for me. Sam On 2/21/06, Aaron Smith [EMAIL PROTECTED] wrote: Does anyone have a solution for copying or cloning objects.. I am using mx.utils.ObjectCopy and it doesnt work correctly. Just the object that i'm trying to copy doesnt seem to be an exact copy so the methods that I

Re: [Flashcoders] Object copy

2006-02-21 Thread Aaron Smith
thank you so much.. worked perfectly! SMITH Rich Rodecker wrote: http://www.darronschall.com/weblog/archives/000148.cfm On 2/21/06, Aaron Smith [EMAIL PROTECTED] wrote: that didn't seem to work.. Sam Shrefler wrote: Aaron: try changing a line in ObjectCopy.as its line 15

Re: [Flashcoders] Using other languages to improve my Actionscript - Opinions

2006-02-21 Thread Aaron Smith
I actually went the other way. I was always doing PHP and web languages. Nothing OOP though. Even actionscript was just timeline procedural for the most part. I didn't understand OOP at all. I tried learning Java to see if OOP would come better. But no luck. I think for learning OOP Java is

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] 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:

[Flashcoders] vector to jpeg or png, php

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

Re: [Flashcoders] RelayResponder not working for multiple calls

2006-03-10 Thread Aaron Smith
you need to use a counting variable too. something like this: change it: var intervalID:Number = -1; var attempts:Number = 0; var maxAttempts:Number = 2; var _service = new Service(gateway,new Log(Log,DEBUG),class,null,null); invokeServerMethod(); function invokeServerMethod() { var

Re: [Flashcoders] AS IDE for OSX

2006-03-16 Thread Aaron Smith
you can do all that with textMate.. are you not using svn with it? ( control + Shift + A )( use you mouse to point to what youw ant to run SVN commands on It works great!.. and how you can write snippets is great also.. just write a snippet to do mtasc compiling.. and whatever else..

Re: [Flashcoders] Changing color of the scrollbar in the List Component

2006-03-28 Thread Aaron Smith
id say this is a pretty good article: http://www.macromedia.com/ devnet/flash/articles/skinning_fl8.html there is also a video tutorial here: http://www.gotoandlearn.com/ - called v2 component skinning (under select a tutorial) also you want to skin the UIScrollbar. The list component uses

[Flashcoders] sIFR

2006-03-29 Thread Aaron Smith
has anyone made or found a flash 8 replacement sIFR??? by sIFR i mean flash replacement... for text... http://www.mikeindustries.com/sifr/ smith ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
sounds like your trying to connect to your localhost amfphp gateway from the web version.. change your gateway to point to the gateway on your site. (IE, you should have one amfphp install on local( thats the one thats working ) then one in www.thelargeglass.com/ flashremoting/ you want

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
is your endpoint set correctly? : var _service:Service = new Service(gatewayUrl, null, 'Highscores', null , null); if Highscores.php is in a highscores or gamesfolder of some sort in the services folder in amfphp. you need to reference it like: var _service:Service = new

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
you should only need that if you are connecting to one domain from another.. in Counts case everything is on the same domain I believe so that won't matter... On Mar 29, 2006, at 3:43 PM, Grant Cox wrote: Make sure you have a crossdomain.xml file in the root of your server, otherwise the

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
no it wouldnt be whitespace.. one thing you could check for is php errors.. check the logs.. one quick way to check for php errors is to navigate to the Highscores.php file in the web browser.. go to http://www.5etdemi.com/blog/ this is patrick mineaults blog. he is lead dev on

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Aaron Smith
works i would still check out that cineqdemi.remoting library i posted.. (just a second ago) smith On Mar 29, 2006, at 4:05 PM, Count Schemula wrote: Fixed. I could scream. The publish settings were publishing to a different folder. So, I was blinded by jumping between servers and the

Re: [Flashcoders] Radiobutton - Dispatch event on code selected?

2006-03-30 Thread Aaron Smith
Sure its possible!!! Marcelo, here is a solution: put two radio buttons on the stage and call it rb1 / rb2. then in the actions layer put: import mx.controls.RadioButton; import mx.utils.Delegate; import mx.events.EventDispatcher; var dispatchEvent:Function;

[Flashcoders] webcam help? please.....

2006-04-01 Thread Aaron Smith
Sorry i'm asking this here. I put it in some forums online and am not getting any responses. So I figured ya'll could help me out. Does anyone know of any webcams that work with MAC OS X other than an iSight?? If not, does anyone know if AOL AIM Video chat will work with iChat on OSX? ( AIM

Re: [Flashcoders] Load 40% of target with MovieClipLoader Class

2006-04-07 Thread Aaron Smith
onLoad init gets fired only when there is enough data for the movieCilp to perfrom actions. so it probably is waiting till like 70 - 80% when there is enough to play it. On Apr 7, 2006, at 5:10 PM, Mike Guerrero wrote: Question: How can I load only 40% of a target movieclip using the

Re: [Flashcoders] combobox big problem

2006-04-10 Thread Aaron Smith
Do you have it under a mask? if so I think you need to embed the fonts. On Apr 10, 2006, at 2:32 PM, Alfonso Florio wrote: this is really strange: i create a serie of mcs with into them two combobox, populate and select index, all ok. when i delete them (i try to delete the mc container

Re: [Flashcoders] Talking to Flash from JavaScript

2006-04-16 Thread Aaron Smith
http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?href=2200.html Erik Porroa V. wrote: Ey Jon. I know that you can control an flash object with Dreamweaver's behaviors (yep, JavaScript), but I'm not sure if it can control media components (If you are

[Flashcoders] Testing ExternalInterface on Windows for me.

2006-04-18 Thread Aaron Smith
I am at work right now. And we only have one windows machine. We are using some ExternalInterface functionality in one of our projects. It's not working on out windows machine. It doesn't work in either Firefox or Internet Explorer. It works fine in every browser on MAC. I've been doing

Re: [Flashcoders] Testing ExternalInterface on Windows for me.

2006-04-18 Thread Aaron Smith
uploaded and I am on windows too. I will look at your source. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Smith Sent: Tuesday, April 18, 2006 12:12 PM To: Flashcoders mailing list Subject: [Flashcoders] Testing ExternalInterface on Windows for me

Re: [Flashcoders] Testing ExternalInterface on Windows for me.

2006-04-18 Thread Aaron Smith
] On Behalf Of Aaron Smith Sent: Tuesday, April 18, 2006 12:22 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Testing ExternalInterface on Windows for me. ok, yeah I wonder if thats the issue (local). I was just testing it locally. I'll try it on a server. On Apr 18, 2006, at 11:17 AM

Re: [Flashcoders] Testing ExternalInterface on Windows for me.

2006-04-18 Thread Aaron Smith
:[EMAIL PROTECTED] On Behalf Of Aaron Smith Sent: Tuesday, April 18, 2006 12:46 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Testing ExternalInterface on Windows for me. Yes I tried it out on yours and my server. works just fine. Now have a look at this. on Firefox and IE: ( http

[Flashcoders] load two flv's and merge them into one flv?

2006-05-06 Thread aaron smith
does anyone know if you can load two flv's then put them together somehow. I need to be able to play the two flv's as one and be able to scrub the whole thing too.. Anyone have any ideas? thanks smith ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] controlling sound of NetStream.

2006-05-10 Thread aaron smith
separately. On 5/11/06, aaron smith [EMAIL PROTECTED] wrote: is there a way to control the sound of a netStream? while streaming multiple netStreams all the sound plays. how can I turn one off. while the other is playing? word ___ Flashcoders

[Flashcoders] controlling sound of NetStream.

2006-05-10 Thread aaron smith
is there a way to control the sound of a netStream? while streaming multiple netStreams all the sound plays. how can I turn one off. while the other is playing? word ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] controlling sound of NetStream.

2006-05-10 Thread aaron smith
perfect. thanks Ramon Miguel M. Tayag wrote: Yup, exactly On 5/11/06, aaron smith [EMAIL PROTECTED] wrote: ah.. so when playing multiple streams they all need to be in a separate movieclips? then I can control each sound individually? Ramon Miguel M. Tayag wrote: I made a class to handle

[Flashcoders] netStream.close()

2006-05-14 Thread aaron smith
does anyone know how to close down an open netstream and stop it from downloading data? so after I call a netStream.play(flv) if I call netStream.close() it doesnt seem to stop it from dlownloading data. or even do what the livedocs say it should for that matter. kinda sketchy.. what if I

[Flashcoders] NetStream.play() crashes flash if the flv is not found.

2006-05-16 Thread aaron smith
has anyone had this experience also. If i call netstream.play('sdf.flv') and the flv isnt found. it crashes both the ide and the player. does it only happen locally? I know there is a NetStream.Play.StreamNotFound event, but that doesnt work. it crashes before that even calls.

Re: [Flashcoders] Multiple FLVPlayback problem

2006-05-16 Thread aaron smith
one other thing, you might want to split up your video even more.. like 6 - 10 clips. that way they're way smaller files.. seeking and loading wouldn't be a problem then. aaron smith wrote: I'm also working on a project that requires multiple flv's also. What I did was create a very basic

Re: [Flashcoders] Multiple FLVPlayback problem

2006-05-17 Thread aaron smith
hey.. sorry I haven't posted the code yet. but it sounds like you got yours figured out. thats good. here is the code: 2 classes /** * @author Aaron Smith * @version **/ //video stuff needed import com.iqtv.vw.gticonfig.video.*; //events import mx.utils.Delegate; import

[Flashcoders] FDT question.

2006-05-17 Thread aaron smith
I decided to start using FDT because of all the features. I recently worked with a guy who used it and was able to show me all the capabilities of it. I got eclipse and installed FDT. but some of the features don't seem to work. for example the task list. The parser error notifications dont

[Flashcoders] netstream and seeking. high fps.

2006-05-17 Thread aaron smith
so looking at netstreams and being able to seek in them. I found that you need really high frame rates, or a lot of keyframes. because flash uses the closest keyframe to whatever seek time you go to. so if I have a 30 second video encoded at 30fps. there is only like 2 keyframes. so when this

[Flashcoders] converting mass flv's into swfs?

2006-05-17 Thread aaron smith
does anyone know of a way to conver hundreds of flvs into swf files.. like when you take an flv onto the timeline and publish it. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] scrubbing swfs like flvs?

2006-05-17 Thread aaron smith
Does anyone know if you can scrub swf files like you can scrub flvs? ___ 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

[Flashcoders] squeeze: flv swf

2006-05-18 Thread aaron smith
does anyone know if the full version of squeeze will let you convert an flv into a swf. it doesn't in the trial but on the site it looks like the full version will.. or any other options for flv swf? there was supposed to be a script at northcode.com. somesort of free utility.. but I can't

[Flashcoders] mtasc inject code onto first frame of root tmeline?

2006-05-28 Thread aaron smith
is it possible to use mtasc to inject code into the root timeline of a already existing swf? the swf is video. I want to inject some code onto the first frame so I can control it when loaded cross domain. thanks ___ Flashcoders@chattyfig.figleaf.com

[Flashcoders] actionscript injection on root timeline?

2006-05-28 Thread aaron smith
is it possible to use mtasc to inject code into the root timeline of a already existing swf? the swf is an embeddedvideo. I want to inject some code onto the first frame so I can control it when loaded. thanks ___ Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] actionscript injection on root timeline?

2006-05-28 Thread aaron smith
current working code. João Carlos - Original Message - From: aaron smith [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Sunday, May 28, 2006 6:07 AM Subject: [Flashcoders] actionscript injection on root timeline? is it possible to use mtasc

[Flashcoders] extending flash with c++?, watching files as they are updated

2006-07-18 Thread aaron smith
I need to find a solution to a problem. I have a couple different options so far. the problem: I need to be able to execute some flash commands when a file is changed. ( needs to be as close to real-time as possible ). The file is a basic log file. possible solutions: -Now what i'm

[Flashcoders] Dynamically Upcast to a class in the _global tree?

2006-08-22 Thread aaron smith
How do I cast to something that is in the _global tree. by that i mean. cast referencing like this: _global.com.somepackage.SomeClass( var ) or is the _prototype chain? I can't remember... the situation is this, I have a BasicView class. that needs to dynamically be upcast to other views that

Re: [Flashcoders] Dynamically Upcast to a class in the _global tree?

2006-08-23 Thread aaron smith
if this is what you mean but: import com.somepackage.HomeView; var bv:BasicView = getSomeBasicView(); var newHomeViewHomeView =HomeView( bv ); grtz JC On 8/23/06, aaron smith [EMAIL PROTECTED] wrote: How do I cast to something that is in the _global tree. by that i mean. cast referencing like

[Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
I need some help figuring out how to compile with MTASC. I have used mtasc before, it was a while ago, and now I can't figure out what is going on with this project. I'm just trying to get it to compile. This is my MTASC command: mtasc\mtasc.exe classes\com\dsotdomb\Main.as -cp classes -cp

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
im using flash develop and trying to get it working through there.. i still would like to know what the issue is. but i'll give flasc a try On 8/23/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: Hey try out FLASC, a nice GUI for MTASC that runs in the Flash IDE. http://osflash.org/flasc

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
/06, aaron smith [EMAIL PROTECTED] wrote: im using flash develop and trying to get it working through there.. i still would like to know what the issue is. but i'll give flasc a try On 8/23/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: Hey try out FLASC, a nice GUI for MTASC that runs

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
in the upper left, and rollover the options menu - select show errors and show batch command. Even if you don't want to use the IDE, Flasc will print out a useable script for you to use with FlashDevelop JPG On 8/23/06, aaron smith [EMAIL PROTECTED] wrote: I've tried using FLASC. no luck. It doesn't

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
flash then doing mtasc again.. same result. no errors, but obvious missing functionality.. thanks On 8/23/06, John Grden [EMAIL PROTECTED] wrote: are you useing a precompiled SWF with components? On 8/23/06, aaron smith [EMAIL PROTECTED] wrote: yeah I tried that. Still no luck. I am

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
would it have anything to do with having imports like: com.somepackage.* VS. com.sompackage.SomeClass ? On 8/23/06, aaron smith [EMAIL PROTECTED] wrote: no. it is a precompiled swf but no components. I did manage to add all the packages in, and suppressed all errors. but now

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
packages, it'll recurse and add them all. On 8/23/06, aaron smith [EMAIL PROTECTED] wrote: no. it is a precompiled swf but no components. I did manage to add all the packages in, and suppressed all errors. but now there is functionality that doesn't work in the mtasc compiled version. It's

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
) and add a class path. Compile. Follow the errors until you get the necessary classes in there. It worked like a charm. On 8/24/06, aaron smith [EMAIL PROTECTED] wrote: yeah that's what I tried. No luck. It did suppress the errors but now there is missing functionality.. Weird. No errors

Re: [Flashcoders] Any MTASC masters out there?

2006-08-23 Thread aaron smith
no errors spit out. but there is still obvious missing functionality.. really weird.. Aaron On 8/24/06, aaron smith [EMAIL PROTECTED] wrote: sorry not following completely what you mean, quick exmaple? or deeper explanation?.. thank you.. On 8/24/06, John Grden [EMAIL PROTECTED] wrote: you

Re: [Flashcoders] Any MTASC masters out there?

2006-08-25 Thread aaron smith
to recompile with the IDE then test with mtasc. If you do have classes precompiled in the SWF with the IDE, use the -keep tag. If you're using mx components, use the -mx tag make sense? On 8/24/06, aaron smith [EMAIL PROTECTED] wrote: ok I think I got what you meant. I started by just giving one

[Flashcoders] Extending singletons?

2006-08-29 Thread aaron smith
I've been messing around with extending singletons. ive never really tried it before. singletons will work just like a regular class is extended from another class right?. do i need to override the getInstance method of them? anything I should know about extending singletons??? thanks

Re: [Flashcoders] smooth MTASC/Mac workflow?

2006-09-02 Thread aaron smith
i succecssfully used TextMate and mtasc for a long time. I acatually loved the workflow. but since switching jobs have had t ogo back to PC.. anyway, in TextMate you can have it execute pre written command line commands and assign it shortcuts. Thats how I did it. And with mtasc, using existant

[Flashcoders] mtasc and prototypes?

2006-09-02 Thread aaron smith
Hi all, quick question. I've been running into problems with mtasc. I think it is because of tweening classes. Like a tween class that has a bunch of prototypes added onto the movie clips. mc_tween2.as for example. ( http://hosted.zeh.com.br/mctween/). The way you add these in is by including the

Re: [Flashcoders] mtasc and prototypes?

2006-09-02 Thread aaron smith
://mosessupposes.com/Fuse/index.html It's a really great library for doing animations with code. It's extremely easy, simple and convenient to use and definitely works with MTASC. -Chris On 9/2/06, aaron smith [EMAIL PROTECTED] wrote: Hi all, quick question. I've been running into problems with mtasc. I

[Flashcoders] key listener class

2006-09-03 Thread aaron smith
does anyone know of a class that makes it easy for listening to keyboard events. say i want to add a listener for ctal+shift+y. there has to be something developed already to do that.. thanks... ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] key listener class

2006-09-03 Thread aaron smith
/ You can test the class with the example in the bin directory on the SVN : http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/bin/test/asgard/ui/ Install the framework with Tortoise SVN for example, set the /src classpath and that's all :) EKA+ :) 2006/9/3, aaron smith [EMAIL PROTECTED]: does

[Flashcoders] fuse cheat sheat?

2006-09-06 Thread aaron smith
does anyone know if there is a fuse cheat sheat for using fuse. kinda like the actionscript 2 and 3 cheat sheats? word ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] hardcoding xml

2006-09-08 Thread aaron smith
hey, does anyone know of a way to hard code XML into actionscript without the compiler having a fit? it's a pretty big XML file, I need to hard code it for a banner, the vendor has no idea what their doing. the xml file is a couple hundred lines. thanks

Re: [Flashcoders] hardcoding xml

2006-09-08 Thread aaron smith
it in as a string. On 9/8/06, aaron smith [EMAIL PROTECTED] wrote: hey, does anyone know of a way to hard code XML into actionscript without the compiler having a fit? it's a pretty big XML file, I need to hard code it for a banner, the vendor has no idea what their doing. the xml file is a couple

Re: [Flashcoders] ::dk:: getColumnNames not returning all column names

2006-09-18 Thread aaron smith
im guessing your just having issues with how the data is mapped in the result vars. Are you using NetConnection debugger to look at the results, so you know exaclty how the return object is mapped to the data.. IE( recordset.getItemAt(0) );.. see what i mean? On 9/18/06, dnk [EMAIL PROTECTED]

Re: [Flashcoders] ::dk:: getColumnNames not returning all column names

2006-09-18 Thread aaron smith
You can also use commands in PHP to send data to the NetConnection debugger. ?php NetDebug::trace( somedata or some $var ); ? you can use that anywhere in a service method and it will send it to the netconnection debugger. just use those to debug it.. hope that helps.. smith On

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread aaron smith
[EMAIL PROTECTED] wrote: aaron smith wrote: Does anyone know of an application that can mute flash or browsers for a mac? I generally push the sound mute button on the keyboard. Maybe you meant How can my content programmatically control each audience member's sound system?, for which I don't

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread aaron smith
flash sounds get annoying after so long, so i just want to be able to shut off the browser sounds, without having to disable my entire audio. On 9/22/06, aaron smith [EMAIL PROTECTED] wrote: no, like how can I mute just the sound that is in the browser. Say i want music playing but no sounds

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread aaron smith
yeah well I figured someone must have already wanted to do this. On 9/22/06, Merrill, Jason [EMAIL PROTECTED] wrote: keep in mind i'm not creating the flash site, so I can't jsut add this in to the site, it would be for muting the browser sound in general.. This moves out of the realm of

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread aaron smith
that was close, although this is just control for the find sounds. like when you type something in the find menu, if i t can't find it you can shut the little sound off that it plays... On 9/22/06, Helmut Granda [EMAIL PROTECTED] wrote: if you are running FF this mmight be your answer:

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread aaron smith
exactly. i haven't been able to find anything.. i'm looking into writing some applescripts for it. On 9/22/06, Helmut Granda [EMAIL PROTECTED] wrote: Aaron is asking how to turn sounds off from pages he is browsing, no necessary SWF files he is working with. On 9/22/06, Mike Keesey [EMAIL

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread aaron smith
? Hehe. I just mute audio with a keypress, and then when i'm done there, unmute. Not that hard. - e. On 9/22/06, aaron smith [EMAIL PROTECTED] wrote: exactly. i haven't been able to find anything.. i'm looking into writing some applescripts for it. On 9/22/06, Helmut Granda [EMAIL PROTECTED] wrote

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-22 Thread aaron smith
hahahahahahah. i have to forward this to him.. I totally agree man.. i will get him some tissues.. smith On 9/22/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: Tell him to get a freaking iPod and some headphones. Failing that, buy him a box of tissues.

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-24 Thread aaron smith
/audiohijack/ ). It's been a while since I've played about with either. It appears from the screenshot of Audio Hijack that it can mute audio. On 2006-09-22, at 11:48 AM, aaron smith wrote: flash sounds get annoying after so long, so i just want to be able to shut off the browser sounds, without

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-24 Thread aaron smith
havn't tried it.. i'll give it a shot On 9/24/06, GregoryN [EMAIL PROTECTED] wrote: Hello aaron, Have you tried: tell application Your Browser to set volume with output muted OR tell application Your Browser to set volume 0 http://nslog.com/archives/2005/06/26/no_applescript_mute.php Or

Re: [Flashcoders] Tweening ColorTransform objects? [Solved]

2006-09-24 Thread aaron smith
you should look into fuse man, easy color tranforms.. not all that code.. but it's cool you got it figured out.. http://mosessupposes.com/Fuse/index.html On 9/23/06, Dan Rogers [EMAIL PROTECTED] wrote: Thank you for the replies. My issue was due to the fact that I was overlooking the rgb

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-24 Thread aaron smith
no doesn't work. damn. On 9/24/06, aaron smith [EMAIL PROTECTED] wrote: havn't tried it.. i'll give it a shot On 9/24/06, GregoryN [EMAIL PROTECTED] wrote: Hello aaron, Have you tried: tell application Your Browser to set volume with output muted OR tell application Your Browser

Re: [Flashcoders] Mute Flash Application, mac.

2006-09-25 Thread aaron smith
/moreinfo/macosx/20128 I'm not a Mac user, so I can't vouch for it. Good luck. Jake On 22/09/06, aaron smith [EMAIL PROTECTED] wrote: Does anyone know of an application that can mute flash or browsers for a mac? or maybe a way to do it through the terminal? thanks

[Flashcoders] allowScriptAccess and swfobject.js

2006-11-07 Thread aaron smith
Hey All, I am having issues with javascript working from a swf file. The problem is that the html file I embed the flash in, is pulling the flash content from another server. So to fix this I found out that i need to have the allowScriptAccess param. It works when I use the html generated by

[Flashcoders] actionscript in FLV?

2006-11-28 Thread aaron smith
Is it possible to somehow have an FLV execute some actionscript code? say somehow embedding code in an FLV. I'm thinking no, I know it would be possible if it was a swf playing the flv, but i'm' wondering if it is possible in just a straight FLV. thanks

[Flashcoders] Rubyamf 0.8.7 Alpha. Community is needed!

2007-03-18 Thread aaron smith
Hey Everyone , I'm going to keep this short. I've had it Rubyamf in my pocket for few months. Being able to develop it here and there. I've made a big push the last week to get it to this stage. If you're not aware of it, which i'm sure you're not. It's a Flash remoting alternative. :Features:

Re: [Flashcoders] scaling/positioning FLVPlayback

2007-04-16 Thread aaron smith
from the way things are scaling, it sounds like you're opening the swf in the standalone player. Are you using this as a standalone thing, or embedded in a web page.. you can also try: Stage.scaleMode = 'noscale'; On 4/16/07, Muzak [EMAIL PROTECTED] wrote: FLVPlayback docs Components

[Flashcoders] Flash 9 Not importing fl.data.DataProvider.

2007-09-13 Thread aaron smith
UH, not sure why this is happening. But when I create an empty fla, and put this one line of code in it: import fl.data.DataProvider. I get errors: 1172: Definition fl.data:DataProvider could not be found. ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] Flash 9 Not importing fl.data.DataProvider.

2007-09-15 Thread aaron smith
\User Interface If you go the component route, you don't have to keep the component, you only need the ComponentShim that comes with any coomponent (in the library) and either set it to Export in first frame or drop it on stage. regards, Muzak - Original Message - From: aaron smith