[Flashcoders] library variable

2007-02-07 Thread Daniel Snoddas
I have a library.fla with a bunch of items i use in my project. I display versions of all files on a version.fla (each file in my project has a version variable on its own root) but as the library.fla's local root timeline is never excecuted I can't access it without making it global. Is there an

[Flashcoders] Detecting Rollover w/o onRollOver

2007-02-06 Thread Holth, Daniel C.
basically make two mouse overs. While its not checking the mouse position every frame, its still not as efficient as I'd like. Does anyone have any thoughts on a more efficient way to detect two mouse over events at the same time? Thanks! Daniel Holth This e-mail and its attachments are i

RE: [Flashcoders] Flair Pattern bad mixins good (?)

2007-01-31 Thread Holth, Daniel C.
I've actually been reading through Head First Design Patterns, and think it's a great book! It uses a lot of example code but they are well thought out and clearly demonstrate the uses of the patterns. Granted, many of their examples are doing ridiculous things like simulating the actions of duc

[Flashcoders] Caps Lock behaviour inconsistent between Mac and Windows!

2007-01-30 Thread Daniel Barber
Please, if anyone has had any luck in successfully trapping the up / down state of the caps lock key on the Mac, please let me know. Cheers. Daniel Barber aleph1 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the arc

RE: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread Holth, Daniel C.
so like to get some real numbers when testing flash applications on slower computers and different OS. Daniel Holth -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Hairy Dog Digital Sent: Tuesday, January 23, 2007 11:17 AM To: 'Flashcoders mailing li

[Flashcoders] Getting Frames Per Second

2007-01-23 Thread Holth, Daniel C.
that eventually gets unsynched and prints out incorrect data. Thanks Daniel Holth I.S. Programmer x5217 || J301 This e-mail and its attachments are intended only for the use of the addressee(s) and may contain privileged, confidential or proprietary information. If you are not the int

RE: [Flashcoders] Q:Converting colored artwork to flash vector

2007-01-23 Thread Holth, Daniel C.
ailed drawings, the vector actually uses more memory and slows the frame rate down if it has to move. Although, runtime bitmap cache can help that. Hope that helps! Daniel Holth -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, Ja

RE: [Flashcoders] Running Flash Application on a local network

2007-01-22 Thread Holth, Daniel C.
If the application is running locally, are the XML files still pulled from external websites? Is it only the XML that isn't loading? If so, how are you loading the XML? ~Daniel Holth -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of vipin chandran

RE: [Flashcoders] advantages of EventDispatcher over AsBroadcaster

2007-01-19 Thread Holth, Daniel C.
Sounds good! Thanks Steve and Francis! Daniel Holth I.S. Programmer -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steve Polk Sent: Friday, January 19, 2007 2:59 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] advantages of EventDispatcher

RE: [Flashcoders] movement question

2007-01-19 Thread Holth, Daniel C.
{ someMovieClip__mc._rotation--; } } This will subtract 1 from rotation each frame, and then delete the function when its done, thus stopping the rotation at -90. Hope that helps! Daniel Holth I.S. Programmer x5217 || J301 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] advantages of EventDispatcher over AsBroadcaster

2007-01-19 Thread Holth, Daniel C.
And make changes to my clipShowStatus method to take in an event object... Is there a way to use the EvenDispatcher with out needing to change all my functions to take in eventObjects and instead place the needed variables directly into the function? Thanks! Daniel Holth I.S. Programmer -

[Flashcoders] array out of scope when used with listener

2007-01-02 Thread Daniel Arcé
little bit further up the hill. Thanks! Daniel. _global.PhotoAlbum = function(photos_arr:Array) { this.holders = new Array();//holds movie clips this.dims = new Array();//i want to put widths and heights here //methods this.displayAlbum = function(Void) {

RE: [Flashcoders] Adobe: December 2006 Flash Player PenetrationNumbers

2007-01-02 Thread Daniel Thompson
@greg: Thank you; most helpful. Unfortunately, not as soon as I'd hoped, but at least I know. And I'll definitely add Emmy's blog to my reader. @jd: No, I'm not the decision maker. There are issues surrounding: * Audio issues causing "Netscape" plugin to crash browser (resolved in r28) * C

[Flashcoders] Adobe: December 2006 Flash Player Penetration Numbers

2007-01-02 Thread Daniel Thompson
Hi, this is mostly for the Adobe folks on the list: I have been eyeing this page: http://www.adobe.com/products/player_census/flashplayer/version_penetration. html Will this be updated for Q4 soon? Can I get a ballpark date? I'm trying to make a plan for migration and would like some Flash Player

RE: [Flashcoders] Procedure for Reporting/Confirming Flash bugstoAdobe?

2006-12-19 Thread Holth, Daniel C.
Maybe I'm missing something, but I don't see any of the newly acquired Macromedia products listed in the bug report. The bug I would like to report is this: If I create a SWF file with any dimensions smaller than 214x214 the 'Settings' option is disabled when I open the right-click menu

RE: [Flashcoders] AS2 OOP Class Structure for simple pong type game

2006-12-13 Thread Holth, Daniel C.
p[numTileColumn][numTileRow] == 1) { // Destroy Brick } Hopefully this makes sense. I have just written this code off the top of my head so haven't implemented it in the game yet -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Holth

RE: [Flashcoders] AS2 OOP Class Structure for simple pong type game

2006-12-13 Thread Holth, Daniel C.
>> > When the ball ascends to the first row of bricks, those bricks each >> test >> > for collsion. This might be a performance improvement over testing >> > every object in the system all the time. >> > >> > P. >> > >> > >> -Orig

RE: [Flashcoders] AS2 OOP Class Structure for simple pong type game

2006-12-13 Thread Holth, Daniel C.
mething like this? (see last parameter) var vBall_Object = new Ball(mcReference, "ball_mc", 100, 160, 240, mcPaddle); Thanks Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Holth, Daniel C. Sent: 13 December 2006 14:14 To: Flashcoders maili

RE: [Flashcoders] AS2 OOP Class Structure for simple pong type game

2006-12-13 Thread Holth, Daniel C.
I would make the ball responsible for checking if it collides with the paddle because the ball's behavior/state will change - not the paddle's, nor does the state of the 'game' really change. An alternative would be to create a CollissionControler.as that does all your hit testing for you. Th

RE: [Flashcoders] loading thumbnails into a scrollable box via AS

2006-12-12 Thread Holth, Daniel C.
Mike, I've used the built in scrollPane and UIScrollBars a few times, but found fairly easy to use, but exceedingly complicated to customize. If you don't mind the default look of the ScrollPane I'd suggest using. Though bare in mind they can add considerable file size to your swf. I'd sugg

[Flashcoders] Detect Security Settings

2006-12-05 Thread Holth, Daniel C.
Is there a way to detect a user's global security settings? As in, if they have 'Always Allow' or 'Always Ask' checked. Is there a way to change these settings without being connected to the internet? We are developing an application that runs off a CD and our users are getting errors that "

RE: [Flashcoders] Book: Flash 8 reference?

2006-12-04 Thread Holth, Daniel C.
The single best book I've gotten has been The Flash 8 Actionscript Bible by Lott and Reinhardt. -Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Micky Hulse Sent: Monday, December 04, 2006 2:26 PM To: Flashcoders mailing list Subject: [Flashcoders] Boo

[Flashcoders] Open PDF in Acrobat

2006-11-29 Thread Holth, Daniel C.
We are developing an application that opens a series of PDF files that are to be used for presentations. When the PDFs are opened in Acrobat there is functionality to display as full screen, but when opened in a browser this is disabled. We cannot seem to get an URL to the files to work since

Re: [Flashcoders] Problem: Safari and dynamic loading?

2006-11-28 Thread Daniel Forslund|Lists
Sorry for the late reply! Many thanks for the suggestions - I think a load manager class is the way to go and I'll send Jamie a mail and take up the kind offer. Cheers, Dan On 22 nov 2006, at 16.36, Jamie S wrote: I the only way I was able to put the problem to bed for sure was to build a

RE: [Flashcoders] Run init function of MCL loaded Clip

2006-11-17 Thread Holth, Daniel C.
How would you recommend I pass it the variable then? I'd prefer not to have to hard code a path from the loaded swf to 'r' and would prefer not to have to change all the loaded swfs to go find 'r' since many of them have been compiled. Also, isn't the code __mclListener.onLoadInit = function(

RE: [Flashcoders] Letting go of AS2 for AS3

2006-11-16 Thread Daniel Thompson
> Just make sure it extends MovieClip or else it won't work... Actually, extending Sprite is sufficient. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flash

[Flashcoders] Run init function of MCL loaded Clip

2006-11-16 Thread Holth, Daniel C.
I have an object that uses a movieclip loader to load a swf into a holder movieclip on the stage. The mcl code in the loading object looks like this: __mclListener = new Object(); __mcl = new MovieClipLoader(); var r = this; __mclListener.onLoadStart = function(target_mc:MovieClip) {

RE: [Flashcoders] Gradients (not a coding question)

2006-11-15 Thread Holth, Daniel C.
I'm not familiar with Illustrator's Make Compound Object feature, but you could try bringing the text in as an image, doing a very high quality 'trace bitmap' then filling the new vector graphic with a gradient. -Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: [Flashcoders] new inquiry - pulsating drop shadows in mac os

2006-11-13 Thread Holth, Daniel C.
Hi Cathrine, I have never noticed this on my Mac. Are you on an Intel Mac? Flash player 9 now runs natively on Intel Macs, but previous versions of the player do not. I'm wondering if it is a performance issue with Rosetta. I'm not on my Mac now, but will play around with a bit when I get h

RE: [Flashcoders] Is it possible to expand work area in flash?

2006-11-13 Thread Holth, Daniel C.
André, You can drag the various parts of the Flash application to all different sizes and locations, as well as move menus and coding areas around too. If you want to see more of your stage you can zoom in and out with the magnifying tool, or minimize windows you aren't using. Otherwise if y

[Flashcoders] List Component - Custom Display Settings

2006-11-10 Thread Holth, Daniel C.
Hello, I'm developing an application that simulations an e-mail application, similar to Outlook. I'd like to use the List Component to hold all the e-mails and have unread e-mails bold, e-mails that need follow up in red, and completed e-mails as plain text. I have been reading through some

[Flashcoders] Closing Browser Through Flash/Javascript

2006-11-08 Thread Holth, Daniel C.
Hello, We are building Flash application that will be run off a CD and would like to have a button that closes the browser the Flash application is running in. We keep getting security errors that 'main.swf' is trying to communicate with 'index.html'. I know that I can personally set these

Re: [Flashcoders] onMouseup bug?

2006-10-20 Thread Daniel Forslund|Lists
Thanks for the replies! My apologies for not checking how the mouseup event is handled. Coming from many, many years of Director/Lingo work, I simply assumed mouseup to work in a similar manner :) Cheers, Dan On 20 okt 2006, at 17.02, Dave Mennenoh wrote: You don't need to use hitTest

[Flashcoders] onMouseup bug?

2006-10-20 Thread Daniel Forslund|Lists
Hi all! I've stumbled upon something quite weird, and have searched for an explanation without any success. Consider the following Movieclip hiearchy: Contentclip (with a few images and text fields dynamically attached) - > buttonclip I have created a class which when instanced will: - atta

Re: [Flashcoders] Movieclip event hook back to class instance?

2006-10-10 Thread Daniel Forslund|Lists
On 6 okt 2006, at 19.15, slangeberg wrote: My problem is finding a way for the preloader class instance to tell when the movieclip reaches a certain frame or frame label Actually, I prefer to set things up in an event-based model. I don't have the code in front of me, but if you look at

[Flashcoders] Movieclip event hook back to class instance?

2006-10-06 Thread Daniel Forslund|Lists
Hi all! I have a (hopefully not too ignorant) question relating to movieclips created on the fly. Basically, I have a preloader class that is generic and reusable. It's called from whatever object that does dynamic loading of content and then in turn invokes a movieclip from a passed symbol

[Flashcoders] #2032 Stream Error - How can I learn more?

2006-09-09 Thread Daniel Thompson
Hello Flashcoders, I have spent the better part of yesterday attempting to chase down an ioError. How can I get more information about the error? I only have this to go on: type="ioError" text="Error #2032: Stream Error." The issue is from attempting to invoke a REST service on an HTTPS box. I h

Re: [Flashcoders] Dynamically Loading JPGs ~ Strange Behavior

2006-09-01 Thread daniel
are, and by the time it gets to the others they will be loaded to. Control the graphics with AS. If you would like a sample of what mine looks like, send me an email offlist and I'll be happy to forward you a copy. Daniel [EMAIL PROTECTED] wrote: I have about 20 jpegs that are dynamically

Re: [Flashcoders] timeline function call from inside of a class

2006-08-16 Thread Daniel Too
This is definitely doable. when you run _root.main.foo() does _root.main exist? ilteris kaplan wrote: Hi List, I am trying to call a function I have created on the timeline of some movieclip from inside of a class I have created. It looks like I cannot do that, as it is giving me undefined

[Flashcoders] Key.CAPSLOCK woes.

2006-07-25 Thread Daniel Barber
state of this key for a project. Thanks. Daniel Hi, the isDown call traces true when i test it here, the isToggled traces false (both when holding down capslock ofcourse). Tested on xp, flash 8 Just to be sure, 'disable keyboard shortcuts' doesnt have anything to do with

[Flashcoders] Key.CAPSLOCK woes.

2006-07-24 Thread Daniel Barber
em or discovered a solution? Is this a Mac only bug? Does anyone know if screentime or an equivalent application can workaround not being able to accurately detect key events with the caps lock key? Thanks. Daniel Barber___ Flashc

Re: [Flashcoders] 195 ms versus 57 ms ping time

2006-07-24 Thread Daniel
ow if your having to deal with very high latancy (500+), then you'll notice a difference. But the difference your going to see between 57 and 195 isn't enough to even consider a new host IMO. Daniel Marcelo de Moraes Serpa wrote: Well... I have my flash website hosted outside my

Re: [Flashcoders] BitmapData manipulation. Mirror effect.

2006-07-10 Thread Daniel Cascais
image ) ); //--- Daniel Cascais ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consu

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread Daniel Cascais
ning.figleaf.com -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

Re: [Flashcoders] Flash coders content degrading

2006-06-12 Thread Daniel Cascais
Some FlashCoders might be moving over to FlexCoders, where they can talk about ActionScript 3... On 6/12/06, Mike Mountain <[EMAIL PROTECTED]> wrote: Dunno if its me skilling up (which I doubt) but it would seem a lot of the posts flash coders are getting now would be better suited in: Flashnew

Re: [Flashcoders] Flex list

2006-05-23 Thread Daniel Cascais
Flexcoders www.flexcoders.org On 5/23/06, John Grden <[EMAIL PROTECTED]> wrote: what's the main list people are using for Flex discussion? Thanks for the help, -- John Grden - Blitz ___ Flashcoders@chattyfig.figleaf.com To change your subscription o

Re: [Flashcoders] RANT: Collect Fonts Button

2006-04-13 Thread Daniel Cardenas
h fonts & font management (ATM) that they should be able to add it to the next generation apps. I'm with you. -Daniel On Apr 13, 2006, at 6:40 PM, clark slater wrote: So how can QuarkXpress offer such a utility? I don't think it would be illegal to collect the fonts used in a FLA by

[Flashcoders] Thanks! Where are you?

2006-04-13 Thread Daniel Cardenas
o try to understand the problem and help guide me. I couldn't have asked for more. I'm amazed at the level of activity here! People are posting at all hours - where is everyone? I'm in New York City. Any Flashcoder drink nights in the NYC area? Thanks

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
Awesome!! Thank you Thank you Thank you. I need to read more about the Delegate class to understand what's going on here- I have some idea, but not a clear grasp. Thank you so much for steering me in the right direction! --- [EMAIL PROTECT

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
Wow! Thanks Stacey - that's far more than 2 cents worth! I'm reading and absorbing - but will need to spend a little more time with your reply :-) --- [EMAIL PROTECTED] 917-750-6398 AIM: dcardena -

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
Thanks Mike, That does help. I get scope - although admittedly I should pay a little more attention to it... :-) And I wasn't familiar with the Delegate class - clearly something I need to read about. -dc --- [EMAIL PROTECTED] 917-750

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
you all for all your help! -Daniel --- [EMAIL PROTECTED] 917-750-6398 AIM: dcardena --- On Apr 12, 2006, at 9:49 PM, Johannes Nel wrote: import Ball.as; /* create object */ var myBall:

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
Hi Johannes - Thank you so much for your suggestions - I really do appreciate the help. I've removed MovieClip extension from the class, but it's still not working - it's still the same as where I started - the "Ball" object renders, but events don't trigger the handler. I've streamlined

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
x27;ve seen, and I am sure some more experienced people will chime in on this thread. Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Cardenas Sent: Wednesday, April 12, 2006 7:10 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders]

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
Thanks Johannes, I tried your code but it didn't work - no errors or anything, just didn't trigger the handler. Is there be a problem with my timeline code? Note - I removed some events and methods to simplify the code. Class Code: ---

Re: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Cardenas Sent: Wednesday, April 12, 2006 7:10 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Need help understanding EventDispatcher Hi, I'm trying to learn event handling using the EventDispatcher class and am having a h

[Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Daniel Cardenas
tBall" to the MC it creates, and I can trigger the event handler if I define a method directly on the MC that's created, ie: testBall.onPress = function () {myEventHandler(testBall);} but that's not what I'm trying to accomplish. I've pasted the code below - an

Re: [Flashcoders] Falling leafs

2006-04-03 Thread Daniel Cascais
I've seen a lot of apps like this, very popular in christmas time (with falling snow) I'm sure Robert Penner has an example somewhere. You can also try Ultrashock.com. On 4/3/06, Eskil Janson <[EMAIL PROTECTED]> wrote: > Hi! > > I have a customer who wants falling leafs or herbs (small jpg:s ) to

[Flashcoders] Re: looking for some .NET to Flash tools

2006-04-03 Thread daniel
Hi! Have you tried SQLXML? http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/anch_sqlxml.asp It allows you to send SQL queries with XML messages, or through normal URLs. (The latter is probably not very secure.) http://msdn.microsoft.com/library/default.asp?url=/lib

Re: [Flashcoders] Architecture opinion...

2006-03-28 Thread Daniel Cascais
I think you could use something like the example I had posted some time ago. It uses the technique Scott is mentioning. ___ Flashcoders@chattyfig.figleaf.com To change your sub

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

2006-03-04 Thread Daniel Freeman
7;s pretty neat programming. I'll go and have a look. Daniel (e2easy.com) On Yahoo!7 Messenger - Make free PC-to-PC calls to your friends overseas. http://au

[Flashcoders] SWF Mouse drag out

2006-02-28 Thread Daniel Cascais
Hi, I've been testing how to get the x and y position of the Mouse when outside the Stage when the SWF is embedded in an HTML, which obviously is not easy. For now I am interested in getting the Mouse coordinates when the mouse has been pressed inside the Stage (onMouseDown) and the dragged out. W

Re: [Flashcoders] Load centered images in movie clip - Heeelp!

2006-02-15 Thread Daniel Cascais
Try using a MovieClipLoader and then wait for the onLoadInit event, after that you can set the x and y based on the width and height. Daniel ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] Browser back button, is it necessary?

2006-02-12 Thread Daniel Freeman
Is it even possible to disable it? How do you do that? (Unless, you open a new window with no controls). Or is there some technique I don't know? (JavaScript?) The problem with the back button is that people are very used to using it for navigating internet content. When I got non-technical pe

Re: [Flashcoders] Any one can explain about Flash media server

2006-02-04 Thread Daniel Cascais
You can have a look at these samples here, they might be inspiring for your application. http://www.macromedia.com/devnet/flashmediaserver/sample_apps.html You should also have a look at the tutorials and info in macromedia's site which are pretty good. Daniel On 2/4/06, hidayath q &l

Re: [Flashcoders] How do you code your Flash applications?

2006-02-04 Thread Daniel Cascais
> getNextHighestDepth()+10*152/36%23*Math.random()*362; LOL ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] How do you code your Flash applications?

2006-02-03 Thread Daniel Cascais
I completely agree with what Ryan says, but if you still want to use getNextHighestDepth(), as Nathan commented, you could do something like this and get a similar result: ...getNextHighestDepth() + 10; Daniel On 2/3/06, ryanm <[EMAIL PROTECTED]> wrote: > > No, but what Ryan

Re: [Flashcoders] XML Driven Application Driving me crazy :)

2006-01-31 Thread Daniel Smith
/ specifically: http://www.crockford.com/JSON/JSON.as Daniel -- Daniel Smith - Sonoma County, CA dls [at] daniel [dot] org - AIM: SonomaDaniel http://daniel.org/blog- http://resume.daniel.org FlexiPhoto is in Alpha! - http://FlexiPhoto.org ___

Re: [Flashcoders] Lines of code in a Flash project

2006-01-27 Thread Daniel Smith
. well, just the style of {} bracing and // commenting could really affect that. It's a dubious metric though. Something like "features per week" is more meaningful. Daniel -- Daniel Smith - Sonoma County, CA dls [at] daniel [dot] org - AIM: SonomaDaniel http://danie

Re: [Flashcoders] FLV not showing, please help

2006-01-26 Thread Daniel Cascais
ers, as it is MP3 and both players support it. > Can somebody please take a look at my code. The flv doesnt show, but the > audio I do hear. -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders mailing

Re: [Flashcoders] checking combinations

2006-01-26 Thread Daniel Cascais
k, ok I'm clearly outnumbered here - waving white flag :-) > > And the approach Daniel demonstraded (similar to what Martin outlined) is > indeed very elegant and succint. > > When the actions to take (depending on which combination 'is the case') are > rather com

Re: [Flashcoders] checking combinations

2006-01-25 Thread Daniel Cascais
interesting. -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] checking combinations

2006-01-25 Thread Daniel Cascais
0 1 n 1 1 1 0 o 1 1 1 1 p */ On 1/25/06, eric dolecki <[EMAIL PROTECTED]&g

Re: [Flashcoders] Stage.height Misreporting

2006-01-05 Thread Daniel Todd
Have you tried placing the flash object into an html file and testing it there? I know that on some older versions of flash, that when testing in the IDE it would give you different stage sizes than the size of the stage as set in the properties panel. On 1/5/06, coker todd <[EMAIL PROTECTED]>

[Flashcoders] RE: > Artificial Life flash resources

2005-12-29 Thread Daniel Freeman
"Artificial Life" - that got my antenna waving. Artificial Life is a variety of learning/evolving techniques that are metaphors for natural systems. These techniques include; Cellular Automata, Genetic Algorithms, Neural Networks (MLPs), etc. Just Like A.I., the principles are easy to understand

Re: [Flashcoders] test

2005-12-19 Thread Daniel
test recieved Weyert de Boer wrote: test ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-15 Thread Daniel Cascais
Me to :| ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-15 Thread Daniel Cascais
> >>Thanks, Macromedia! > > What is a Macromedia? http://en.wikipedia.org/wiki/Macromedia ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Installing Central

2005-12-15 Thread Daniel Freeman
(A little OT, apologies, but the Central mailing list mysteriously vanished some months ago) I can't install Central anymore? (MacOS 10.4.2) I get a download error. Is it just me? Can other people install Central? If you've got a computer that doesn't already have Central installed, try hitti

[Flashcoders] Re: alpha -= 10 = wtf

2005-12-15 Thread Daniel Freeman
Judah, See: http://en.wikipedia.org/wiki/Floating_point#Problems_with_floating-point Send instant messages to your online friends http://au.messenger.yahoo.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.c

Re: [Flashcoders] Book sequence...

2005-12-12 Thread Daniel Smith
Read them online. Check out a subscription to Safari Online: http://safari.oreilly.com/ One nice thing is being able to have access to ~30 books in a cafe/etc for about $30/month. just a happy customer, Daniel -- Daniel Smith - Sonoma County, CA dls [at] daniel [dot] org - AIM

Re: [Flashcoders] motion detection

2005-12-07 Thread Daniel Cascais
-flash8.mov > > /RobD > > 2005/12/7, Daniel Cascais <[EMAIL PROTECTED]>: > > > > What does it do, apart from crashing IE and FF when you open it? > > > > > http://www.playdocam.com/flash8/fire.html > > > &g

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 h

Re: [Flashcoders] JERKY Animations

2005-12-01 Thread Daniel Todd
You're not importing the grapics dynamically into Flash 8 are you? Daniel ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] zoomable Flash maps

2005-11-29 Thread Daniel Cascais
t; >> Please send me links to examples of Flash maps, howtos or anything that > can help << > > > Thanks, > Hans. -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Swfs embedded in an email

2005-11-24 Thread Daniel Cascais
The most reliable way to have the recipient actually view the Christmas card (only if he/she wants to) is to have a link to it. I had to do it like so last Christmas, and I believe most companies that use flash for their email greeting cards do it this way. Daniel On 11/24/05, Danny Kodicek

Re: [Flashcoders] Blitting, Double-Buffering, and Other Bitmap Methodologies

2005-11-23 Thread Daniel Cascais
but it might be good for some inspiration. Note: I think the samples are done for FP8. Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Re: Q for the Pro's: How did you learn flash?

2005-11-21 Thread Daniel Freeman
I looked at the examples you gave. They're not based on anything complicated in ActionScript. Just moving stuff around the screen, attaching movie clips, buttons, program control... Programming is easy. However, these impressive web sites rely on something much more difficult to master - Graphi

Re: [Flashcoders] elegant country list

2005-11-18 Thread Daniel Cascais
___ > Flashcoders mailing list > Flashcoders@chattyfig.figleaf.com > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders mail

Re: [Flashcoders] weird scaling issue in internet explorer and 1900 x 1200 resolution

2005-11-15 Thread Daniel Cascais
> Grant > ___ > Flashcoders mailing list > Flashcoders@chattyfig.figleaf.com > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___

Re: [Flashcoders] How do I make a new post?

2005-11-09 Thread Daniel
you just did. DP wrote: Hey! I think I might be really dumb by asking this How do I make a new topic in this group? I've tried posting a new topic twice. Maybe it is over my head! David ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.

Re: [Flashcoders] Expandable banners

2005-11-09 Thread Daniel
der. They have sence I can remember had anoying ads, but they did well. This was simply because they were the best search engine out there. Once google became the best, yahoo, took the back seat. The ads they do arn't what make them big. Its just an added bonus. Daniel JesterXL w

Re: [Flashcoders] Expandable banners

2005-11-09 Thread Daniel
d hate it if they got rid of banner advertising. They would probably go back to pop ups everywhere wich is even more anoying. Oh, and some of us arn't rich and can't afford to pay for every site we go to. Daniel ryanm wrote: But when the quality of programming on TVnose dives, Y

Re: [Flashcoders] Open all Branches of a Tree Component

2005-10-27 Thread Daniel Cascais
tTreeNodeAt(i), open, false); } } Hope it helps. -- Daniel Cascais Tel: +56 (0)2 4589495 Cel: +56 (0)9 9417355 ___ Flashcoders mailing list Flashcoders@chattyfig.fig

[Flashcoders] Multilanguage sites

2005-10-25 Thread daniel clarke
e some top level research and figure theres goingto be issues with character sets etc. Does anyone have any links to good resources or advice to give ? Thanks in advance Daniel ___ Flashcoders mailing list Flashcoders@chattyfig.figlea

<    1   2