[Flashcoders] flash chat solutions?

2007-06-25 Thread dc
hi list - wondering what solutions are recommended for a high-volume chat servers that easily works with flash, nowadays? it seems the adobe FCS is now all about video, and overpriced for a chat system - they don't unbundle the features. I'm looking for something I can integrate into our own

Re: [Flashcoders] how to get controls and anchors of curve, gradients, etc.

2007-06-25 Thread Matthias Dittgen
Hi, if your artist produced vector graphics using Flash, you could use the commercial version of ASV (http://www.buraks.com/asv/). ASV can export these graphics and produces an intermediate format for them based on Array. You can use this Array directly in your AS Code and draw the graphics via

[Flashcoders] Scroll Bar formula problem

2007-06-25 Thread O. Fouad
Hi, I can't figure out how I can move a masked MC according to the position of the scroll bar. I tried this code with a scrollbar a mask and MC (the content) yp = scrollbar._y; scrollRatio = MC._height/mask._height; scrollbar._height = mask._height/scrollRatio; //gets the height of the

RE: [Flashcoders] Scroll Bar formula problem

2007-06-25 Thread Jesse Graupmann
Using 4 movieClips; mask, content, handle, scrollbar handle.onPress = mx.utils.Delegate.create ( this, startScroll ); handle.onRelease = handle.onReleaseOutside = mx.utils.Delegate.create ( this, stopScroll ); function startScroll() { var l = scrollbar._x; var t = scrollbar._y;

RE: [Flashcoders] Question on old AS1 code

2007-06-25 Thread Vaughn, David (Contractor) (J6B)
Thanks for the response Andy. Fiddler sounds very interesting. Unfortunately, due to very tight security rules, we are not permitted to download any software (30-day trial software, shareware, freeware, etc.) so I'm not sure I can use that tool at work. I will check it out for home use however.

Re: [Flashcoders] Question on old AS1 code

2007-06-25 Thread Martin Jonasson
The extension Firebug for Firefox also lets you see in better detail what's sent/retrived between you and the server. It's incredibly useful for all forms of debugging. I can't understand how i managed without it. Vaughn, David (Contractor) (J6B) skrev: Thanks for the response Andy. Fiddler

[Flashcoders] copying text to clipboard?

2007-06-25 Thread Corban Baxter
Hey guys a client is wanting me to create a combobox that has a button below it that can copy text to the clipboard. Can flash access the clipboard? -- Corban Baxter http://www.projectx4.com ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] copying text to clipboard?

2007-06-25 Thread Hans Wichman
Hi, just out of curiousity, if you open flash, press f1 for help and enter clipboard, does it give any results on your end? regards, JC On 6/25/07, Corban Baxter [EMAIL PROTECTED] wrote: Hey guys a client is wanting me to create a combobox that has a button below it that can copy text to

Re: [Flashcoders] how to get controls and anchors of curve, gradients, etc.

2007-06-25 Thread Andrew Sinning
Thanks Matthias. I'll look into ASVDrawing. If I'm not mistaken, old Illustrator uses cubic-beziers, whereas Flash uses quadratic. There are some algorithms for approximating a conversion, but I'd rather not go down that road Matthias Dittgen wrote: Hi, if your artist produced

RE: [Flashcoders] copying text to clipboard?

2007-06-25 Thread Pete Miller
System.setClipboard() -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Corban Baxter Sent: Monday, June 25, 2007 10:16 AM To: Flashcoders mailing list Subject: [Flashcoders] copying text to clipboard? Hey guys a client is wanting me

Re: [Flashcoders] Scroll Bar formula problem

2007-06-25 Thread O. Fouad
thanks jesse this worked like a charm... ;-) On 6/25/07, Jesse Graupmann [EMAIL PROTECTED] wrote: Using 4 movieClips; mask, content, handle, scrollbar handle.onPress = mx.utils.Delegate.create ( this, startScroll ); handle.onRelease = handle.onReleaseOutside = mx.utils.Delegate.create (

Re: [Flashcoders] wmode transparent, disappearing cs3 components andFirefox

2007-06-25 Thread Kevin Newman
I did try that too, but no luck. I won't be able to get back to this project until later this week, but I'll fiddle with it some more, and let you know what happens. :-) Thanks, Kevin N. Phil Chung wrote: Crap, i should have known. If you replaced Event.RENDER with Event.ENTER_FRAME it

Re: [Flashcoders] JSFL Experts! -- Video Import (Access UI elements of Video Import XUL Dialog Window)

2007-06-25 Thread keith
Thanks, thats a start in some direction. -- Keith H -- Muzak wrote: If I had to guess (which I am) I'd say the video import dialog is handled by the Flash Video Extension.dll (on windows) which is in the Flash install directory. So I doubt you have access to it from jsfl. regards, Muzak

[Flashcoders] loading xml into flash in spanish

2007-06-25 Thread Gustavo Duenas
Hi coders, I have this code, it works perfect in english, but when I try to read the xml in spanish it doesn't work, read the question marks in a square instead of the characters, and when I change to the ntilde; in html or the oaqute; it is the same, I even set up every single part of the

RE: [Flashcoders] loading xml into flash in spanish

2007-06-25 Thread Ryan Clemens
What font are you using on the textfield? I had a similar problem with Chinese characters and solved it by using the _serif or _sans font. HTH, Ryan Clemens Technology Support Analyst, Principal Distributed Learning alt^I Applied Learning Technologies Institute University Technology Office

Re: [Flashcoders] loading xml into flash in spanish

2007-06-25 Thread Gustavo Duenas
I guess I'm using arial in the css that is a sans serif font, how could I set up this into flash...or I have to use this in the css? On Jun 25, 2007, at 1:49 PM, Ryan Clemens wrote: What font are you using on the textfield? I had a similar problem with Chinese characters and solved it by

Re: [Flashcoders] copying text to clipboard?

2007-06-25 Thread John Dowdell
Corban Baxter wrote: Hey guys a client is wanting me to create a combobox that has a button below it that can copy text to the clipboard. Can flash access the clipboard? Other folks already presented info on setting the clipboard contents. (I'm assuming that flash here means Adobe Flash

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Gustavo Duenas
I'm still stuck on this... would somebody help me, I don't know why this flash apparently doesn't want to read the xml from the attributes, I changed the xml into utf-8 and nothing, I also set up _sans in the css and nothing, does anyone knows how can I finally convince this flash to show my

[Flashcoders] dynamically syncing text with mp3 voice overs in AS 3

2007-06-25 Thread becline
I've used the compute spectrum for syncing visual effects. Any ideas on how to sync dynamic text animation with words being spoken on an externally loaded mp3 in AS 3? All mp3s and text excerpts are being pulled from an xml file. - Ben ( semi - newbie ) http://www.bencline.net

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Will McHenry
Stupid suggestion, but in your dynamic text box make sure you actually embed the correct characters (é, ñ, etc specifically in the additional characters field) along with all the other characters. They won't show up otherwise. Gustavo Duenas wrote: I'm still stuck on this... would somebody

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread robert
how about in your xml using the html codes: ñ = #241; é = #233; so señor is se#241;or also I think the texboxes would need to embed characters for ñ and é. On Jun 25, 2007, at 11:50 AM, Gustavo Duenas wrote: I'm still stuck on this... would somebody help me, I don't know why this flash

RE: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Jesse Graupmann
Using Macromedia Flash MX as a multilingual authoring tool http://www.adobe.com/support/flash/languages/flashlocalization/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Monday, June 25, 2007 11:50 AM To:

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Gustavo Duenas
I've just resolved the matter Pals, I've just discovered that flash reads on its xml parse html entity decimal for the spanish letters, so I'm copying all the codes in order to have this for the futurethanks for all guys. but a question does anyone of you knows why if I select the

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Pedro Taranto
if you trace it, do you see the especials characters in the output panel?? if the problem is only in the text field you have to embed the font and the especials characters in the textfield? here is the list that I always use when i have to embed fonts: UPPERCASE LOWERCASE NUMERALS PUNCTUATION

Re: [Flashcoders] dynamically syncing text with mp3 voice overs in AS 3

2007-06-25 Thread Glen Pike
This article may help you, but you will have to work out your cue points and put them into the XML. http://www.adobe.com/devnet/actionscript/articles/cue_points_audio.html Glen [EMAIL PROTECTED] wrote: I've used the compute spectrum for syncing visual effects. Any ideas on how to

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Leandro Amano
In the embedFonts, select: Uppercase, Lowercase, numerals, ponctuation and Latin I. In the xml, mark enconding as UTF-8: ?xml version=1.0 encoding=utf-8? best regards Leandro Amano On 6/25/07, Pedro Taranto [EMAIL PROTECTED] wrote: if you trace it, do you see the especials characters in the

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Gustavo Duenas
I did it and it works, thanks guys. Gustavo On Jun 25, 2007, at 4:09 PM, Leandro Amano wrote: In the embedFonts, select: Uppercase, Lowercase, numerals, ponctuation and Latin I. In the xml, mark enconding as UTF-8: ?xml version=1.0 encoding=utf-8? best regards Leandro Amano On 6/25/07,

Re: [Flashcoders] how to get controls and anchors of curve, gradients, etc.

2007-06-25 Thread Peter Hall
I think those links are dead now. I lost some files a couple of years back, during an ill-planned move. They are possibly lurking somewhere on an old backup. But I think all the AS files ship with ASV anyway, or else are available somewhere on buraks.com. It's worth asking Burak for them. Peter

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Wagner Amaral
Actually, Basic Latin, Punctuation Latin I will do. Basic Latin already contains Uppercase, Lowercase and Numerals (check the Total Number of Glyphs) No big deal, just a hint (less clicking) On 6/25/07, Leandro Amano [EMAIL PROTECTED] wrote: In the embedFonts, select: Uppercase, Lowercase,

Re: [Flashcoders] how to get controls and anchors of curve, gradients, etc.

2007-06-25 Thread Burak KALAYCI
Hi, Yes, Peter's classes ship with ASV along with Ivan's AS2 class. Both of the main class codes are also duplicated in ASV help file, available online. I can send the class code to anyone interested, just email me and have ASV in the subject line else I may miss it. One can get Peter's

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Muzak
Marking it as utf-8 doesn't really make the document itself utf-8. You have to actually save it as utf-8. In notepad you can select the encoding in the save as dialog (at the bottom). Make sure UTF-8 is selected, default is ANSI. The char list that works for me when using non-english languages

RE: [Flashcoders] wordpress and flash integration

2007-06-25 Thread Jesse Graupmann
Tim Wilson just released this article; Flash To WordPress Guide and Code http://tvwonline.net/flash/#page_id=44article=60 Today I will make available some of the PHP code I wrote to extract Data from WordPress in an XML format. I have also created a diagram and explanation on how my website works

[Flashcoders] attachMovie fails on embedded clip in a movie, why?

2007-06-25 Thread Chris Bell
2nd try: Forgive if this is a repeat post. I didn't see my first request make it to the list: Hi Flash Friends, attachMovie works on a clip that is inside a clip that has been loaded by attachMovie but fails on a clip that is inside a clip loaded with loadMovie. This should be so

Re: [Flashcoders] attachMovie fails on embedded clip in a movie, why?

2007-06-25 Thread Ian Thomas
Hi Chris, Is there some limitation to attachMovie that I'm missing? Any guesses, suggestions, ideas? Yes. In AS2, you can't attach a symbol from one .SWF's library into another movie's timeline. So if a parent loads a child, none of the clips in the child's library can be attached to the

[Flashcoders] Convert URLs in a string to links

2007-06-25 Thread Mick G
Can anyone think of an efficient way to convert a URL (or multiple URLs) in a string to a link. eg. myString = this website http://www.this.com is really cool; would convert to: this website a href='http://www.this.com' http://www.this.com/a is really cool. I tried splitting the string at

Re: [Flashcoders] attachMovie fails on embedded clip in a movie, why?

2007-06-25 Thread Fumio Nonaka
One sidenote: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15638sliceId=2 Instances of imported symbols must be manually placed on the Timeline during authoring. _ Ian Thomas wrote: The only exception is when using shared libraries. Good luck, -- Fumio Nonaka

[Flashcoders] as2lib logging setup.

2007-06-25 Thread tommek
Hello people, I pulled down the as2lib and want to use it for unit testing. i also pulled down the tdd_mocks_in_practice sample files to test and see how it works. I can get it to compile but can seem to get any logging. Can any one help me setup the logging or point me in the right direction.