[Flashcoders] JSFL: Can I set the htmlText property?

2006-08-29 Thread Edu Emece
Hello, I'm using JSFL with a SWF on a XMLUI. The SWF has a TextField with htmlText property set to on. I create a Text Object with JSFL, but I don´t know how can I populate/set the htmlText that I have on the SWF-XMLUI TextField . currentDoc.addNewText({left:0, top:0, right:100, bot

Re: [Flashcoders] Evenly distribute n clips in an area

2006-08-29 Thread fraser
Aha! Thanks Danny, this will work really well! Cheers :) On 8/30/06 4:15 PM, "Danny Kodicek" <[EMAIL PROTECTED]> wrote: > >> Hi, this problem was raised in 2002 and sort of solved by Jon >> Bradley (code >> below) but not quite the way I need. >> >> What I¹m after is a function that divides a

RE: [Flashcoders] Evenly distribute n clips in an area

2006-08-29 Thread Danny Kodicek
> Hi, this problem was raised in 2002 and sort of solved by Jon > Bradley (code > below) but not quite the way I need. > > What I¹m after is a function that divides a defined area into n > equal parts > and places a clip in each part to achieve even distribution throughout the > area. Jon Bradley¹

[Flashcoders] setSelection() with TextInput?

2006-08-29 Thread Haikal Saadh
Hi all. I've been beating my head against the wall for a bit, trying to get Selection.setSelection() to work inside a component. I've got this code, inside a component which happens to contain a TextInput: private function focusIn(){ trace(answer_ti.text + "] received focus"); a

RE: [Flashcoders] jigsaw "performance" issue

2006-08-29 Thread Danny Kodicek
> now for the problem.. if you see the flash movie i've attached, you'll > notice that when a group of pieces that are connected to each other are > moved sometimes it lags. I've manage to lock down the core > problem, which is > that it only lags when you drag a piece located from the left / > top

[Flashcoders] Does Flex Data Services require FP9?

2006-08-29 Thread Rajat Paharia
I'm assuming that Flash Player 9 is required on the client in order to interact with Flex Data Services, but haven't seen that explicitly stated anywhere. Can anyone tell me if this is in fact the case? thanks, - rajat -- Rajat Paharia [EMAIL PROTECTED] http://www.bunchball.com http://www.rootbur

[Flashcoders] Evenly distribute n clips in an area

2006-08-29 Thread fraser
Hi, this problem was raised in 2002 and sort of solved by Jon Bradley (code below) but not quite the way I need. What I¹m after is a function that divides a defined area into n equal parts and places a clip in each part to achieve even distribution throughout the area. Jon Bradley¹s solution below

Re: [Flashcoders] MC position at any given time

2006-08-29 Thread ben deroo
thanks for the help guys, I'll certainly look into Fuse and learn a bit more about those undocumented events that Tween dispatches. Any suggestion as to where I can find documentation on that, or is that a bit sarcastic of me? kind regards, Ben On 8/29/06, Ryan Potter <[EMAIL PROTECTED]> wrote

[Flashcoders] jigsaw "performance" issue

2006-08-29 Thread Guntur N. Sarwohadi
This is the jigsaw topic again.. :D Much thanks for the help you guys lended several weeks ago to make me (almost) finish this jigsaw puzzle project. Most of the core mechanism is done, but now it needs some final adjustments, mostly concerning 'optimizing performance'. Currently I've implemented

RE: [Flashcoders] Stylesheet Formatting of Default Tags

2006-08-29 Thread GregoryN
Hello Joseph, I think "default tags" are closely connected to TextFormat properties. So, the content of tag will always have TextFormat.bold = true and content of tag will always have TextFormat.italic = true They're just trying to make TextFormat and tags interchangeable where possible. Remem

[Flashcoders] help with pauseAllTweens()

2006-08-29 Thread PR Johnny
I need some help with Laco's pauseAllTweens() & unpauseAllTweens() functions. I have a main MC that has a child swf loaded into a container mc. This child swf contains 18 frames, each frame has a mc with Laco tweens. When the main MC changes "sections", the loaded child swf jumps to the appropri

Re: [Flashcoders] problem about blur

2006-08-29 Thread Alain Rousseau
http://www.google.ca/search?sourceid=mozclient&ie=utf-8&oe=utf-8&q=dynamically+blur+movieclips+with+flash+8 Gustavo Duenas wrote: Hi, I have a web site and I'd like to know how to make the different external movieclips I have would be blurred while a button is pressed. then, how to remove

[Flashcoders] [Ann-FlashDev-Syd] 11th Sept Sydney Flash Platform Developers Gorup

2006-08-29 Thread Chris Velevitch
The next meeting on the 11th September is on LiveCycle. Mark Szulc of Adobe will give us an overview of LiveCycle and give us some insight as to how Flash/Flex can work with it. This meeting will alos be a joint meeting with the NSW Coldfusion Users Group. The meeting is on at 6:30pm for 7pm star

Re: [Flashcoders] MC position at any given time

2006-08-29 Thread Ramon Miguel M. Tayag
you can do sqdown.onMotionProgress - it'll dispatch an event every step of the way for you to track. There are a bunch of other undocumented events that Tween dispatches that you should check out On 8/29/06, ben deroo <[EMAIL PROTECTED]> wrote: /* the question: I want to detect the position o

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
Thanks! I found the book and going to give it a good read, I read twice Mook's book in essentials of AS2 but still I havent been able to grasp the consept as you can tell by my question. Anyhow, how do you go by decompiling some one else's code when there are items you dont understand? I have goo

Re: [Flashcoders] Best way to pause/play video

2006-08-29 Thread Samúel Jónasson
ns.pause(); to pause...and then... ns.pause(); to play again. It works like a toggle. At least in AS3. Sammi Mendelsohn, Michael wrote: Hi list... How exactly do you pause and play a video? I'm trying to create a play/pause toggle button that isn't quite working. When pausing a video, sh

Re: [Flashcoders] AMFPHP 1.2 Class Mapping & VO's incomming from PHP5 - It works but...

2006-08-29 Thread Julius Turnmire
Very interesting! Thanks :) On Wed, 2006-08-30 at 01:12 +0200, eka wrote: > Hello :) > > class mapping it's very cool ... but i prefere use EDEN > serialisation/deseiialization :) > > More information : http://live.burrrn.com/wiki/eden > > you can use this tool in Javascript, AS1, AS2, AS3,

RE: [Flashcoders] HTML formated text in Flash 8 SWF

2006-08-29 Thread Robin Burrer
Hi EKA, Too easy. For this application I'm using the v2 text area component. "condenseWhite" is not listed as a property. I realized that the text area component doesn't inherit properties from the flash text field. myTextArea.label.condenseWhite=true works fine though. Thanks for the tip! It's

Re: [Flashcoders] AMFPHP 1.2 Class Mapping & VO's incomming from PHP5 - It works but...

2006-08-29 Thread Julius Turnmire
Yes! That's exactly what's happening! So now I can do this in my VO class: class ExampleVO { result:Object; // datatype will depend on what server returns! aString:String; aNumber:Number; function ExampleVO() { processResult(); } private function proces

Re: [Flashcoders] mvc dillema

2006-08-29 Thread Peter Uithoven
thank you all very much for all your opinions. I'm going for the wrapper functions :) Greetings Peter On 8/29/06, Mark Lapasa <[EMAIL PROTECTED]> wrote: Just to add to what has already been said here: The only thing that is genuinely useless are those behaviors/requirements that don't have a

[Flashcoders] FLV8/VP6 decoding?

2006-08-29 Thread coderman
Hello, is there anyway to decode Flash 8 / VP6 video back to say AVI? -ROB ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fi

Re: [Flashcoders] AMFPHP 1.2 Class Mapping & VO's incomming from PHP5 - It works but...

2006-08-29 Thread eka
Hello :) class mapping it's very cool ... but i prefere use EDEN serialisation/deseiialization :) More information : http://live.burrrn.com/wiki/eden you can use this tool in Javascript, AS1, AS2, AS3, ASP, .NET etc... and if you can't use remoting you can continue to keep your datas in .txt or

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Johannes Nel
f the compiler required him to call super(), he would have had more information to figure out what was wrong no. there is nothing more in that as all classes extend at least object. anyway this is pedantic. helmut: i advise you to download thinking in java by bruce eckels and read about OO, it

RE: [Flashcoders] >> String and Expression SPECIAL

2006-08-29 Thread Steven Sacks | BLITZ
Try bracket access. rec.text = flashSQL.MoveNext[d] I don't have enough of your code to know for sure but that's my first guess. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf

RE: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Steven Sacks | BLITZ
You are being far too defensive. I was not attacking you, I was attacking lazy coding practices. I didn't say YOU are a lazy coder, I said taking advantage of a compiler's shortcoming is lazy coding. If the compiler required him to call super(), he would have had more information to figure out w

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
Thanks for the tip. Mainly I dont need to see it twice but it was more of an experiment to understand how the classes work and how they behave. On 8/29/06, Hans Wichman <[EMAIL PROTECTED]> wrote: Hi, no you are calling it once, if you had used: function SubApplication() { super();

RE: [Flashcoders] >> String and Expression SPECIAL

2006-08-29 Thread André Goliath
use the array operator,... rec.text = flashSQL.MoveNext[d] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Laurent CUCHET Sent: Wednesday, August 30, 2006 12:34 AM To: Flashcoders mailing list Subject: [Flashcoders] >> String and Expression SPECIAL here

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Hans Wichman
Hi, no you are calling it once, if you had used: function SubApplication() { super(); initiate(); } you would have seen it twice, but i wouldn't know why you'd want to:) grtz Hans On 8/30/06, Helmut Granda <[EMAIL PROTECTED]> wrote: Thanks guys, I think i have to go back to th

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Johannes Nel
without being nasty now, don't be prescriptive. i was pointing something out, nothing more nothing less. before attacking my code or my habits i would advise you to know what they are and how it looks. have a nice day:) On 8/29/06, Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote: And one more t

[Flashcoders] >> String and Expression SPECIAL

2006-08-29 Thread Laurent CUCHET
here I got a string and not an expression How can I do to preserve expression and make rec.text egal to a result and not a string ? var myListener1:Object = new Object(); d = "var"+c; // c is a random Number function tabti() { rec.text = flashSQL.MoveNext.+d;// doesnt work her , rec text =²fla

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
Thanks guys, I think i have to go back to the books because even simple code as the following wont give me the result I am looking for: Application.as-- class Application { public function Application() { init(); } public function init() { trace("initiation"); } } Su

Re: [Flashcoders] AMFPHP 1.2 Class Mapping & VO's incomming from PHP5 - It works but...

2006-08-29 Thread Julius Turnmire
On Tue, 2006-08-29 at 18:17 +0200, Martin Wood wrote: > Unfortunately the player wont do data type conversion when deserializing the > contents of an object returned via remoting. Bummer :( > > You have to make sure your types are right on the server so that when the > remoting gateway construc

RE: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Steven Sacks | BLITZ
And one more thing - if the compiler complained to him to call super(), then he wouldn't have had this problem would he? I'll take a strict compiler any day. Don't encourage lazy coding; it only opens the door for bugs and confusing results. ___ Flashco

RE: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Steven Sacks | BLITZ
And a browser tries to fix unclosed div and font tags, too. Just because compiler allows you to be lazy doesn't mean you should be. Code right, or don't code at all. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] problem about blur

2006-08-29 Thread Gustavo Duenas
Hi, I have a web site and I'd like to know how to make the different external movieclips I have would be blurred while a button is pressed. then, how to remove the blur of the movie clips once we return to the main dialog. I know you might be busy but I'd appreciate your help thanks Gus

Re: [Flashcoders] AMFPHP 1.2 Class Mapping & VO's incomming from PHP5 - It works but...

2006-08-29 Thread Julius Turnmire
Yup, I do do registerClass. Wouldn't work without ;) I'll check out your article, but as far as I can tell everything is working it's just overwritting the variables in my class.. On Tue, 2006-08-29 at 18:07 +0200, eka wrote: > Hello :) > > do you use Object.registerClass method to register you

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Johannes Nel
the compiler adds it if it ain't there On 8/29/06, Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote: You should make sure to call super(); in your subclass constructors, too. BLITZ | Steven Sacks - 310-551-0200 x209 > -Original Message- > From: [EMAIL PROTECTED] [mailto:flashcoders- >

RE: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Steven Sacks | BLITZ
You should make sure to call super(); in your subclass constructors, too. BLITZ | Steven Sacks - 310-551-0200 x209 > -Original Message- > From: [EMAIL PROTECTED] [mailto:flashcoders- > [EMAIL PROTECTED] On Behalf Of Chris Allen > Sent: Tuesday, August 29, 2006 2:56 PM > To: Flashcoders

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Chris Allen
Hi Helmut, They don't need to be static at all. In fact if you want to access the parent class you can use the key word super. super.myMethodName() for example. Take a look at the documentation on that and hopefully that gets you pointed in the right direction. Good Luck. -Chris On 8/29/06, He

Re: [Flashcoders] MC position at any given time

2006-08-29 Thread Moses Gunesch
I'm not sure if what you are doing has to be exactly position based or if you could just use timing? Fuse 1.1z supports a time-based trigger feature for that sort of overlap, like: var myfuse:Fuse = new Fuse(); myfuse.push( { target: square1_mc, start_x:100, x:200, seconds:2, trigger:1 });

RE: [Flashcoders] OOP methodology and flash. I'm loosing my faith...

2006-08-29 Thread Steven Sacks | BLITZ
I wrote: > > All I have to say about this is tellTarget and _global. > > Conversation over. Mike wrote: > tellTarget was deprecated in Flash 5 and has been removed in AS3. Not > sure what you mean about _global, or why the conversation is over. > ... > Maybe I'm missing something. Yes, a sense o

RE: [Flashcoders] Extending singletons?

2006-08-29 Thread Steven Sacks | BLITZ
I have singletons with extensions. class myClass extends superClass { private static var _instance; function myClass() { // do constructor stuff } public function get instance() { if (!_instance) return new myClass(); re

[Flashcoders] Class inheritance and scope

2006-08-29 Thread Helmut Granda
Hi, I have a class with 3 subclasses. in order for me to access a method from any of the subClasses they have to be static (or at least that is the error that the compiler gives me) so i have made my methods static and now when i try to access somethig out of those methods flash tells me that Ins

RE: [Flashcoders] File upload : getting Flash to know the new name

2006-08-29 Thread Bernard Visscher
If you create a MD5 of the filename, why not create a MD5 within flash of the original name. MD5 classes can be found, here is one: http://www.meychi.com/archive/31.php > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Namens > Rich Rodecker > Verzonde

RE: [Flashcoders] mvc dillema

2006-08-29 Thread Mark Lapasa
Just to add to what has already been said here: The only thing that is genuinely useless are those behaviors/requirements that don't have a home. Adding a playlist feature is something that doesn't belong in the controller because it doesn't help model-view relations. Nor does it belong in the vie

Re: [Flashcoders] Help Formating/Styling Dynamic Text

2006-08-29 Thread R.A. Williamson
Double check these things: 1) The TextFormat::font must be set to the linkage id of the embedded font, not the font's original name (i.e. "BigBoldTreb", not "Trebuchet MS"). 2) set TextField::embedFonts property to true. 3) call TextField::setTextFormat *after* text is assigned to the TextField

[Flashcoders] Looking for resumes/contractors, please fill in the blank :)

2006-08-29 Thread Chris Hill
Hello fellow Flashcoders, I'm getting a new job soon, and will be running the interactive division for a small/medium sized technology marketing firm. I'm trying to build a solid portfolio of prospects: Contractor resumes: Both programmer and designer jobs. Please give your rate if you have o

Re: [Flashcoders] mvc dillema

2006-08-29 Thread Mike Britton
You could use EventDispatcher in the Model, View and Controller, and send the XML data to your Model through your Controller. When the Model changes, make it dispatch an event that updates the view, etc. Mike ___ Flashcoders@chattyfig.figleaf.com To ch

RE: [Flashcoders] help with embedding fonts/using textformat?

2006-08-29 Thread Paul Steven
I experienced similar problems and found the solution was to give the fonts in the library a linkage name and check "Export for action script" and "Export in first frame". This seems to have fixed it. Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of g

Re: [Flashcoders] mvc dillema

2006-08-29 Thread Jim Kremens
Lots of mvc implementations include accessor methods at the top level (convenience methods). There are no rules, really, so there's nothing wrong with this. The mvc is just there to help you organize the application, and to maintain it later. It's meant to keep code where it belongs. That said

Re: [Flashcoders] mvc dillema

2006-08-29 Thread Martin Wood
So I was wondering what the best method may be to access the model to add a playlist. Some say the best way is to create a wrapper function to the MusicPlayer class, that simply runs the method of the model. But then I need to create extra kinda useless functions in the MusicPlayer class. So what

[Flashcoders] mvc dillema

2006-08-29 Thread Peter Uithoven
Hi folks, I have created a MusicPlayer class in the model-view-controller design pattern. But I'm having a moral dilemma... I want to make it possible to add a playList to the player after creating the class. But the class (MusicPlayer) only creates instances of the model (MusicPlayerModel) and th

[Flashcoders] wildcard with allowDomain

2006-08-29 Thread edwin
From the documentation, the following syntax for the allowDomain command is allowed: System.security.allowDomain("*"); or System.security.allowDomain("www.myDomain.com", "www-qa.myDomain.com", " test.myDomain.com"); My question is, can you use the wildcard in this manner: System.security.allowDo

[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] View HDV in Flash

2006-08-29 Thread eric dolecki
My guess is that only regular DV is going to work, for many technical reasons. - e. On 8/28/06, Joe Cutting <[EMAIL PROTECTED]> wrote: I've got a lovely Sony HC1 High Definition camcorder and I'd like to be able to view its output in Flash. Unfortunately although the camera settings lists it a

[Flashcoders] View HDV in Flash

2006-08-29 Thread Joe Cutting
I've got a lovely Sony HC1 High Definition camcorder and I'd like to be able to view its output in Flash. Unfortunately although the camera settings lists it as a camera if I select it I just get a blank output. As anyone managed to get this or any other High Definition camera to display in Flas

RE: [Flashcoders] Re: OOP methodology and flash. I'm loosing myfaith...

2006-08-29 Thread Jeff C
I've inherited some projects using lots of clean MVC ideas and I've inherited projects that made me come of withe the acronym YALOA.. Yet Annother Layer of Abstraction These later ones made me think of the quote that "Most complex systems that work started out as simple systems that work"

RE: [Flashcoders] Adobe Developer Support?

2006-08-29 Thread Brake, Stephen
Level one that you get for about $1200 a year - poor. There is level 2 that (at least last year) was about $3000 a year. This is second level support. My experience with Level one is that they do not know very much and always have to go back to level 2 go get you an answer. If you are a very in

RE: [Flashcoders] File upload : getting Flash to know the new name

2006-08-29 Thread hank williams
The way that flash file upload works you really need to think about it a little differently. The way I do it is to send a command to the server *before* I do the upload, and I create a record for the upload in my database. This new ID comes back to flash, and when I do the upload, I add the id as

Re: [Flashcoders] OOP methodology and flash. I'm loosing my faith...

2006-08-29 Thread Mike Britton
All I have to say about this is tellTarget and _global tellTarget was deprecated in Flash 5 and has been removed in AS3. Not sure what you mean about _global, or why the conversation is over. If the original poster wants to build scalable and easily maintained apps, suggesting he use tellTarge

RE: [Flashcoders] MC position at any given time

2006-08-29 Thread Ryan Potter
Ben- I don't know if you have played with Fuse but it can do exactly what you want using the built in events. The mx tweens may be able to do the same thing, but I don't know. If you are going to use fuse look at the event "onUpdateTween". http://www.mosessupposes.com/Fuse/ http://www.mosessup

Re: [Flashcoders] File upload : getting Flash to know the new name

2006-08-29 Thread John VanHorn
what you can do is have a script or remoting method that you can call that will generate a file name for you. you can then pass that string to the upload script. On 8/25/06, Serge Jespers <[EMAIL PROTECTED]> wrote: Hey guys, I'm doing a fileUpload in this project and in my PHP script, I rename

RE: [Flashcoders] Re: OOP methodology and flash. I'm loosing myfaith...

2006-08-29 Thread Merrill, Jason
>>If you're building a bird house, should you spend the time to get proper >>zoning, building permits and lay down a cement foundation, plumbing and >>wiring as if you were building a real house? :) If really like birds and you want a really GOOD birdhouse. :) Jason Merrill Bank of America Lea

[Flashcoders] OT: anyone in the Houston area?

2006-08-29 Thread John Grden
Please contact me offline if you're from the Houston or San Antonio areas. I just have some general questions about the areas Thanks! -- [ JPG ] ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://c

[Flashcoders] Flash 4 documentation

2006-08-29 Thread Flapflap
Hi there, I'm looking for a Flash 4 documentation. I'm also thinking that is it free of charge now, can I download it anywhere ? -- Flapflap[at]sans-facon.net -- DevBlog : http://www.kilooctet.net ___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] Shared Object Woes: Inconsistantly reading shared object

2006-08-29 Thread Jon Halk
I've created an application which synchonizes to a database online but is run locally as an exe. The data is stored as a shared object until it is synchronized with the database at which point it is removed from the shared object. The application requires a user to login connected to the internet

[Flashcoders] Best way to pause/play video

2006-08-29 Thread Mendelsohn, Michael
Hi list... How exactly do you pause and play a video? I'm trying to create a play/pause toggle button that isn't quite working. When pausing a video, should you close the netstream? And if so, how is the best way to reopen it to resume play? Thanks, - Michael M. case ("playPause") :

[Flashcoders] non-coder needs help

2006-08-29 Thread PGriswold
Sorry if this is a dupe - my mail server has been screwy for a couple of days. It appeared as though this had bounced: Hi guys, About 95% of what you guys do is way over my head and now I could use some help. I have a 3D rendered object that is in a movie clip - it does a single 360 degree

RE: [Flashcoders] Re: OOP methodology and flash. I'm loosing myfaith...

2006-08-29 Thread Steven Sacks | BLITZ
If I am building an application, not a presentation, and it's not throwaway (going to be gone in 6 months) or I'm expected to maintain and/or upgrade it for awhile, then I will write MVC because of all the benefits it provides long-term and for future developers to follow behind me. Otherwise, I j

Re: [Flashcoders] Singleton not always Singleton?

2006-08-29 Thread Adrian Park
It *is* for Shell Petroleum :) But, point taken because I don't think the project I'm working on is going under the .com domain. I copied some classes from a previous project which was under the .com domain without even thinking about changing the package names. Slap self on wrist!! Also, mental

[Flashcoders] Storing MovieClip instances in an Array / Collection

2006-08-29 Thread Matt Bennett
Hello Flashcoders, I'm building a scrollable list, and I keep track of the list items with a Collection. I'm having some trouble with instance names, I think, and the Collection is not populated properly. Here's my function to add a list item: function addListItem(symbolName, props)

RE: [Flashcoders] Re: OOP methodology and flash. I'm loosing myfaith...

2006-08-29 Thread Arva, Adrian
The patterns are there to help. No need to use something if it doesn't actually benefit you. It is weird for somebody to look for patterns to be implemented so that the application is "pattern" compliant. When you ensure that only one object needs to exist, voila, you used the singleton pattern

Re: [Flashcoders] 128 character limit in XML node?

2006-08-29 Thread Adrian Park
If it helps, I had this problem and solved it by making the href point to an ActionScript function which in turn used getURL to open the link. This way I was able to use URLs longer than the 128 character limit. HTH A. On 8/26/06, Aaron Hedquist <[EMAIL PROTECTED]> wrote: Yes, that's exactly t

[Flashcoders] Populating Text Fields

2006-08-29 Thread CK
Hi, An attempt to dynamically assign text gathered from XML nodes has me stumped. I've the text field instances, but am at a loss how to proceed. Any help would be appreciated. Code: //Create XML Object var aquentDoc:XML = new XML(); aquentDoc.ignoreWhite = true; //event handler aquentDoc.

Re: Re: Re: Re: Re: [Flashcoders] Misreporting instanceof operator.

2006-08-29 Thread Ian Thomas
On 8/24/06, Chris Allen <[EMAIL PROTECTED]> wrote: Thanks for your help on this Ian. I'm not sure I understand all of what you found here, so let me summarize with some questions to see if I got it right. Flash 6 SWFs fail every time when loaded remotely? - This hasn't been my experience. I've

[Flashcoders] Stylesheet Formatting of Default Tags

2006-08-29 Thread Joseph Balderson
I've been trying to find this out, but for the life of me can't find the answer to this question anywhere and could use your help... When you use a Stylesheet object for formatting an htmlText-field, you can only redefine the , , , and tags, whether it be with AS or using an external styleshe

Re: [Flashcoders] AMFPHP 1.2 Class Mapping & VO's incomming from PHP5 - It works but...

2006-08-29 Thread Martin Wood
Unfortunately the player wont do data type conversion when deserializing the contents of an object returned via remoting. You have to make sure your types are right on the server so that when the remoting gateway constructs the amf data to send to flash it has the correct types already inside.

Re: [Flashcoders] Updating an app to Flash 8 breaks my app

2006-08-29 Thread mark . jonkman
Hi Paul This might not help you much, but in general most of these errors are due to case sensitivity issues. That is you will find in a few cases scattered throughout version 1 components, including those built by Macromedia, issues where someone typed a function name with slightly different c

Re: [Flashcoders] AMFPHP 1.2 Class Mapping & VO's incomming from PHP5 - It works but...

2006-08-29 Thread eka
Hello :) do you use Object.registerClass method to register your VO classes in ActionScript ? You can read in french my article about Class Mapping (AS2 and AS3) and fixing bug in AS3 in my blog : http://www.ekameleon.net/blog/index.php?2006/08/28/48--amf-class-mapping-difficile-en-as3 Sorry,

[Flashcoders] help with embedding fonts/using textformat?

2006-08-29 Thread grimmwerks
Hey all. I'm attempting to use some embedded fonts with Flash, and it just doesn't seem to be working. In the library I've added a new font, selected the font I wanted to use and called it 'Q_Body_Text'. I then have this test script: tBodyText = new TextFormat(); tBodyText.font = "Q_Body_Text

[Flashcoders] Adobe Developer Support?

2006-08-29 Thread Josh Santangelo
Anyone used it and have a review? http://partners.adobe.com/public/developer/support/ I'm not in need at the moment, but I'm wondering what the quality is like. -josh ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or sear

[Flashcoders] HTTPS and IE and Forms...oh my

2006-08-29 Thread Christian
In searching through the archives, I found two solutions for this known issue, but was curious if anyone else knew of any other solutions. Basically, I'm looking to submit from data to an https://whatever.com url and have that URL provide a post back of confirmation. The Swf itself resides on

Re: [Flashcoders] Duplicate linkage id weirdness

2006-08-29 Thread John Grden
ah it's because if the asset is on stage as a "Button" y ou have to change it to "MovieClip" there as well. Good times. On 8/29/06, John Grden <[EMAIL PROTECTED]> wrote: did you ever get an answer to this? I just had the same exact thing happen. I have a jsfl script that converts "Buttons" t

Re: [Flashcoders] Duplicate linkage id weirdness

2006-08-29 Thread John Grden
did you ever get an answer to this? I just had the same exact thing happen. I have a jsfl script that converts "Buttons" to "MovieClips" and assigns a class to be bound to it etc. I get the same exact error. On 6/9/06, ben farrell <[EMAIL PROTECTED]> wrote: So I had some weirdness publishing

Re: [Flashcoders] HTML formated text in Flash 8 SWF

2006-08-29 Thread eka
Hello :) try to use TextField.condenseWhite property :) http://livedocs.macromedia.com/flashlite/2/main/0816.html EKA + :) 2006/8/29, Robin Burrer <[EMAIL PROTECTED]>: Hi all, This is wired. It seems html text in a flash 7 swf behaves differently than html text in a flash 8 swf. var m

[Flashcoders] Zinc & Mirage Licence Protector

2006-08-29 Thread John Mark Hawley
Has anyone here attempted using these two beasts in conjunction to safeguard a Flash-y CD? -mark hawley -- John Mark Hawley The Nilbog Group 773.968.4980 (cell) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the ar

[Flashcoders] 3D clipping

2006-08-29 Thread bh
hi i'm looking for a 3D clipping algorythme or tutorial in as2 ? some links ? bh ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

[Flashcoders] Re: help with embedding fonts/using textformat?

2006-08-29 Thread grimmwerks
duh. embedFonts ___ 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 Consulting and Traini

Re: [Flashcoders] Using assets from external SWF

2006-08-29 Thread Anthony Lee
Marcelo de Moraes Serpa wrote: No you can´t unless it´s a RSL and you're using the sharepoint trick (if you don´t know what it is just do a quick search on google about rsl and sharepoint). Hi Marcelo, I did that and was not able to turn it up. Do you have a link to anything on the 'sharepoi

Re: [FlashCoders] Local storage warning

2006-08-29 Thread Dimitrios Bendilas
Ok, I found a solution for my problem and I thought I should share it with you, in case someone runs into something similar in the future. These are my findings: 1. Zinc seems to need a few Kbs in the local storage by default. Even if you create the simplest app with 1 line of code, e.g. md

RE: [Flashcoders] help

2006-08-29 Thread Wouter
Or do a search on 'change the flash player title bar' in google, I got a tool once to hack this title, but cant remember the namefound it through google though, so I am sure you`ll find it as well! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EM

[Flashcoders] haXe 1.06

2006-08-29 Thread Nicolas Cannasse
Hi lists, I'm please to announce the release of haXe 1.06 at http://haxe.org haXe is an open source programming language that can target Flash (Players 6 to 9 included) but also Javascript (to program AJAX) and NekoVM (to program server-side and desktop applications). The version 1.06 includes s

[Flashcoders] 503 ?

2006-08-29 Thread André Goliath
200 ! 100 ! ;) ___ 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 Consulting and Traini

[Flashcoders] Flash and director localconnection communication problem

2006-08-29 Thread Sumeet Basak
Hello all, I am creating a web application where I need to have a localconnection established between flash and director. I could successfully connect to director and pass information. But the problem is that this connection works in some systems and it does not work in some. What could be the p

Re: [Flashcoders] Re: OOP methodology and flash. I'm loosing my faith...

2006-08-29 Thread Andreas Rønning
As Neo said, don't sweat the OOP. I honestly, truly, vividly believe that in 9 out of 10 approaches to an AS2 flash application, most if not all design patterns boil down to overengineering. Like you, i've spent so long pulling my hair out trying to factor design patterns into my actual applic

Re: [Flashcoders] OS style command prompt

2006-08-29 Thread Bart Wttewaall
I've created a light version of DOS in flash a few months ago :P It works with a commandline pretty much as how you described your application. In my case the first word of the command typed in was a method, optional attributes were the arguments. It was first filtered, then sent to the class's __

[Flashcoders] Flash and speech utility

2006-08-29 Thread Elena Blanco
Hi there -- Do you have any good resource/information on if it is possible to integrate a Flash piece with speech utility? IE: I type a phrase in a Flash text box, and a speech utility reads it out loud? Thank you for any information you can share. Elena

[Flashcoders] Re: [osflash] ImageVue - good app, bad architecture

2006-08-29 Thread Marcelo de Moraes Serpa
So, nobody ever got into imageVue? It's a very impressing RIA and an example of what can be done with legacy flash technology (lightweight and very appealling RIA's). The only downside IMHO is the way the author choosed to architect it... However, it's nice to compare it with current Flex 2 RIA's.

[Flashcoders] System.capabilities.os output on a linux system

2006-08-29 Thread Tom Rhodes
just a quickie, can anyone send me what flash returns as a value for System.capabilities.os on a linux system please? tia. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/

Re: [Flashcoders] fuse kit and events

2006-08-29 Thread Moses Gunesch
On Aug 15, 2006, at 7:58 PM, Dan Rogers wrote: I agree, I was a bigger fan of the Zigo project before it started getting so big in file size. Tween is a great built-in tool, and Fuse is a nice toy with a 20k price tag. True, the filesize has gotten bloated as it's become more of a swiss ar

  1   2   >