Re: [Flashcoders] Firefox flash plugin problem?

2005-12-01 Thread Mike Britton
Do you have fonts embedded, and if so have you included all the right characters? Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] (no subject)

2005-12-01 Thread Mike Boutin
I have downloaded XPath implementation for AS2. Where do I extract the *.as files to? There seems to be no documentation on how to install. http://www.xfactorstudio.com/ActionScript/AS2/XPath/ Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig

Re: [Flashcoders] (no subject)

2005-12-01 Thread Mike Boutin
This works great, but this does not have syntax highlighting, is that another issue in itself? Chris Hill wrote: http://ubergeek.tv/article.php?pid=90 Mike Boutin wrote: I have downloaded XPath implementation for AS2. Where do I extract the *.as files to? There seems to be no

[Flashcoders] Targeting when using for loop

2005-12-01 Thread Mike Boutin
I am trying to target an object inside my scrollpane. This is what im trying to achieve: my_pane.content["product_"+i].["color_"+j].loadMovie What is the correct way to target a movieclip in this way? Thanks! ___ Flashcoders mailing list Flashcoder

Re: [Flashcoders] Q: html and flash

2005-12-01 Thread Mike Boutin
yes encode them into the url. myfile.swf?myvar=1 Corban Baxter wrote: So is there a way on each page in the tags to send variables to flash? Corban Baxter | rich media designer | www.funimation.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PRO

[Flashcoders] preload loadvar xml return

2005-12-01 Thread Mike Boutin
I am doing a loadVars call to a php file, that then returns a bunch of xml. Is it possible to show a preloader for this load? var catalog_xml:XML = new XML(); catalog_xml.ignoreWhite = true; catalog_xml.onLoad = function(success:Boolean) { if (success) { } else { } sendAndLoad("ca

Re: [Flashcoders] preload loadvar xml return

2005-12-01 Thread Mike Boutin
most are in the less than 100k range. - Original Message - From: "Mike Boutin" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, December 01, 2005 7:16 PM Subject: [Flashcoders] preload loadvar xml return I am doing a loadVars call to a php fi

Re: [Flashcoders] preload loadvar xml return

2005-12-01 Thread Mike Boutin
- Original Message - From: "Mike Boutin" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, December 01, 2005 7:40 PM Subject: Re: [Flashcoders] preload loadvar xml return Thanks! The problem I have seems to be that the flash player lock

[Flashcoders] Change object in xpath

2005-12-01 Thread Mike Boutin
productNames = XPath.selectNodes(catalog_xml, "/shirtBin/shirt/name/text()"); var ttTotal = XPath.selectNodes(catalog_xml,"/shirtBin/shirt[price<12.00]"); Is it possible to say do another XPath query and get back a list of results. Then pass that xml object (ttTotal) through instead of cata

RE: [Flashcoders] text effects similar to fonttwister product

2005-12-02 Thread Mike Mountain
Hi Rishi You've posted on this several times now with the same question and have been given good advice - ie. Check out the displacement map filter option. Your only other option is to get the array of pixels for an offstage text box and work out the transformations yourself and apply them to an

[Flashcoders] Flash 8 security settings tool

2005-12-02 Thread Mike Mountain
I may have been dreaming but I'm sure someone posted a link for a tool to disable the sandbox for flash 8 swfs running in embedded apps. Anyone repost? I know about the activeX settings, http://www.macromedia.com/devnet/flash/articles/fplayer8_security_08.htm l but if we had a tool which would

Re: [Flashcoders] zooming application

2005-12-02 Thread Mike Britton
If it were me, rather than reinvent the wheel (this is a common need) and if I had a budget, I'd go for Zoomify Enterprise: http://www.zoomify.com/enterprise/ Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Firefox flash plugin problem?

2005-12-02 Thread Mike Britton
Flash has had this problem for years. I wish MM would either fix it or do away with the idea. It's definitely cost me time and caused my users headaches. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figlea

Re: [Flashcoders] targeting classes in a loaded swf

2005-12-03 Thread Mike Britton
ction(); sending_lc2.send("lc_name", "init"); hth, Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] HTML in XML

2005-12-06 Thread Mike Boutin
I am bring in some html text to show in flash in an xml file like this: When i trace it back in flash, it shows up like this: picture 0 How can I keep it show it shows the html tags because it wont show up in flash as bolded... Thanks! ___

[Flashcoders] external jpg resize script

2005-12-06 Thread Brumm, Mike
;s missing. Any ideas? Thanks in advance, Mike //SET STAGE PROPERTIES Stage.showMenu = false; Stage.scaleMode = "noScale"; Stage.align = "LT"; //RESIZE EXTERNAL JPG var tmp:MovieClip; tmp = this.createEmptyMovieClip("bgExpand_mc", 1); t

[Flashcoders] XPath / HTML / XML Problem

2005-12-06 Thread Mike Boutin
When selecting the html from the xml document I get the following problems: This works: xmlRoot.childNodes[i].childNodes[0].firstChild.nodeValue; It traces out: picture 0 This doesnt: XPath.selectNodes(createuserReply_xml, "/descriptions/description["+(i+1)+"]/title/text()"); It traces out:

Re: [Flashcoders] Filereference.upload

2005-12-07 Thread Mike Duguid
If you read flashes built in help files ActionScript classes > FileReference > upload it tells you 100mb On 12/5/05, rishi <[EMAIL PROTECTED]> wrote: > Hi > > > > Is there any Limit to size of file with uploading file greater than 10 > mb. Although with php/asp scripts I have uploaded more than

RE: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Mountain
> Our long-term plan is to develop a "universal client" by > combining PDF, Flash and HTML in a single, integrated > runtime. How does this differ from a browser? M ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figlea

RE: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Mountain
So is this to target the 'Konfabulator' widget style market - or will my bank build me a custom app to do my online banking? The security and sandbox issues will be interesting here - the browser developers already have their hands full plugging holes - it'll be interesting to see Adobe tackles su

[Flashcoders] Tabbing

2005-12-07 Thread Mike Boutin
I a user login but the input fields do not all sit in the same movieclip. The structure is as such: userMovie.user_input.inputText.text, passMovie.pass_input.inputText.text How do I set the fields so I can tab through them? And also will doing this cause the onFocus function for each textfie

[Flashcoders] fyi : AS3 Info on String / StringBuilder in Flash Player 8.5

2005-12-07 Thread Mike Chambers
fyi http://labs.macromedia.com/wiki/index.php/ActionScript_3:articles:string_stringbuilder mike chambers [EMAIL PROTECTED] ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Yes im still having this problem as we speak. A previous post said to use unicode and just use xhtml straight in the tags without even using CDATA but I am still unable to get it working correctly. Mike Boutin Juicy Studios Merrill, Jason wrote: Searched Google, no dice, when the chattyfig

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Yes this is how I have been fixing the problem. Seems like a pain to have to use both methods, rather than just using the xpath. Morten Barklund Shockwaved wrote: Merrill, Jason wrote: [...] Problem overview: using Xpath, HTML tags inside of XML does not render, even with CDATA tags appli

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Quote: http://www.w3.org/TR/xpath#section-Expressions Each character within a CDATA section is treated as character data. Thus, || in the source document will treated the same as |<|. Both will result in a single |<| character in a text node in the tree. Thus, a CDATA section is treated as if

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Chambers
Yes. That is correct. It is referring to Apollo, and not the web based plugins. mike chambers [EMAIL PROTECTED] hank williams wrote: Yex, it is apollo. I just didnt use the code word. But that is what I am referring to. Regards Hank On 12/7/05, Mark Winterhalder <[EMAIL PROTECTED]>

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Chambers
Again, the FAQ items refers to Apollo, and not the web based plugins / players. mike chambers [EMAIL PROTECTED] Merrill, Jason wrote: Flash Player X = Flash Player 8 + Adobe Reader I think Flash player 8.5 will be out before PDF is integrated in the player though. At least, that'

Re: [Flashcoders] FlexBuilder 2

2005-12-07 Thread Mike Chambers
Yes. Next build. mike chambers [EMAIL PROTECTED] Martin Wood wrote: apparently its coming in the next build. Ralph Caraveo wrote: Does anyone know if you can get the collapsable function window in Flex Builder 2? In Eclipse you have access to a window where you can see a birds eye view of

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Still wasnt able to get it working. I had to resort to using nodeValue instead. pain in the ass Mike Boutin Juicy Studios Merrill, Jason wrote: Quote: http://www.w3.org/TR/xpath#section-Expressions I can never seem to make heads or tails of the w3.org documentation - maybe I'm

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
I was able to use xpath to return some html then use nodeValue on that. but I *wish* i could just do /xmlnode/xmlnode/text() and cut nodeValue out but i dont think its possible. Morten Barklund Shockwaved wrote: Mike Boutin wrote: Still wasnt able to get it working. I had to resort to

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
ample of what you mean? If you haven't used those classes before, then its interesting that you are giving advice about a product you don't seem to know the details of. I like Mike cannot get your suggestions to work, which if I am interpreting correctly, would mean: mySt

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
even in this case the result is undefined string = XPath.selectNodes(my_xml, "/pathto[1]/xml").nodeValue;

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Where is the documentation on selectSingleNode It doesnt seem to be in flash 8 help files. Johannes Nel wrote: use the selectSingleNode method or use the array accessor On 12/7/05, Mike Boutin <[EMAIL PROTECTED]> wrote: even in this case the result is undefined

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Chambers
Based on the workflows shown by Kevin Lynch at the Spark Europe conference, I would think about it more as an app runtime than a browser. mike chambers Merrill, Jason wrote: So Apollo will be a sort of web browser that has a flash and PDF renderer built in

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Perfect, thanks for the help! Morten Barklund Shockwaved wrote: Mike Boutin wrote: even in this case the result is undefined string = XPath.selectNodes(my_xml, "/pathto[1]/xml").nodeValue; I've just gotten the libraries, and it is exactly as I expected. selectNodes retu

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Morten Barklund Shockwaved Sent: Wednesday, December 07, 2005 4:02 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Xpath and HTML tags inside XML bug? Mike Boutin wrote: even in this case the result is undefined string = XPath.selectNodes(my_xml, "/pathto[1]/xml").nodeV

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Sweet that works. thanks for the update! ;) Mike Boutin Juicy Studios Merrill, Jason wrote: By the way Martin, I hope I didn't come across as being unappreciative - thanks again for your help. Mike too. Mike, if it's any less painful, while not pretty, I knocked it down to a singl

Re: [Flashcoders] Display same value in 3 fields

2005-12-08 Thread Mike Boutin
Will something like this work? Not the best solution im sure but it gets the job done! ;) for(i=1;i Bit of a glitch. I need to display the same value in 3 different locations and was wondering if it's possible to do it in any way other than setting values in 3 text fields. What I'm doing right

[Flashcoders] Loading Image _width _height

2005-12-08 Thread Mike Boutin
Can anyone tell me why when I call the displayImage() function after I fully loaded, and try to get the _width and _height of holderClip, it comes back as zero. But if I wait 1 second after the load and run the displayImage() function through the button click, it then finds the width and heigh

Re: [Flashcoders] Flash is a single-threaded app? Maybe it's just the AVM? or...

2005-12-08 Thread Mike Britton
It scares me too, but so does UI lock, something that's been happening to me a lot lately. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Convert .FLV to Quicktime

2005-12-08 Thread Brumm, Mike
Quicktime. Thanks in advance, Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Even odds

2005-12-08 Thread Mike Boutin
Is it possible to check a number to see if its even / odd? Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Even odds

2005-12-08 Thread Mike Boutin
Awesome, thank you both Scott Hyndman wrote: var isOdd:Boolean = number % 2 == 1; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Boutin Sent: December 8, 2005 7:40 PM To: Flashcoders mailing list Subject: [Flashcoders] Even odds Is it possible

RE: [Flashcoders] Convert .FLV to Quicktime

2005-12-09 Thread Mike Mountain
can you import the flv into the flash timeline and just export as quicktime? M > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Brumm, Mike > Sent: 08 December 2005 23:09 > To: 'Flashcoders mailing list' > Subject

RE: [Flashcoders] External text from XML file including superscript anditalic

2005-12-09 Thread Mike Hiatt
Paul, Did you receive an answer to this question? I am needing to do the same thing with a service mark Thanks Mike Hiatt [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Steven Sent: Tuesday, November 15, 2005 11:01 AM To

Re: [Flashcoders] Book sequence...

2005-12-12 Thread Mike Britton
> December should be a fun month. With this in mind: 1. Foundation ActionScript Animation: Making Things Move! 2. Flash Math Creativity: Second Edition Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.

Re: [Flashcoders] Success Stories with Flash Friendly CVS Systems?

2005-12-12 Thread Mike Boutin
Yes i agree, Subversion seems to do the trick for me. eric dolecki wrote: What's your situation? How big is your team, how often are you changing binary assets, are you working from a large class library, etc? I use SubVersion and its super nice. Nothing is perfect when working with binary ass

[Flashcoders] debug tool?

2005-12-12 Thread Mike Boutin
I am creating a project in flash/php/xml output, It is a pain to debug because I cannot use trace things out because I have to test the application in the web browser. Is there any free programs out there that I can trace data to? Heather ___ Flashco

Re: [Flashcoders] debug tool?

2005-12-12 Thread Mike Boutin
I just want to be able to see the incoming/outgoing data, as well as just send random traces to it when developing. Heather - Original Message - From: "Pranav" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, December 12, 2005 7:54 PM Subject: Re: [Flashcoders] debug t

RE: [Flashcoders] debug tool?

2005-12-13 Thread Mike Mountain
ashcoders] debug tool? > > Hey Mike, check out the videos for Xray I have out there. > > Should give you a really good view of what it does and if > it'll work for your needs. > > http://labs.blitzagency.com/?p=79 > > John > > On 12/12/05, Mike Boutin <[EMAI

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Mike Mountain
While we're on the subject, my general fix for this issue used to be a textbox offstage with everything embedded - all other textboxes could then access the embedded font. This seems to have stopped working (not sure in which version it stopped working) which is a real shame as it was a much easier

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Mike Mountain
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Kerem Gülensoy > Sent: 13 December 2005 14:24 > To: 'Flashcoders mailing list' > Subject: AW: [Flashcoders] Embedded fonts vs. Html : Can > anybody enlighten me > > it still works fine for me...

RE: [Flashcoders] Loading Xml from Flash over Http

2005-12-13 Thread Mike Mountain
Strange that this should come up, the other day my colleague was working on a file that used relative refferences loaded in from XML, it worked fine, the next day when he open it up it had stopped working - the fix we found was instead of: "mydir/myfile.xml" Was to use "/mydir/myfile.xml" The o

Re: [Flashcoders] debug tool?

2005-12-13 Thread Mike Boutin
Does LuminicBox.Log also work in flash 8? i cant seem to get it to log a message though it doesnt get any errors... John Grden wrote: Yeah i agree, if you're just into logging, LuminicBox/Flashinspector is a great tool John On 12/13/05, Jim Tann <[EMAIL PROTECTED]> wrote: LuminicBox L

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
movieclip.stopAllTweens() will stop all tweening on all the instances that are currently tween. Not sure if this helps. [EMAIL PROTECTED] wrote: Hello everybody, i use tween of laco [laco.wz.cz] with delay on some instances. i want to delete a delay and the tween to on previous instance w

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
How exactly are you "delaying" the tween? the tween class doesnt have a "delay" in it as far as I know Cinetryx wrote: stopAllTween delete the tween event but not the delay before the tween Mike Boutin a écrit : movieclip.stopAllTweens() will stop all tweening o

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
delay. Mike Boutin a écrit : How exactly are you "delaying" the tween? the tween class doesnt have a "delay" in it as far as I know Cinetryx wrote: stopAllTween delete the tween event but not the delay before the tween Mike Boutin a écrit : movieclip.stopAl

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
lip._x+100,2,"easeout",3); myButton.onRelease = function(){ clip.stopTween(); } Cinetryx wrote: yes, i want. Mike Boutin a écrit : So you are calling the tween, but you want to delete it before the delay happens? Cinetryx wrote: When you write this : my_mc.tween(proper

[Flashcoders] Hyperlink to frame?

2005-12-13 Thread Mike Boutin
Is it possible to have a hyperlink (loaded from xml)gotoandplay a certain frame in the movie? Heather ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Hyperlink to frame?

2005-12-13 Thread Mike Boutin
str) { if(str == "label") { some_mc.gotoAndPlay(3); } } - Original Message - From: "JesterXL" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, December 14, 2005 12:16 AM Subject: Re: [Flashcoders] Hyperlink to frame? sort of... you

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-14 Thread Mike Mountain
Yup doesn't work for me anymore > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Cedric Muller > Sent: 14 December 2005 09:53 > To: Flashcoders mailing list > Subject: Re: [Flashcoders] Embedded fonts vs. Html : Can > anybody enlighten me >

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-14 Thread Mike Mountain
have to tick embed on all instances of textboxes using the font. M > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Mike Mountain > Sent: 14 December 2005 10:04 > To: Flashcoders mailing list > Subject: RE: [Flashcoders] Embedde

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
You can embed cue points in flash 8 flvs Then use these to trigger your subtitles > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Derivative > Sent: 14 December 2005 16:26 > To: Flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] Displ

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
Yeah - sorry what I meant was if you use the flash 8 video encoder tool there's a whole section in the setting devoted to cue points, event triggering etc. It's a bit easier to set up than the old MX04 way if I recall. M > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PRO

[Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Just a few questions about SVN & TortoiseSVN. I have ran the 1 click setup SVN that installs Subversion and TortoiseSVN. It created the repository in c:\svnrepos I stuck my project in a folder c:\svnrepos\project1, then I import it into the repos. Now when I make a new directory and use CH

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
--- Original Message - From: "Mike Boutin" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, December 14, 2005 10:09 PM Subject: [Flashcoders] SVN & TortoiseSVN Just a few questions about SVN & TortoiseSVN. I have ran the 1 click setup SVN

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
h svn. Subversion keeps the files inside its db in its own special format, only keeping the parts of the files that have changed between revisions to save disk space. C Mike Boutin wrote: Just a few questions about SVN & TortoiseSVN. I have ran the 1 click setup SVN that installs S

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
get used to using it, you'll never look back. Enjoy! C Mike Boutin wrote: Perfect this is what I was just reading in TortoiseSVN help. I just wasnt sure if I could then delete the folder I had imported. It says in the help that their are 2 ways in which it can store the files, in a db, or

Re: [Flashcoders] Mp3:: issues...

2005-12-14 Thread Mike Duguid
Use 44/22/11Khz sample rates and you should be fine. On 12/14/05, Karim Beyrouti <[EMAIL PROTECTED]> wrote: > Hello ! > > We are using this software that generates mp3's, which i am loading into > flash. > The problem: flash makes a mess of decoding the audio. check it out: > >http://kurst

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
in the repository, since it saves only the changes to the files, and never the full file(except when you first import). Subversion rules, btw. Once you get used to using it, you'll never look back. Enjoy! C Mike Boutin wrote: Perfect this is what I was just reading in TortoiseSVN hel

Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
ment the line below to use the default password file. password-db = passwd ### This option specifies the authentication realm of the repository. ### If two repositories have the same authentication realm, they should ### have the same password database, and vice versa. The default realm ### is repos

[Flashcoders] sortable list? anyone?

2005-12-14 Thread Mike Lyda
Has anyone seen AS2 code to accomplish this: http://tool-man.org/examples/sorting.html It's doable, and so figure somebody has already done it.. and I'm feeling lazy and not wanting to re-invent the wheel. ;) __ Do You Yahoo!? Tired of spam? Yahoo

Re: [Flashcoders] ****************** Unicode Input ***************************

2005-12-15 Thread Mike Lyda
umm.. it kind of sounds like you want Flash to automatically map the characters to the keypress? i.e. if someone with an English keyboard/system, types into your input field the characters will show up as Chinese? ... it might be possible to have them actually typing into an offscreen/hidden i

Re: [Flashcoders] anchors in dynamic textfield?

2005-12-15 Thread Mike Britton
s in. The variable could be a few words you know are unique to the line you wish to anchor to. There would have to be some text-parsing code to search for the words, but in theory it would work. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.f

RE: [Flashcoders] No consecutive onRelease() events?

2005-12-16 Thread Mike Lyda
more info here.. http://oddhammer.com/blog/comments.php?id=51_0_1_0_C from 1/9/2004 --- "Mendelsohn, Michael" <[EMAIL PROTECTED]> wrote: > Yes, it's just a plain old button. The code is attached right to the > button. > > > > > > > > Are you using the Button component, or a button symb

[Flashcoders] help the tabIndex

2005-12-19 Thread Mike Boutin
How do I enabled custom tab indexes? the following example doesnt seem to work for me user_movie.user_input.inputText.tabIndex = 1; pass_movie.pass_input.inputText.tabIndex = 2; Thanks! Mike Boutin ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] flash and cfm

2005-12-20 Thread Mike Britton
Looks like you're running into the character limit of URL strings. I second Jason's recommendation of remoting. Either that or use coldfusion to write XML files. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figlea

[Flashcoders] What not to do

2005-12-20 Thread Mike Boutin
Does anyone have any links on stuff "Not to do" in flash that maybe cause the plugin to slow down or halt. Maybe even some best practices when working on large projects? Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http:/

Re: [Flashcoders] Out of curiosity, XPath and String Datatype Oddity

2005-12-20 Thread Mike Boutin
Maybe something like this may help? myText=XMLNode((XPath.selectNodes(myxml,"myNodePath/mynode()")[0])).nodeValue; Mike Boutin Merrill, Jason wrote: AFAIK, XPath.selectNodes() returns an Array. How do you use Xpath to return node values then? Jason Merrill |

[Flashcoders] Flex vs OpenLaszo

2005-12-20 Thread Mike Boutin
Has anyone played with OpenLaszo as well as Flex? Does flex allow you to compile a stand-alone swf file such as OpenLaszlo does? Thanks! Mike Boutin ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] Out of curiosity, XPath and String Datatype Oddity

2005-12-20 Thread Mike Boutin
around it is easier. I was wondering just about the XPath implementation and why it doesn't return a native string, thanks though. Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PRO

[Flashcoders] Wierd split

2005-12-20 Thread Mike Boutin
Im having a wierd problem with using .split on an array. I create an array 3 frames before in the same timeline like so: _root.cat_colors = new Array(); _root.cat_colors[0] = "bob,john,betty"; Then 2 frames down the timeline I run a loop like so: for (i=0; i<_root.cat_colors.length; i++) {

Re: [Flashcoders] Wierd split

2005-12-20 Thread Mike Boutin
r code and plonked it in a new .fla and it works for me. Is anything else happening in the movie or any included movies? See it here: http://www.adrianlynch.co.uk/temp/colours.fla Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Boutin Sent: 20 Decem

Re: [Flashcoders] Wierd split

2005-12-20 Thread Mike Boutin
Thanks Adrian, your code works exactly like mine "should" but for some reason mine doesnt get the same results (though its the same code) ;) Mike Boutin Adrian Lynch wrote: Just took your code and plonked it in a new .fla and it works for me. Is anything else happening in the mo

Re: [Flashcoders] RE: Flex vs OpenLaszo

2005-12-21 Thread Mike Boutin
So OpenLaszlo may be a better solution as it does not need a OpenLaszlo licence to have a standalone swf on the server? - Original Message - From: "Spike" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, December 21, 2005 8:27 AM Subject: Re: [Flashcoders] RE: Flex

[Flashcoders] IE vs Firefox performance

2005-12-21 Thread Mike Boutin
I recently installed and have been using Firefox as my main browser. I have noticed that all my flash sites in firefox perform noticably slower than they do in internet explorer. Is this an issue with firefox plugin itself or should I just go back to oh no internet explorer. Mike

[Flashcoders] Combo troubles

2005-12-22 Thread Mike Boutin
I have a swf file that has a combobox component in it with two options. This is loaded into _root.holderClip For some reason when I publish and view it in flash player, it works fine. When I run the same thing in Internet Explorer and comobox does not drop down anymore? Am I missing somethin

[Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
Can anyone tell me how to go about creating a comobox that can hold a 10x10 pixel color palette image and a label beside it per row? Has anyone seen anything like this? Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://cha

Re: [Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
Perfect ill give it a try and post some code when i get it ;) Cheers! Mike Boutin Chris Hill wrote: Hi Mike, You should be able to create a movieclip class that implements the CellRenderer api, and then use that within the combobox's list: var dropdown:List = myCombo.dro

Re: [Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
nd have a linkage id. Do you think there is any way to take this same approach but use a dynamically loaded jpg for the icon? Mike Boutin Chris Hill wrote: Hi Mike, You should be able to create a movieclip class that implements the CellRenderer api, and then use that within the combob

Re: [Flashcoders] Scrollpain Overlap Issues

2005-12-23 Thread Mike Boutin
latest files. Let me know if you still can't see the movie. Just curious, can you view source? http://mike.randm.org/flash/scrollpain/index.html Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Friday

Re: [Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
figure out. - Original Message - From: "Mike Boutin" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, December 23, 2005 3:23 PM Subject: Re: [Flashcoders] Custom combobox Hi Chris, thanks for the help by the way, i managed to get it working like

Re: [Flashcoders] Video to Vector Software

2005-12-28 Thread Mike Duguid
http://www.on2.com/video_samples/flix-vector-video/ On 12/28/05, Ryan Mayer <[EMAIL PROTECTED]> wrote: > Hello all, > > I remember a long time ago I used some software to take a video and turn it > into several frames of vector art. I can't remember it for the life of me > now. Does it ring a bel

[Flashcoders] Changing color of window title?

2005-12-29 Thread Mike Boutin
Does anyone know how to change the color of the title in the window component? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] NumericStepper

2005-12-29 Thread Mike Boutin
I have a NumericStepper that changes the value of a price textfield based on the stepper value. Is there anyway to check if the user increment/decrement the stepper so I can muliply/divide the number when needed. Thanks var nstepListener:Object = new Object(); nstepListener.change = functio

[Flashcoders] Combobox troubles

2005-12-29 Thread Mike Boutin
For some reason the change event handle will not trigger for item 1 in the combobox gets selected unless I first select item 2+ then go back and try again. Otherwise if I try to click on the first item, it doesnt do anything, no traces happen. Any ideas what would cause the first item to not

Re: [Flashcoders] JavaScript to Flash Communication Compatability

2006-01-02 Thread Mike Chambers
docs. mike chambers [EMAIL PROTECTED] On Dec 30, 2005, at 9:20 AM, Jeff Mastropietro wrote: Nathan, Thanks, I was aware of both of the Macromedia methods, and I have switched over to the Macromedia Flash JavaScript Integration Kit. It has pretty poor documentation, and that is why I did not

Re: [Flashcoders] Flash does not run when wmode is transparent and div is hidden

2006-01-04 Thread Mike Britton
I never use wmode transparent -- it's buggy and broken. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Stage.height Misreporting

2006-01-05 Thread Mike Britton
Try using setInterval Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Files in directory?

2006-01-06 Thread Mike Boutin
Is there anyway for flash to find out how many files exist within a specific directory? Thanks ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

<    1   2   3   4   5   6   7   8   9   10   >