Re: [Flashcoders] Implementing GroupName for my own component

2006-04-21 Thread Julian 'Julik' Tarkhanov
On 21-apr-2006, at 23:49, elibol wrote: I think the best way to implement this would be to have a RadioGroup class that would instantiate through static functions of the RadioButton class. A static variable of the RadioGroup class would manage RadioGroup instances, it would add and remove

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

2006-04-21 Thread elibol
I've enjoyed myself too. I'm pleased to meet those passionate coders. M. On 4/21/06, Kevin Newman <[EMAIL PROTECTED]> wrote: > > Hello guys, > > I added a test here: > http://www.unfocus.com/projects/PatentMagic/sound.html > > The good news is that the sound doesn't play in if the object is hidde

Re: [Flashcoders] Implementing GroupName for my own component

2006-04-21 Thread Michael Klishin
Julian 'Julik' Tarkhanov wrote: That is, if I have 5 instances of RadioCompnent inside a specific timeline, can I programmatically retrieve all of them? What I would do is to create a class with static methods only as groups manager so you just need to register RadioButton components within t

[Flashcoders] this.selected

2006-04-21 Thread Simon Lord
The standard button components support setting the toggle state of a button to true. Can I achieve the same result with a button I made? Or do I *have* to create a movieClip? I want the button to toggle between the frame 1 and 3 of the button. ___

[Flashcoders] Firefox, CSS overflow=scroll, flash buttons bug

2006-04-21 Thread Mike Guerrero
So I am having a weird problem. I have a fullscreen flash displayed in on html page using flashobject from this example: http://blog.deconcept.com/flashobject/fullpage.html I wanted to have scrollbars appear in case it didn't fit the browser window. So I changed my css as follow. /***

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

2006-04-21 Thread Kevin Newman
Hello guys, I added a test here: http://www.unfocus.com/projects/PatentMagic/sound.html The good news is that the sound doesn't play in if the object is hidden with display:block. So this at least appears to work. I will add some more thorough tests using other ActiveX types and some that ping

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

2006-04-21 Thread Kevin Newman
Hi ryanm, I see what you are saying about the object node existing in the dom tree in IE's (or any browser's) memory, even if the object is set to display:none. I think the question as it relates to this hack is whether in IE's specific implementation is downloading and running the ActiveXObj

[Flashcoders] [JOB] Sr. Flash Designers/Devs, Los Angeles, CA (F/T or Contract)

2006-04-21 Thread Beau Gould
Sr. Flash Designers/Devs, Los Angeles, CA (F/T or Contract) My client is a full service creative advertising agency recognized in the motion picture and television industry as a leader in print campaign design, development, and integrated online and grass-roots marketing. They are looking for 7

Re: [Flashcoders] Swish-type text animation

2006-04-21 Thread elibol
Sweet idea Jesse, real original. There is also the Yugo style from back in the days of Monocraft where you would create a movieclip that contained a textfield which would embody a single letter. You would tween this dynamic letter, and through external means, generate, kern, break lines and such m

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

2006-04-21 Thread elibol
Is the object tag only method the Flash Satay method? M. On 4/21/06, Geoff Stearns <[EMAIL PROTECTED]> wrote: > > as i stated in another mail in another thread, using the 'object tag > only' methods is very buggy and can cause lots of headaches... > > JAWS will not read the Flash content, and som

Re: [Flashcoders] Forcing XML connection closed from SWF

2006-04-21 Thread Nathanial Thelen
Thank you for the idea on that one. I am particularly looking for a browser side only solution in this case. Thanks, Nate On 4/21/06 2:57 PM, "David Rorex" <[EMAIL PROTECTED]> wrote: > On 4/21/06, Nathanial Thelen <[EMAIL PROTECTED]> wrote: >> >> I was wondering if anyone out there know how t

Re: [Flashcoders] Forcing XML connection closed from SWF

2006-04-21 Thread David Rorex
On 4/21/06, Nathanial Thelen <[EMAIL PROTECTED]> wrote: > > I was wondering if anyone out there know how to force a XML connection > closed once the onLoad has happened? The way it works currently is that > if > the webserver has keep-alives on, the connection to the server stays open. > I am pret

Re: [Flashcoders] Implementing GroupName for my own component

2006-04-21 Thread elibol
I think the best way to implement this would be to have a RadioGroup class that would instantiate through static functions of the RadioButton class. A static variable of the RadioGroup class would manage RadioGroup instances, it would add and remove RadioGroup instances through a static API. A stat

Re: [Flashcoders] Again with the wmode

2006-04-21 Thread John Dowdell
Merrill, Jason wrote: [What browsers & plugin versions support WMODE compositing?] I think IE/Win was the first to support it, with Flash & Shockwave support following pretty quickly... maybe IE4 it was. Flash Player 6 Release Notes describe the first plugin invocation of the Mozilla API f

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

2006-04-21 Thread Geoff Stearns
as i stated in another mail in another thread, using the 'object tag only' methods is very buggy and can cause lots of headaches... JAWS will not read the Flash content, and some older browser will ignore the param tags, so you can't use flashvars or specifiy wmode or other parameters. th

Re: [Flashcoders] Again with the wmode

2006-04-21 Thread Geoff Stearns
flash satay is bad news - it breaks your params sometimes (in older safari versions) and JAWS will ignore your flash content. you should use something like FlashObject instead*. or SWFObject, etc. etc. http://blog.deconcept.com/swfobject/ On Apr 21, 2006, at 3:31 PM, Karina Steffens wrote:

[Flashcoders] Forcing XML connection closed from SWF

2006-04-21 Thread Nathanial Thelen
I was wondering if anyone out there know how to force a XML connection closed once the onLoad has happened? The way it works currently is that if the webserver has keep-alives on, the connection to the server stays open. I am pretty sure that the browser controls this, but would love to hear any i

Re: [Flashcoders] Server-side animated GIF to SWF?

2006-04-21 Thread Rajat Paharia
Awesome. Thanks David. - rajat On 4/21/06, David Rorex <[EMAIL PROTECTED]> wrote: > > This does pretty much what you want: > http://www.quasimondo.com/archives/000407.php > > However, it converts the gif by frames and not using timing I believe. > > -David R > > On 4/20/06, Rajat Paharia <[EMAIL P

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

2006-04-21 Thread elibol
I'm no expert on this, there are many others here that should know the answer but my guess is that the object is downloaded but not rendered. You can test this by calling a javascript function from within your flash movie. try getURL('javascript:alert("movie running");'); from within your movie. I

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

2006-04-21 Thread ryanm
Following my previous email, I thought of a better way to test display:none with flash. Display:none causes the object not to be rendered, but it is still instantiated in memory. The object exists and will begin loading, but but will not be displayed or consume any real estate on the page.

[Flashcoders] Dynamic sound generation in 8.5!

2006-04-21 Thread David Rorex
Ok, actually I made some changes, and got the code working now. It's a pretty 'brute force' method of doing it, and the sound is not real great either, but you can generate different tones now. Read about it here: http://blog.davr.org/2006/04/21/dynamic-sound-in-85/ I hope someone with more skill

RE: [Flashcoders] Again with the wmode

2006-04-21 Thread Merrill, Jason
Super. Thanks. Jason Merrill | E-Learning Solutions | icfconsulting.com >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:flashcoders- >>[EMAIL PROTECTED] On Behalf Of Karina Steffens >>Sent: Friday, April 21, 2006 3:32 PM >>To: 'Flashcoders mailing list' >>Subject:

RE: [Flashcoders] Again with the wmode

2006-04-21 Thread Karina Steffens
You can also try the alternative web standards solution, that does not require an embed tag at all to work with firefox and other non-ie browsers: http://www.yourdomain.com"; width="620" height="350"> Alternative content if flash is not pres

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

2006-04-21 Thread Karina Steffens
Following my previous email, I thought of a better way to test display:none with flash. http://www.neo-archaic.net/display.htm has a page similar to the index page, but instead of the replaceFlash.js script, it has a link to a script called display.js with the following code: // JavaScript Docume

Re: [Flashcoders] Best practice DLL Integration

2006-04-21 Thread Johannes Nel
if its windows then just embed the flash ocx into a winapp and use the normal ways to instantiate the dll. On 4/21/06, Wade Arnold <[EMAIL PROTECTED]> wrote: > > I have a project that I am working on that requires an exe integrated > player > that can connect to a windows DLL. Has anyone done any

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

2006-04-21 Thread Karina Steffens
Hiya, Great work to you and Kevin. I'm writing a little tutorial about my solution which I intend to place on my blog as soon as it's done. The version detection was the last bit that I wanted to get sorted first, and it seems to be working like a charm. Regarding the display:none issue - I've ch

[Flashcoders] Best practice DLL Integration

2006-04-21 Thread Wade Arnold
I have a project that I am working on that requires an exe integrated player that can connect to a windows DLL. Has anyone done any flash to dll integration projects and have URL's to show examples and best practices. Also has anyone used in software programs that have aided in writing the dll inte

Re: [Flashcoders] Dynamic sound generation in 8.5?

2006-04-21 Thread Johannes Nel
can you post some code to recreate this? On 4/21/06, David Rorex <[EMAIL PROTECTED]> wrote: > > Well... > > I wrote code to dynamically generate a .swf containing a simple sound, > using a ByteArray. > > However, there's a problem: The flash player 8.5 b246 actually CRASHES > when I run my simple

Re: [Flashcoders] FP 8.5 MovieClipLoader bug?

2006-04-21 Thread David Rorex
On 4/20/06, eric dolecki <[EMAIL PROTECTED]> wrote: > > I am working on an application where I am loading images into a clip using > a > MovieClipLoader. The SWF is embedded in Python. After about 100 images are > loaded into the same clip (over time - about 1 every 1-2 seconds), the > images fail

Re: [Flashcoders] Questions regarding File search

2006-04-21 Thread David Rorex
On 4/20/06, Tarun Abhichandani <[EMAIL PROTECTED]> wrote: > > Hi: > > In one of our applications, we are working towards using Flash as an UI > for users. > > One of our need is to search for certain types of file and calling a Java > servlet to upload the content of the file. > While the uploading

Re: [Flashcoders] Server-side animated GIF to SWF?

2006-04-21 Thread David Rorex
This does pretty much what you want: http://www.quasimondo.com/archives/000407.php However, it converts the gif by frames and not using timing I believe. -David R On 4/20/06, Rajat Paharia <[EMAIL PROTECTED]> wrote: > > My Flash 7 content running at various framerates needs to load in Animated >

Re: [Flashcoders] Dynamic sound generation in 8.5?

2006-04-21 Thread David Rorex
Well... I wrote code to dynamically generate a .swf containing a simple sound, using a ByteArray. However, there's a problem: The flash player 8.5 b246 actually CRASHES when I run my simple program. I submitted a bug report, hopefully someone reads it and fixes it. -David R On 4/20/06, Johannes

RE: [Flashcoders] Again with the wmode

2006-04-21 Thread Merrill, Jason
NEVERMIND - looks like we just needed to also add wmode to the embed tags as well... looks like our developer has it working now. Jason Merrill | E-Learning Solutions | icfconsulting.com >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:flashcoders- >>[EMAIL PROTEC

[Flashcoders] Again with the wmode

2006-04-21 Thread Merrill, Jason
I know this has been asked and answered a kagillion times, but I can't seem to get a definitive answer in my searches: The whole DHTML layer, browser, and flash object wmode thing - we can get our DHTML layer to show over the top of our flash piece (which contains some solid background images with

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

2006-04-21 Thread elibol
Hi Karina, Kevin Newman deserves the credit, I've just written some of the code. Great work though, I'm very happy to have a little team working on this problem now. I'm sure we will solve it soon enough. I think Geoff mentioned that display:none does not prevent the object from loading, Ryan fur

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

2006-04-21 Thread elibol
Good working with it Kevin, if this last piece can be solved then it should be very useful =] M. On 4/21/06, Kevin Newman <[EMAIL PROTECTED]> wrote: > > Well yeah, that's what I would usually do, but that doesn't solve the > specific problem I'm looking to solve here (I'm not concerned with the >

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

2006-04-21 Thread elibol
I was looking for a way to load the html document into a string that was defined in a container style html file which would replace all the object tags with empty object tags and load the page this way, then after the page is loaded, it would replace the objects with their true content, however, I

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

2006-04-21 Thread Karina Steffens
Hmm... I'm not sure if you can do that, but what about using an intermediate stub? Then you could communicate with and tell it when to load the main content. This might even work automatically, with one of the object replacement techniques. Or... Here's a thought - what if the style for the object

[Flashcoders] Implementing GroupName for my own component

2006-04-21 Thread Julian 'Julik' Tarkhanov
I would like to implement a radio-like component and provide a groupName for it (I don't use MM components because they do not fit my application). Is there a way to dynamically retrieve all siblings of the component's instance which have the same class (or subclass) of the component and

Re: [Flashcoders] Multidimensional Array

2006-04-21 Thread CK
Hi, Sorry for the cross-post, this post was a mistake, but your reply is still greatly appreciated. CK On Apr 21, 2006, at 8:23 AM, Merrill, Jason wrote: Chris, I see you posted the same question on Flashnewbies too (tsk tsk) - so I will reply here as well: So as an alternative, how ab

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

2006-04-21 Thread Karina Steffens
Hi elibol, Great job! And it seems that great minds think alike - yours is a similar solution to the one I've been working on myself... I posted an earlier version of my script on this list on Monday under the subject "Active X and Microsoft IE", but it got no comments. I've done some more work o

[Flashcoders] LoadVars trpuble

2006-04-21 Thread Richard Benton
I recently found that the problem with using LoadVars.send() inside an HTML frameset in MSIE 6.0 (among other versions, presumably) is that for some mysterious reason, the following HTTP header... Content-type: application/x-www-form-urlencoded ...gets omitted from the resulting request, so despi

Re: [Flashcoders] Is AS2Unit a joke?

2006-04-21 Thread Isaac Rivera
never mind... adding a methodName:String arg to the constructor solved the issues. Isaac On Apr 21, 2006, at 1:19 PM, Isaac Rivera wrote: I have not been able to get AS2Unit to report anything useful other than the number of tests. It always reports "OK" no matter how impossible or bogus m

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

2006-04-21 Thread Kevin Newman
Sorry to reply to myself, but I was thinking that if it is possible to detect when an object is added to the dom tree, then I could just replace the object before it gets a chance to load, so I guess I wouldn't need to disable it. So now I guess the question is if it is possible to detect when

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

2006-04-21 Thread Kevin Newman
Well yeah, that's what I would usually do, but that doesn't solve the specific problem I'm looking to solve here (I'm not concerned with the merits of this solution, I really just want to see if I can make it work). If I could figure out how to detect when a new object tag has been added to th

[Flashcoders] Is AS2Unit a joke?

2006-04-21 Thread Isaac Rivera
I have not been able to get AS2Unit to report anything useful other than the number of tests. It always reports "OK" no matter how impossible or bogus my test is. It never finds anything wrong or fails. Case in point are the simple Name class below and its companion tester (NameTester) clas

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

2006-04-21 Thread ryanm
Do you happen to know of any way to either stop a loading activex or to prevent it from loading? Yes, don't write it to the page until you are ready for it to load. HTML is stateless, it's either there or it isn't. If it's there, it will load, if it's not, it won't. Use DHTML to add the tag

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread mark . jonkman
Hi Figured I'd chime in with my 2 cents worth. I've not used AlienBrain so I can't comment on that. I have used VSS, StarTeam, CVS and another home rolled source control system. By far the absolute best system I've ever used is StarTeam (from Borland). It had the best feature set in terms of ch

RE: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike C hambers et al.

2006-04-21 Thread Dave Watts
> AFAIK PPC and WIN CE aren't the same architecture? Surely Win > Ce stuff has to be compiled specifically for a porcessor? Pocket PC (or more accurately, Windows Mobile) is a specialized version of Windows CE. Primarily, it constrains hardware controls and interface elements within Windows CE. N

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

2006-04-21 Thread Kevin Newman
Do you happen to know of any way to either stop a loading activex or to prevent it from loading? Thanks, Kevin N. Geoff Stearns wrote: setting display:none won't stop anything from loading, so it will load twice. (or load part way and then load again, etc.) On Apr 21, 2006, at 1:08 AM, K

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread JesterXL
They can: "Is this file the same as this file or not?" While that is helpful in knowing if the file I am checking in is newer than yours, it doesn't tell me if my Symbol in the library is different, if something has changed on frame 2, etc. - Original Message - From: "Kevin Cannon" <[E

RE: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread Ben Smeets
Hi Loren I Use sourcesafe for (amongst others) Flash files (.bmp/.jpg/.as/.fla/.swf/.etc) and experience not problems at all. I use eclipse with the sourcesafe plugin when developing flash. Although it is not free and the free alternatives are at least just as good as sourcesafe, if you *have* to

RE: [Flashcoders] WebService woes

2006-04-21 Thread Matthew Simpson
It's in their WS. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Rønning Sent: Friday, April 21, 2006 10:15 AM To: Flashcoders mailing list Subject: [Flashcoders] WebService woes In the IDE, this works fine, and i have gotten no security sandbox

RE: [Flashcoders] Multidimensional Array

2006-04-21 Thread Merrill, Jason
Chris, I see you posted the same question on Flashnewbies too (tsk tsk) - so I will reply here as well: So as an alternative, how about using object arrays instead? Personally, I like that so I can use dot syntax to get my data. Multidimensional arrays have there uses, but they can also get real

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread JesterXL
The comments about AlienBrain have a good point. AlienBrian was originally marketed as a gaming industry source control system since creating games consisted of thousands of media assets. Subversion on the other hand was created out of a need to have something better than VSS and CVS that was

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread Kevin Cannon
I believe subversions diff can actually handle binary files. Anyway, here's some great articles for you to check out. Article on using subversion with Flash: http://www.ivantodorov.com/blog/?p=28 Also, BLITZ's directory structure and file name conventions are worth reading too: http://www.ivantod

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread Peter Witham
Hi, We have been evaluation AlienBrain, it is not free but the versioning and source control is excellent. There are plugins for Photoshop and MAX (have only used these two) which integrate directly with the database making the whole process quick and painless. You may want to at least

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread eric dolecki
Use Subversion everyday - its awesome, its just right-clicking away on files, its much faster than WinCVS (I think), its updated quite a lot, its diff is quick, graphing is good, etc. I love it. - e.dolecki ___ Flashcoders@chattyfig.figleaf.com To chang

RE: [Flashcoders] Managing Components and external .as files

2006-04-21 Thread Lee McColl-Sylvester
Where does the viola come into it? How do musical instruments relate to Flash SWC's??? I'm confused ;-) Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: 21 April 2006 15:46 To: Flashcoders mailing list Subject: Re: [Flashcoders] Mana

[Flashcoders] Components redraw . Weird

2006-04-21 Thread Patrick Jean
Hello . Out of curiosity, does anyone had issues with flash 8 components having a redraw glitch on display ? I have a clip that is maybe 3 level deep. That clip contains comboBoxes and dateChoosers components. With Flash mx 2004 it was working fine, but with Flash 8, when the clip is displayed, fo

Re: [Flashcoders] Managing Components and external .as files

2006-04-21 Thread JesterXL
An SWC. Just make sure all of your components force the class into the SWF: import YourClass; var dependYourClass:YourClass; And then compile an SWC that merely does the above. Put the SWC into your library, and viola! ...it'll be hard to do syntax checking in AS only, or in MTASC without at

RE: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread Beverly Guillermo
Hello, I worked with a previous company that used Alienbrain for its non-text documents and files but it is commercial software... (http://www.alienbrain.com) Subversion and CVS are good open source alternatives like everyone else said. -beverly -Original Message- From: "Loren R. Elks"

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread Joshua Buhler
Our company tried using SourceSafe for a while, but gave up on it after it kept corrupting files, or locking them up and not allowing anyone to access them, without an admin's intervention. Also, we couldn't find a decent Mac client for it either. We switched to Subversion after that, and

[Flashcoders] Managing Components and external .as files

2006-04-21 Thread Kevin Cannon
Hi, I've started building a library of my own components for thing I reuse accross projects. I usually build stuff with external .as files, so I was wondering how I can have manage the library of components if each component will have it's own external as file. I don't want to copy the .as file i

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread JesterXL
Subversion. http://subversion.tigris.org/ A Windows client: http://tortoisesvn.tigris.org/ You can install yourself on your own server, or hosted. I use these guys: http://avlux.net/subversion/host.php You will not be able to do a compare for binary files beyond "Is this an exact match or not?

Re: [Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread Ron Wheeler
Subversion and CVS are free and widely used. We use Eclipse as the front-end and it works really well - even for marketing documentation and proposals. Ron Loren R. Elks wrote: Hi: We are slowing building our eLearning group in our company. We are finding that we really need a system like

[Flashcoders] SourceSafe??? Recommendations needed.

2006-04-21 Thread Loren R. Elks
Hi: We are slowing building our eLearning group in our company. We are finding that we really need a system like SourceSafe. The question is, does anyone know if SourceSafe (or some other system handles): FLA, SWF files BMP, GIF, PNG, JPG files WAV files DOC files PDF files FM files (Framemaker

[Flashcoders] WebService woes

2006-04-21 Thread Andreas Rønning
In the IDE, this works fine, and i have gotten no security sandbox warnings. In the SAplayer or browser, i get this: FAULT Unable to load WSDL, if currently online, please verify the URI and/or format of the WSDL I've verified the URI, as it works in the IDE, but not outside. Is this a probl

Re: [Flashcoders] Single giant bitmap vs Multiple smaller bitmaps - Performance Effects?

2006-04-21 Thread James Marsden
Chopping up is better imo. We're developing a game with large scrolling backgrounds and chopping them from 3000x3000 to 256x256 made a big difference. James Peter O'Brien wrote: Hey lee, thanks for your thoughts, but we'll only be scaling the giant bitmaps (2 of them) up to about 300%. It

Re: [Flashcoders] Single giant bitmap vs Multiple smaller bitmaps - Performance Effects?

2006-04-21 Thread Peter O'Brien
Hey lee, thanks for your thoughts, but we'll only be scaling the giant bitmaps (2 of them) up to about 300%. It works ok at the moment with both a 4000px and 6000px (bitmap filled) mc being tweened across the horizon. i just wanted some clarification on whether this is pretty bad for perfo

RE: [Flashcoders] Single giant bitmap vs Multiple smaller bitmaps -Performance Effects?

2006-04-21 Thread Lee McColl-Sylvester
I know that Flash has certain issues when objects are scaled past a size somewhere in the 1000+ dimaensions. It would probably be better to split the images up into sizes less than 1000 pixels to be sure. Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behal

Re: [Flashcoders] Single giant bitmap vs Multiple smaller bitmaps - Performance Effects?

2006-04-21 Thread Peter O'Brien
Hey list, hope all is well. I have a question about performance, thats been asked before but I can't find receiving any answer. Is it much more desirable to chop a massive bitmap up when scrolling it across the horizon? In my specific case I have bitmaps of between 4000px - 6000px in leng

Re: [Flashcoders] greek/math chars

2006-04-21 Thread MetaArt
Thanx, Ian!... Enrico Tomaselli +> web designer <+ [EMAIL PROTECTED] http://www.metatad.it ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoder

Re: [Flashcoders] greek/math chars

2006-04-21 Thread Ian Thomas
Hi Enrico, If you override the LoadVars method onData you can actually parse the raw text from the text file, without having everything split up by & and =. See the help file for LoadVars.onData() That might well help you. Cheers, Ian On 4/21/06, MetaArt <[EMAIL PROTECTED]> wrote: > I must l

[Flashcoders] greek/math chars

2006-04-21 Thread MetaArt
I must load some text from a .txt file into a dynamic textfield, but inside the text there are some greek/math chars, like alpha, beta, delta... I can't use the usual chracter entities, neither decimal chars nor hex chars, because they use always the char '&'. How can I solve this? There isn't any

[Flashcoders] Wishlist email address?

2006-04-21 Thread Alias
Hi guys, Does anyone know what the new adobe email address for flash feature requests is? I'm thinking it's probably changed lately... Thanks in advance, Alias ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archi

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

2006-04-21 Thread Mike Mountain
AFAIK PPC and WIN CE aren't the same architecture? Surely Win Ce stuff has to be compiled specifically for a porcessor? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Dave Watts > Sent: 21 April 2006 00:09 > To: Flashcoders mailing list > Subjec

Re: [Flashcoders] setNewTextFormat() woes

2006-04-21 Thread Andreas Rønning
I was hoping i wouldn't have to do that.. But thanks Rodrigo, it'll do fine :) - A MBDI ICSC Rodrigo E. Curiel Salazar wrote: Andreas, if i understood you correct, what you want is this: var format1_fmt:TextFormat = new TextFormat(); format1_fmt.font = "Arial"; var format2_fmt:TextFormat = ne

Re: [Flashcoders] setNewTextFormat() woes

2006-04-21 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Andreas, if i understood you correct, what you want is this: var format1_fmt:TextFormat = new TextFormat(); format1_fmt.font = "Arial"; var format2_fmt:TextFormat = new TextFormat(); format2_fmt.font = "Courier"; var string1:String = "Sample string number one."+newline; var string2:String = "Samp