[Flashcoders] Re: Timeline coding

2006-04-18 Thread Jonathan Berry
I just had a thought on this. Perhaps I just need _root.variableName inside the getURL since we are using a variable returned from FlashVars. Are anonymous functions such as clip_mc.btn1_btn.onRelease = function(){} subject to scoping issues? On 4/17/06, Jonathan Berry [EMAIL PROTECTED] wrote:

Re: [Flashcoders] Re: Timeline coding

2006-04-18 Thread Grant Cox
For your first question - you will not be able to access clip_mc unless the playhead is on a frame where that movieclip exists. You should be able to access the mc and all child mcs immediately after going to the correct frame, however you will not be able to execute any script defined inside

Re: [Flashcoders] Re: Timeline coding

2006-04-18 Thread Jonathan Berry
however you will not be able to execute any script defined inside the movieclip until a frame has passed. O.K. so I just wanted a little clarification on this. Say I have a clip that appears at the last frame of the main timeline and an action there on the main timeline applying to the clip. Will

[Flashcoders] Using ARP without Forms?

2006-04-18 Thread Julien Vignali
Hi ARP developers, I was wondering if it was easy to use ARP in a non-form flash application... After reading ARP documentation, it seems to be well-suited for form-enabled flash apps, but what about the applications completely created from scratch with MTASC for example? What do you use in

RE: [Flashcoders] Using ARP without Forms?

2006-04-18 Thread Lee McColl-Sylvester
A form in the ARP context is typically just a MovieClip extended class. If your application uses MovieClips as container objects, then ARP is fine as it is. If, however, you don't want to use MovieClips as your base object, you can still make use of things like System events and the like. At

Re: [Flashcoders] Using ARP without Forms?

2006-04-18 Thread Julien Vignali
Thanks Lee, I've found Grant's post about his ARPX extension and that seems pretty nice indeed ;-) I'm going to try it! By the way, my project is an intranet kiosk app that will only communicate via xml sockets instead of remoting or web services, do you think it will be easy to adapt this to

Re: [Flashcoders] Requesting reccomendation for testing already written classes

2006-04-18 Thread Alias
It would be extremely dangerous to use a tool that did so. However, AsUnit ships with some JSFL scripts will write your empty testcase stubs for you which will save you some work. HTH Alias On 4/17/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote: What is the best way to test classes that have

[Flashcoders] Howto randomize the elements of an array?

2006-04-18 Thread Martin Baltzer
Hi, I have an array with up to 1 elements. These elements are sorted of some kind and I need to reorganize the elements so that their positions becomes absolutely random. I guess my best approach would be to assign my own sort function to the Array.sort() method which did nothing but return

[Flashcoders] Pass variable to asp page

2006-04-18 Thread Kaloudis Stathis
Hi list, I need to pass a fiw variables from flash to an asp page in order to send an email from my application. I use the getURL method (getURL([EMAIL PROTECTED]message=hi )but this results a redirection from my application to the asp page. Is there a way to pass the variables without this

Re: [Flashcoders] Using ARP without Forms?

2006-04-18 Thread Julien Vignali
hey that's cool :-) I don't know much about .NET Fluorine because my company is more java-oriented. I am developping the flash client from scratch (well no MM components, but intensive use of several frameworks) with the flash IDE (just for fonts and assets such as basic objects/tweens), and

Re: [Flashcoders] Pass variable to asp page

2006-04-18 Thread Mikko Törmälä
If I understand correctly, you wish to send the mail in the background? Use LoadVars send() to send the variables to the .asp -page. If you use LoadVars sendAndLoad() you can get data in return from the asp script to let flash know if your mailing was succesful and then present that

Re: [Flashcoders] Howto randomize the elements of an array?

2006-04-18 Thread Danny Kodicek
I have an array with up to 1 elements. These elements are sorted of some kind and I need to reorganize the elements so that their positions becomes absolutely random. I guess my best approach would be to assign my own sort function to the Array.sort() method which did nothing but return

RE: [Flashcoders] Pass variable to asp page

2006-04-18 Thread Kaloudis Stathis
Yes, that's exactly what I need!! Many thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mikko Tormala Sent: Tuesday, April 18, 2006 2:36 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Pass variable to asp page If I understand

Re: [Flashcoders] Howto randomize the elements of an array?

2006-04-18 Thread Mikko Törmälä
I'd do it like this: Take a new array, take a random element from the oldArray and remove it from the oldArray. Then put it as the next element in the newArray. like so: var oldArray:Array = [item1,item2,item3,item4,item5,item6]; var newArray:Array = []; while (oldArray.length) {

Re: [Flashcoders] good OOP way to re-assign class to clip

2006-04-18 Thread GregoryN
-- Steven Sacks wrote: The most obvious and simple solution to me: Duplicate the movieclip in your library and assign the duplicate the second class. I wish I can use this way... This is an interface element that is opened by user. And depending on situation in which it was opened,

Re: [Flashcoders] Howto randomize the elements of an array?

2006-04-18 Thread GregoryN
Martin, Have you looked at http://proto.layer51.com/l.aspx?p=3 There are about 10 custom methods of shuffle-like. I haven't tested them for performance though :-). -- Best regards, GregoryN http://GOusable.com Flash components

RE: [Flashcoders] Using ARP without Forms?

2006-04-18 Thread Lee McColl-Sylvester
That's good. The issue I have with Flash (at least I used to) was knowing where all my coding was. Because of the way Flash is structured, many developers tend to stuff AS into MovieClips instead of keeping a series of root clips / classes. Using ARPX, I can create completely reusable custom

Re: [Flashcoders] Flash to jpg

2006-04-18 Thread Oleg Filipchuk
Hello, if you can track all the manipulation user does with the image you may use GD library in PHP or MagicWand of ImageMagick. To make communication easy try to use AMFPHP. If you look for an example check www.edipix.com - I've implement only the simplest image manipulations like crop,

SV: [Flashcoders] Howto randomize the elements of an array? [Closed]

2006-04-18 Thread Martin Baltzer
Hi all, Thanks a lot for your help! While Mikko came with probably the fewest lines of code to solve this I found out that this method posted by iv here http://proto.layer51.com/d.aspx?f=893 (Read msg3) is far superior when it comes to speed ;-) I believe it's the use of local variables that

RE: [Flashcoders] Using ARP without Forms?

2006-04-18 Thread Stacey Mulcahy
Just chiming in here late... Straight up I haven't used ARPX - even tho I've been recommended to do so many times. I’m interested in checking it out and seeing what it has to offer. I'd be interested in knowing the benefits, differences from ARP - if someone has used it extensively, please feel

Re: [Flashcoders] How to prevent cache of flash .swf file in web page?

2006-04-18 Thread MetaArt
You can add this too: META HTTP-EQUIV=Cache-Control CONTENT=no-cache / but an unerring feature (if you can use server-side script) is: $swf=yourmovie.swf; $lastmod=date(YmdHis,filemtime($swf)); $swf.=?.$lastmod; and then: param name=movie value=? echo $swf; ? Enrico Tomaselli + web

RE: [Flashcoders] Using ARP without Forms?

2006-04-18 Thread Lee McColl-Sylvester
You can opt not to use everything Arp has to offer ;-) Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stacey Mulcahy Sent: 18 April 2006 14:00 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Using ARP without Forms? Just chiming in here

Re: [Flashcoders] Using ARP without Forms?

2006-04-18 Thread Julien Vignali
Actually, my project was almost structured like an ARP project but I needed some guidelines because the project tends to grow in several directions at the same time :-) In other words, I need more discipline! LOL My flash clients display real time incoming data. AFAIK, flash remoting (I mean

Re: [Flashcoders] Requesting reccomendation for testing already written classes

2006-04-18 Thread Manuel Saint-Victor
Thanks. I'm going to try that today. Can you give me a link to the mention of the JSFL for the stub code for ASUnit? That would hopefully give me the guidance I need to get started. Mani ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] AMFPHP tutorial - no Result on NetConnection Debugger

2006-04-18 Thread Manuel Saint-Victor
I had forgotten about that. Really easy to overlook and burn an hour or two of frustration. On 4/14/06, elr [EMAIL PROTECTED] wrote: Hi Manuel, I finally got an answer to my problem. That was not an empty space but a kind of... In fact, my Sepy editor was set to add a UTF BOM code that

[Flashcoders] DuplicateMovieClip - type mismatch error

2006-04-18 Thread David Farrell
Hi all, I'm trying to duplicate a clip and I'm getting a type mismatch error. Undoubtedly it's something silly but I'm not getting anywhere fast. I have a flash movie with a .as file attached. In the .as file, I want to copy a movie clip. Inside the _customerArt array are two MovieClips

[Flashcoders] weird

2006-04-18 Thread Tom Rhodes
Hello all, Got a very weird problem, i just compiled my movie and now 90% of the dynamic text fields ignore the font they are set too and just display in times new roman instead. for a couple of weeks they have been in tahoma! they are set to be bitmap text and have worked 100% fine up to

Re: [Flashcoders] weird

2006-04-18 Thread Cedric Muller
greetings! did you embed tahoma in your textfields ? or are you using the 'system' font ? and are you testing your movie on the same computer ? cedric Hello all, Got a very weird problem, i just compiled my movie and now 90% of the dynamic text fields ignore the font they are set too and

[Flashcoders] Re: marginLeft (ignoring style)

2006-04-18 Thread julian atienza
Lol. No, OF COURSE, i've tried _root.pagina.setStyle(marginLeft, 20); even if i was trying _root.pagina.setStyle(marginLeft, 20); implicit conversion would be OK. Words of Macromedia masters: Only the numeric part of the value is used. Units (px, pt) are not parsed; pixels and points are

Re: [Flashcoders] weird

2006-04-18 Thread Tom Rhodes
Hello cedric, hope all's good with you! tahoma is used in all the static text, stranger and stranger, when i was embedding basic latin on the fields before this happened just now, the dynamix text wouldn't show. so i wasn't embedding for that reason, now on the fields that changed i'm

RE: [Flashcoders] Flash to jpg

2006-04-18 Thread David Mendels
Hello, This might help: http://www.kaourantin.net/2005/10/more-fun-with-image-formats-in-as3.htm l -David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Juan Anzaldo Sent: Monday, April 17, 2006 9:39 AM To: flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Howto randomize the elements of an array?

2006-04-18 Thread Fumio Nonaka
See: [Flashcoders] Array.shuffle http://chattyfig.figleaf.com/pipermail/flashcoders/2002-August/043766.html _ Danny Kodicek wrote: The basic randomisation algorithm is: take a new array for each element in the old array: add it at a random position in the new array It's not really rocket

[Flashcoders] Access class' properties (in _root) from movieclip and other loaded swf timeline?

2006-04-18 Thread Giovanni Antico
I'm trying to follow the advice class properties are better then _global variables, but how could I access a class' properties (imported in the main timeline) in a global way? I mean if I want to call a class property that I've already imported in the main timeline, should I import the same

[Flashcoders] Flash for none-flash users

2006-04-18 Thread Éric Thibault
I must produce a fla file that will be modified directly by people unfamiliar with Flash! I'm preparing components to be manipulated easily and want to produce, inside the component's property panel a list of all the items inside the library that has a linkaged ID... Is that possible?

[Flashcoders] how a loaded swf access variables from an host

2006-04-18 Thread elr
Hi, 1- my main fla is driven by a singleton class nammed 'Main.as' so content of frame 1 is : var main= Main.getInstance(); main.init(this); 2 - this main instance do a loadMovie() to load an external movie called 'child.swf' ( this one is also driven by a class nammed 'child.as' ) I

Re: [Flashcoders] Re: marginLeft (ignoring style)

2006-04-18 Thread Anggie Bratadinata
julian atienza wrote: Lol. No, OF COURSE, i've tried _root.pagina.setStyle(marginLeft, 20); But ... I recreated your problem in my Flash 8 IDE, 20 and 20 produced different result : The latter had left margin while the former did not. -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep

Re: [Flashcoders] Re: Active X and Microsoft IE ...

2006-04-18 Thread Bernard Poulin
Just a little note about this technique: It will void out the flashvars attribute (and potentially other less-frequently used attributes). If you do not use these special attributes, then this technique is perfectly fine. B. 2005/12/22, Geoffrey Knutzen [EMAIL PROTECTED]: Here is what I am

Re: [Flashcoders] Flash for none-flash users

2006-04-18 Thread GregoryN
Hello Eric, Thanks! You're welcome ;-) In such a situation I'd rather consider building custom interface (SWF) for your component(s), where you can describe everything in human language. Also, how about making XML configuration file? JSFL can help too... A lot depends on what these non-flash

[Flashcoders] offline SWF generation from XML

2006-04-18 Thread August Gresens
Quick question - are there any tools that can take an XML document, parse it and generate a swf file offline? We're looking for a way to avoid doing this parsing during runtime. Do JSFL, ANT or other tools have this capabiltiy? Thanks, August --

Re: [Flashcoders] offline SWF generation from XML

2006-04-18 Thread JesterXL
Check out SWFMill: http://www.osflash.org/swfmill Might do what you want. - Original Message - From: August Gresens [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 18, 2006 1:00 PM Subject: [Flashcoders] offline SWF generation from

Re: [Flashcoders] offline SWF generation from XML

2006-04-18 Thread elibol
I might be able to help, I have a question though, is this swf file generated by the xml document? Is the xml document something like a swf describer? On 4/18/06, August Gresens [EMAIL PROTECTED] wrote: Quick question - are there any tools that can take an XML document, parse it and generate

Re: [Flashcoders] DuplicateMovieClip - type mismatch error

2006-04-18 Thread David Farrell
Hi all, I'm looking into this further and although I don't have a solution - I have a bit more info. The following code creates a duplicate of my movie clip: *var testClip:MovieClip; var david:MovieClip = _customerArt[0]; testClip = david.duplicateMovieClip(testClip,

[Flashcoders] Batch export SWCs

2006-04-18 Thread Julian 'Julik' Tarkhanov
Hello again fine folks. Can someone enlighten me maybe - I got a document which contains my developed components (about a dozen) - I do all of the development in this .fla. When I want to export them to SWC I have to do it one by one - this is just one too many Ok for me. Maybe there is a

Re: [Flashcoders] DuplicateMovieClip - type mismatch error

2006-04-18 Thread p G
Try doing this .. var testClip:MovieClip; var david:MovieClip = _customerArt[0]; testClip = david.duplicateMovieClip(testClip, this.getNextHighestDepth()); On 4/18/06, David Farrell [EMAIL PROTECTED] wrote: Hi all, I'm looking into this further and although I don't have a solution - I

Re: [Flashcoders] Batch export SWCs

2006-04-18 Thread JesterXL
Look in the manual in Flash 8 under Extending Flash. You can loop through your Library and find the symbols and call exportSWC. fl.getDocumentDOM().library.items[0].exportSWC(file:///c|/tests/my.swc); - Original Message - From: Julian 'Julik' Tarkhanov [EMAIL PROTECTED] To: Flashcoders

Re: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al.

2006-04-18 Thread Troy Rollins
On Apr 18, 2006, at 5:21 AM, Mike Mountain wrote: Well we're getting very despondent now. We really want to use flash on our Win CE device - but it would seem the suits in charge of licensing are far too busy to get in touch with us. We've been in contact with Adobe UK, who said they'd 'ping'

Re: [Flashcoders] DuplicateMovieClip - type mismatch error

2006-04-18 Thread David Farrell
It does nothing. I don't see what you suggested differently to what I was already doing? The asterix in my code was my email client's way of demonstrating bold. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

Re: [Flashcoders] how a loaded swf access variables from an host

2006-04-18 Thread elr
I finally found a way... :) I defined an object 'myObj' directly in Main.fla (...not in its class) then, my 'child.swf' get access to this object using _root.myObj.vars. That maybe not the best way but it works. Eric At 2006-04-18 11:10, you wrote: Hi, 1- my main fla is driven by a

Re: [Flashcoders] offline SWF generation from XML

2006-04-18 Thread August Gresens
I'd like to actually write out the file and then open it later using loadMovie - or include it another file using FlashAnt (which I believe can be used to nest clips inside each other?) For example, if the XML describes the contents of a text field with markup, I'd like to generate a SWF with a

[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] Q: Flash Object vs UFO for flash detection and as eolas workaround

2006-04-18 Thread elibol
I think Johns problem can be avoided by just resorting to old school embedding. I also think it can be avoided by using floating divs instead of popups, or popups within the player. I have here version 1.3 of FlashObject, I will talk from this since it's what I've based my arguments on. I

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

2006-04-18 Thread Ryan Potter
Did you upload it to a server and test it or just do it locally? It doesn't work for me if it is local but it works like a champ when 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

Re: [Flashcoders] offline SWF generation from XML

2006-04-18 Thread elibol
It seems like what Jesse suggested suits your need as best as atleast I know of. On 4/18/06, August Gresens [EMAIL PROTECTED] wrote: I'd like to actually write out the file and then open it later using loadMovie - or include it another file using FlashAnt (which I believe can be used to nest

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

2006-04-18 Thread Aaron Smith
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, Ryan Potter wrote: Did you upload it to a server and test it or just do it locally? It doesn't work for me if it is local but it works like a champ when

Re: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al.

2006-04-18 Thread John Dowdell
Mike Mountain wrote: Well we're getting very despondent now. We really want to use flash on our Win CE device - but it would seem the suits in charge of licensing are far too busy to get in touch with us. We've been in contact with Adobe UK, who said they'd 'ping' America for us - We've been in

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

2006-04-18 Thread Aaron Smith
Yes I tried it out on yours and my server. works just fine. Now have a look at this. on Firefox and IE: ( http://www.smithaaronlee.net/ jstest/ImgScrollerTEST.html ) It works in firefox like it should. But in IE it doesn't work completely. I'm having troubles figuring out what is wrong in

[Flashcoders] FLV frame capture

2006-04-18 Thread Jon Robert
Hi, I need to capture the first frame of an FLV video file and convert it to bmp or jpeg. What's the best way to do this? Is it possible? Thank you in advance, JP ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] Batch export SWCs

2006-04-18 Thread Julian 'Julik' Tarkhanov
On 18-apr-2006, at 19:51, JesterXL wrote: Look in the manual in Flash 8 under Extending Flash. You can loop through your Library and find the symbols and call exportSWC. fl.getDocumentDOM().library.items[0].exportSWC(file:///c|/tests/ my.swc); Brilliant, thanks - will try this one

Re: [Flashcoders] Q: Flash Object vs UFO for flash detection and as eolas workaround

2006-04-18 Thread elibol
Sorry John I hadn't read this post, seems like you've got a work around already and were just trying to gain some insight into the matter. On 4/17/06, John Grden [EMAIL PROTECTED] wrote: sounds like a very rare edge case to me - but first I have to point out that this isn't an issue with

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

2006-04-18 Thread Ryan Potter
I get the same as you. I looked at the external interface code that I have and the only difference I can see is I have swLiveConnect set to true but I don't think that is it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Smith Sent: Tuesday,

RE: [Flashcoders] FLV frame capture

2006-04-18 Thread Scott Brantley
On Mac (apple + shift 3) on PC (print screen). Then bring the pic into photoshop and crop and so forth. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jon Robert Sent: Tuesday, April 18, 2006 2:50 PM To: flashcoders@chattyfig.figleaf.com Subject:

Re: [Flashcoders] New wrinkle in IE activation issue...

2006-04-18 Thread John Kipling Lewis
You need to load your flash into your HTML from an external .js file. See adobe/macormedia's site for more information. http://www.macromedia.com/devnet/activecontent/articles/before_after.html This shows the (ugly) workaround. Cheers John - On 4/17/06, ryanm [EMAIL PROTECTED] wrote:

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

2006-04-18 Thread Mark Llobrera
Ryan: When testing locally with Windows/IE, you can set allowScriptAccess to 'always' - it'll save you having to upload to a server. Aaron: I was stalled with ExternalInterface myself yesterday; I had the hardest time getting it to work on the Windows/IE combo. The included samples from

[Flashcoders] Extending Array Question

2006-04-18 Thread azsl1326-email
I have created a Class that extends Array, called ArrayExtension. The only way that I have found to add values to this is array is in the following manner: --- // CODE import com.ArrayExtension var myArray:ArrayExtension = new ArrayExtension(Hello,GoodBye,World) //CLASS

Re: [Flashcoders] Extending Array Question

2006-04-18 Thread Ian Thomas
Hi there (whoever you are!) Your problem is that the [1,2,3] initialiser syntax is actually a short cut for creating a new Array() object, not an ArrayExtension(). So you're replacing the object you just created with new(). What you need to do is to _modify_ your ArrayExtension() object, not

[Flashcoders] RE:Flashcoders] Extending Array Question

2006-04-18 Thread azsl1326-email
Thanks, that will work. So there is no definitive way to add the values all at once, i.e. [1,4,5,76,3] when extending an Array? Thanks again. Ian Thomasn wrote: Hi there (whoever you are!) Your problem is that the [1,2,3] initialiser syntax is actually a short cut for creating a new Array()

Re: [Flashcoders] RE:Flashcoders] Extending Array Question

2006-04-18 Thread Robert Leisle
You could also do: var myArray:ArrayExtension = new ArrayExtension(); myArray.push(Hello, Goodbye, World); same result as doing them separately. [EMAIL PROTECTED] wrote: Thanks, that will work. So there is no definitive way to add the values all at once, i.e. [1,4,5,76,3] when extending

Re: [Flashcoders] RE:Flashcoders] Extending Array Question

2006-04-18 Thread Mike Britton
class com.ArrayExtension extends Array { public function ArrayExtension() { super() var argString = arguments[0].split(,); for(var i=0; i argString.length; i++) push(argString[i]); } } Usage: var arEx = new ArrayExtension(one,two,three);

[Flashcoders] Flash MX Radio button and tab key

2006-04-18 Thread thotskee
Hi Flashcoders, Can anyone give any insight on how to make a group of 5 radio button components tab enabled? That is each individual Radio Button can have its focus set by using the Tab key? The default behavior allows for the radio button group to receive focus and then the Up and Down arrow

[Flashcoders] Flashcoders Extending Array Question

2006-04-18 Thread azsl1326-email
That will work...thanks. Robert Leisle wrote; You could also do: var myArray:ArrayExtension = new ArrayExtension(); myArray.push(Hello, Goodbye, World); same result as doing them separately. ___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] Re: Active X and Microsoft IE ...

2006-04-18 Thread Geoff Knutzen
I am using flashvars with this technique and am having no troubles at all Is there some circumstance where the flashvars wouldn't work? I don't know what I am missing here. This has worked for me on every test that I have come up with. 2006/04/18, Bernard Poulin [EMAIL PROTECTED] Just a

Re: [Flashcoders] New wrinkle in IE activation issue...

2006-04-18 Thread ryanm
You need to load your flash into your HTML from an external .js file. See adobe/macormedia's site for more information. No, we all know about that. This is happening *after* using the innerHtml method to write object tags. All of the workarounds fail in some cases, apparently diue to an MS

[Flashcoders] SharedObject folder name query

2006-04-18 Thread Segar Rogers
Not a high priority query but maybe someone knows the answer: On Mac OS 10.4, Flash 8 SharedObject files are stored in UserName/Library/Preferences/Macromedia/Flash Player/#SharedObjects//localhost where represents a variously named folder. Example of folder 's name are BBYLXPK3

Re: [Flashcoders] offline SWF generation from XML

2006-04-18 Thread David Rorex
While not XML, here are some more open-source commandline tools which can generate swfs from plain text definition files: http://ming.sourceforge.net/ - AS1 and gfx http://www.swftools.org/swfc/swfc.html - AS1 and gfx http://mtasc.org/ - AS2 only -David R On 4/18/06, elibol [EMAIL PROTECTED]

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

2006-04-18 Thread Aaron Smith
Mark, Ryan, Thanks for the input. I looked at that other guys ExternalInterface testing. I switched all of my code to follow what he is doing. I am still getting IE errors. I can't figure out what is going on. IE doesn't like calling methods on the flash object for some reason. When it

Re: [Flashcoders] RE:Flashcoders] Extending Array Question

2006-04-18 Thread Fumio Nonaka
Another solution: // ActionScript 2.0 Class Definition: com/ArrayExtension.as dynamic class com.ArrayExtension extends Array { function ArrayExtension() { if (arguments.length == 1 !isNaN(arguments[0])) { this.length = arguments[0];

[Flashcoders] images not loading on japanese site

2006-04-18 Thread Rich Rodecker
check out these two urls: http://steve.buzznet.com/user/syndflash/ - US site (works) http://steve.buzznet.jp/user/syndflash/ - Japanese Site (doesn't work) the sites are pulling in an rss feed, http://steve.buzznet.com/user/rss10.xml http://steve.buzznet.jp/user/rss10.xml I added the