Re: [Flashcoders] Moving links in a mc let the link stuck somewhere

2007-05-24 Thread Ryan Potter
This is really odd behavior so I would assume it is some issue with the code. It is possible to do what you want, but there is no way to help unless you post your code. That is most likely why you are getting no response. On May 24, 2007, at 6:42 AM, dr.ache wrote: is there no one

RE: [Flashcoders] Extracting file details

2006-12-06 Thread Ryan Potter
I have run into something similar trying to create a multiple file preloader. What I finally had to do was to trace out the files as they were preloading and then put them back into an array (manually) to use as a total. My computer was giving the wrong value under file properties. Try

RE: [Flashcoders] Noob, basic questions on actionscript, book suggestion

2006-11-10 Thread Ryan Potter
I bought that book too. It is the worst computer book I have ever read. At their talk they gave on the subject at MAX a couple of years ago (it could have been flash forward), Joey Lott kept having to correct them from the audience. He was so nice about it, but it was pretty obvious they didn't

RE: [Flashcoders] Noob, basic questions on actionscript, withmethodology suggestions

2006-11-10 Thread Ryan Potter
That is one way to do it and keep poling for the var in your code, but I find that to be a lot of trouble. The other way is to use events and listeners to notify the other parts of your code when the data is ready. But the way I find most useful is to use a method sequencer. There are some out

RE: [Flashcoders] Grabbing data directly from the HTML page

2006-11-09 Thread Ryan Potter
Not sure how complicated your html page is, but I have been playing with the same idea but going at it a different way. I just loaded the entire page in as xml. As long as the page is valid xhtml it works great. I realize it doesn't exactly answer your sgml question, but it should get you the

RE: [Flashcoders] Flashloaded.com Service

2006-11-09 Thread Ryan Potter
Same here. I had a question about the usage of a component once, and they got right back to me. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Geurts Sent: Thursday, November 09, 2006 2:02 PM To: Flashcoders mailing list Subject: RE:

RE: [Flashcoders] Noob, basic questions on actionscript, withmethodology suggestions

2006-11-09 Thread Ryan Potter
There are a number of ways to do this. I would start by looking at the xml help files in the flash help. If you get looking at the object and it's methods you will get an idea of how it works. There are also some good tutorials out there:

RE: [Flashcoders] Noob, basic questions on actionscript, withmethodology suggestions

2006-11-09 Thread Ryan Potter
Here is another good article to help you understand XML and Flash: http://www.actionscript.org/resources/articles/9/1/XML-101/Page1.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Haneda Sent: Thursday, November 09, 2006 2:59 PM To:

RE: [Flashcoders] Noob, basic questions on actionscript, withmethodology suggestions

2006-11-09 Thread Ryan Potter
No offense Scott, but you are asking some really basic questions about how AS works and how the XML object in Flash works and this may not be the list to be asking. I guarantee you are going to get some harsh replies on this list for basic questions. Spend some time in the help files (f1) you

RE: [Flashcoders] EventDispatcher and onEnterFrame.... problems

2006-11-08 Thread Ryan Potter
You want to post some code? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chase Brammer Sent: Wednesday, November 08, 2006 10:45 AM To: Flashcoders mailing list Subject: [Flashcoders] EventDispatcher and onEnterFrame problems Hi yall, I am

RE: [Flashcoders] Detecting a click on an html link in a text field

2006-11-08 Thread Ryan Potter
I don't know squat about as3 yet, but from the docs there is this: http://livedocs.macromedia.com/labs/as3preview/langref/flash/text/TextField .html#event:link -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Wednesday, November 08,

RE: [Flashcoders] allowScriptAccess and swfobject.js

2006-11-07 Thread Ryan Potter
I believe you are using the wrong flash object method. It should be so.addParam(allowScriptAccess, always); not so.addVariable(allowScriptAccess, always); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent: Tuesday, November 07,

RE: [Flashcoders] AS Tweening. Approach to prevent tween clashing?

2006-11-03 Thread Ryan Potter
I have run into similar problems with tweens and I fixed it by stopping the tweens before I start them on every button. Inside your event handler: Tweenname.stop(); Tweenname.start(); Or Tweenname.stop(); Tweenname = new Tween(prop, prop); I don't use lacos tweens by themselves so I don't

RE: [Flashcoders] VitalStream Bandwidth detection

2006-10-03 Thread Ryan Potter
Hey Brian. Can you give a little more info? Are you passing a smil xml file to the flv player or are you trying to detect based on the bandwidth profile being returned from the server? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Weil Sent:

RE: [Flashcoders] Google Adsense in Flash ...

2006-09-27 Thread Ryan Potter
He is saying you may not need to use flash to read in the adwords and just float a div above flash and put the google adwords in the div. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Wednesday, September 27, 2006 9:34 AM To:

RE: [Flashcoders] TEXTAREA COMPONENT PROBLEM - has a green keyline whenselected :/

2006-09-27 Thread Ryan Potter
Try this: this.myTextArea.drawFocus = null; this.myTextArea.focusTextField = null; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Muller Sent: Wednesday, September 27, 2006 9:22 AM To: Flashcoders mailing list Subject: [Flashcoders]

[Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Ryan Potter
Hello list. I have been working on parsing a smil xml file so that I can detect bandwidth for an flv player. I am getting the xml output from a PHP script and I am using xml.sendAndLoad(). That all works just fine. I can get the xml object back and I can parse through it and get the data out

RE: [Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Ryan Potter
-Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Ryan Potter Sent: Wednesday, September 20, 2006 6:06 PM To: Flashcoders mailing list Subject: [Flashcoders] SMIL xml parsing weirdness

RE: [Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Ryan Potter
. Ryan Potter wrote: Hello list. I have been working on parsing a smil xml file so that I can detect bandwidth for an flv player. I am getting the xml output from a PHP script and I am using xml.sendAndLoad(). That all works just fine. I

[Flashcoders] FLVPlayback and SMIL

2006-09-19 Thread Ryan Potter
Hello List. I have been racking my brain trying to get the FLVPlayback component to work with a smil file. I really can't find any good documentation on this and the Adobe docs are conflicting on how they describe how to do this. Does anyone have an example of this working (email offlist

RE: [Flashcoders] Site Check Please - Problem with swfObject

2006-09-18 Thread Ryan Potter
Maybe it is apocalyptic radiation from the mushroom cloud in banner image at the top? Anyway, SWFObject should not be the problem here. If you see the flash at all it would seem to be working. The only thing I can think of would be that your detection script is not working properly. Are

[Flashcoders] flv playback version number

2006-09-14 Thread Ryan Potter
Hello list. I updated flash 8 with the update mpx. Supposedly I should have gotten the 1.0.1 version of the FLV Playback component. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=3acdb2ff The problem is that when I trace out the version I get: version: 1.0.0.103 Anyone

RE: [Flashcoders] Site Check Please

2006-09-12 Thread Ryan Potter
Once I installed flash 9 it worked fine. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Roberson Sent: Tuesday, September 12, 2006 11:02 AM To: Flashcoders mailing list Subject: [Flashcoders] Site Check Please I have a flash banner on my site that

RE: [Flashcoders] Site Check Please

2006-09-12 Thread Ryan Potter
installed? Thanks, Aaron On 9/12/06, Ryan Potter [EMAIL PROTECTED] wrote: Once I installed flash 9 it worked fine. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Roberson Sent: Tuesday, September 12, 2006 11:02 AM To: Flashcoders mailing list

RE: [Flashcoders] Site Check Please

2006-09-12 Thread Ryan Potter
Check Please So it didn't work without Flash 9? Do you know if you had Flash 7 or 8 installed? Thanks, Aaron On 9/12/06, Ryan Potter [EMAIL PROTECTED] wrote: Once I installed flash 9 it worked fine. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron

RE: [Flashcoders] Embedded Cue Points in an FLV stream

2006-09-11 Thread Ryan Potter
Here is an article I found helpful. http://www.communitymx.com/abstract.cfm?cid=124DB -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sean Scott Sent: Monday, September 11, 2006 10:08 AM To: Flashcoders@chattyfig.figleaf.com Subject: [Flashcoders]

RE: [Flashcoders] Simulate download question

2006-08-30 Thread Ryan Potter
This one works well. http://www.xat.com/wo/index.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Edmundo Ortega Sent: Wednesday, August 30, 2006 10:46 AM To: flashcoders chattyfig.figleaf.com Subject: Re: [Flashcoders] Simulate download question

RE: [Flashcoders] MC position at any given time

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

RE: [Flashcoders] XML question

2006-08-24 Thread Ryan Potter
Did you try condenseWhite on your textfield? http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/w whelp.htm?context=LiveDocs_Partsfile=2740.html From the help files: var my_str:String = Hello\tWorld\nHow are you?\t\t\tEnd; this.createTextField(first_txt,

RE: [Flashcoders] Best books about design

2006-08-24 Thread Ryan Potter
That's funny. Comm Arts and How are the only subscriptions I get. Two great suggestions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Mays Sent: Thursday, August 24, 2006 12:09 PM To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] flip pages in as2 or the like

2006-08-23 Thread Ryan Potter
I don't know if a component solution would work for you, but it is supposedly controllable with AS. I can say their scroller component works like a champ. http://www.flashloaded.com/flashcomponents/pageflipper/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [Flashcoders] MovieClip loader IE Caching bug

2006-08-17 Thread Ryan Potter
I ran into the same problem yesterday. Just looked all over for an as2 version of qload and I am not coming up with it. Would you mind posting a link? Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: Thursday, August 17, 2006

RE: [Flashcoders] Help Getting Size of Text Dynamically

2006-08-17 Thread Ryan Potter
Hey Aaron. The problem that I can see is that you are setting the x to the x of the current item, hence you are setting it to its own width. If you are trying to space them across the screen horizontally you need to get the x and width of the last clip. Another way to do it is to get the width

RE: [Flashcoders] New Flash based website

2006-08-10 Thread Ryan Potter
Good explanation of how it works. The code is commented. http://hossgifford.com/downloads.htm Also email me off-list and I can give you a proof of concept I did based on this that is really simple and easy to figure out. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] HTML in XML

2006-08-09 Thread Ryan Potter
Another way that works pretty well is to do a join on the child nodes. So your trace would look like this: trace(newsNode.childNodes[i].childNodes.join()); As long as your html is xml compliant (br/ instead of br) it will work just fine. -Original Message- From: [EMAIL PROTECTED]

RE: [Flashcoders] flashvars, SWFObject, paths XML

2006-06-07 Thread Ryan Potter
If the images are in the same dir as the xml, I would think that you could just add it to your image path when you store the path of the image in your image var (image[i]). // something like this: image[i] = tripPath + xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue; -Original

RE: [Flashcoders] \r

2006-05-15 Thread Ryan Potter
If it is an attribute of a node and the text field is html, can't you just use br/? Ex: my-node attribute=br/ / Or my-node attribute=this is a linebr/this is on the next line / -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent:

RE: [Flashcoders] ExternalInterface

2006-04-19 Thread Ryan Potter
remember to test your movie on the server. It doesn't work when you test it locally. -Original Message- From: [EMAIL PROTECTED] on behalf of Jon Robert Sent: Wed 4/19/2006 5:59 PM To: flashcoders@chattyfig.figleaf.com Cc: Subject:

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] Testing ExternalInterface on Windows for me.

2006-04-18 Thread Ryan Potter
thumbnails in the scroller piece. when you click on a thumbnail it communicates through js to the other flash piece to load a larger img. On Apr 18, 2006, at 11:29 AM, Ryan Potter wrote: I tested it and it works. It is the testing locally issue. Here is your code on a server: http

RE: [Flashcoders] Flash e-commerce site

2006-04-03 Thread Ryan Potter
Not sure why you would want to use flash for an e-comm site, and this is coming from a person that tries to use flash all the time even when it isn't necessarily appropriate. That being said, we used oscommerce and had a store up and running in less than a week. I was pretty impressed with

RE: [Flashcoders] Counter in function assigned inside a for loop

2006-03-31 Thread Ryan Potter
You could also set a var on the button that tracks it's own content. function buttonBehavior():Void { for (var i=1; i 8; i++) { //do tmpMC = _root[mb_+i]; just once per loop //to save processing var tmpMC:MovieClip = _root[mb_+i];

RE: [Flashcoders] Problems with Flash Plugin Switcher 2.1.0

2006-03-23 Thread Ryan Potter
I just finished the install (weird timing). I ran into problems too and just figured it out. So when you unzip the files from macromedia you will see a readme file that explains the versions of the plugins. For mozilla and IE there are two exe files. Version 7.0.60.0 folder: Mozilla Player

RE: [Flashcoders] referencing my main movieclip in a movie clip thatis above(i think)

2006-03-22 Thread Ryan Potter
Give this a shot. So if the structure looks like this: root animBotoes_mc (A.swf) myvar emptyMovieClipName (B.swf) From inside emptyMovieClipName to myvar: this._parent.myvar (you have to go up a level) Ryan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] centering/padding dynamic text

2006-03-22 Thread Ryan Potter
Assuming the name of your submit background is called submitBg Assuming that you have a text field with the name submitLabel that is attached to submitBg var bgCenterW = this.submitBg._width/2; var tfCenterW = this.submitBg.submitLabel._width/2; this.submitBg.submitLabel._x =

RE: [Flashcoders] What is the source document of my swf?

2006-03-22 Thread Ryan Potter
You could use a javascript function to send the document.location.href to flash as flashVars. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wade Arnold Sent: Wednesday, March 22, 2006 12:55 PM To: Flashcoders mailing list

RE: [Flashcoders] wait or sleep

2006-03-21 Thread Ryan Potter
Here is another way that might help. You can use Fuse to sequence and wait. Code Post: http://thoughtwillrise.com/ Fuse: http://mosessupposes.com/Fuse/index.html -Original Message- From: [EMAIL PROTECTED] on behalf of iashido Sent: Tue 3/21/2006 7:16 AM

RE: [Flashcoders] preloader, again (ugh)

2006-03-20 Thread Ryan Potter
One thing you may want to look into is a program like web speed simulator. http://www.xat.com/wo/index.html I use it to test preloaders all the time and it works great allowing you to test locally as if it were uploaded. And you can test at different connection speeds. Ryan

RE: [Flashcoders] Loading several images with one progressbar?

2006-03-14 Thread Ryan Potter
This is a bit of a mess and it is a little old (you could write it better), but it works to do what you are asking. It also requires that you know the bytes of each file before you load. The way I handled this is to run the swf once and trace out the bytes and then put them into the bytes array.

RE: [Flashcoders] What's your job title?

2006-03-10 Thread Ryan Potter
I see these titles a lot: Interactive Developer Interactive Designer Motion Designer Interactive Architect Media Designer Media Developer But they basically mean nothing and are completely non-descriptive. But they sound really important. -Original Message- From: [EMAIL

RE: [Flashcoders] What's your job title?

2006-03-10 Thread Ryan Potter
The only people who are impressed by fancy sounding titles are incompetent middle management asshats who use buzzwords in their everyday speech I do freelance design and programming. Who the hell do you think my clients are? But hey thanks for the pep talk there Stevo and try to have those

RE: [Flashcoders] What's your job title?

2006-03-10 Thread Ryan Potter
Lol I bet you got a little more input than you bargained for. After that thread I think no titles may be a good idea. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kirk Roberts Sent: Friday, March 10, 2006 5:38 PM To: Flashcoders mailing list

RE: [Flashcoders] Move object along a curve

2006-03-03 Thread Ryan Potter
Are you looking for something like a tsunami effect where the proximity of the mouse effects the size and position of the clips? Like the nav here: www.miketea.com -Original Message- From: [EMAIL PROTECTED] on behalf of eric dolecki Sent: Fri 3/3/2006 1:05

RE: [Flashcoders] {Business/Workflow} The use of mock prototypes

2006-03-01 Thread Ryan Potter
I agree with Jesse. Prototypes and good mock-ups seem to do the trick. I have been working with a lot of design agencies lately that farm out the motion design and AS code to me as a freelancer. I have been paying special attention to how they interface with the client and how they get the work.

RE: [Flashcoders] {Business/Workflow} The use of mock prototypes

2006-03-01 Thread Ryan Potter
Again. I agree. I take whatever I think it will take and double it (seriously). That usually gets within 5 hrs either way. I have no idea why this works. Track your time on projects and you will start to see a trend. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] How can I display a tall document?

2006-02-22 Thread Ryan Potter
I don't think it sucks that bad Take a look for yourself. You have two choices that I can see: Container Resize: http://www.salttown.com/vrutah/ (click on the left side links to load different length text) Flash Scrollbars: http://www.jasonkimura.com/ (click anywhere on the screen) (not

RE: [Flashcoders] Dynamic width of image...

2006-02-08 Thread Ryan Potter
You could use a movie clip loader too. Code below: init(); function init(){ trace(code init); this.createEmptyMovieClip(holder, this.getNextHighestDepth()); this.imageLoader = new MovieClipLoader(); this.imageLoader.addListener(this);

RE: [Flashcoders] LoadClip and centering new content

2006-02-03 Thread Ryan Potter
Eric- I have run into the same problem before. the only way I found to force a clip to have a certain dimension is to put a graphic in at the size you want the clip to be. I realize that you don't have control over the swfs that are being created but I have never been able to solve this

RE: [Flashcoders] Question about xpath and cdata

2006-02-03 Thread Ryan Potter
Have you tried not using cdata at all? If your html text is xml compliant (XHTML) then you can use xpath to get the value of the node and return it. Then you load the text. I just had to solve the same problem and it worked beautifully. XPath select Nodes returns an array of child nodes.

RE: [Flashcoders] site check plese (possible preloading issue) - oris it just me ?

2006-02-03 Thread Ryan Potter
Worked great on IE 6 on a PC. -Original Message- From: [EMAIL PROTECTED] on behalf of Anggie Bratadinata Sent: Fri 2/3/2006 7:08 PM To: Flashcoders mailing list Cc: Subject: Re: [Flashcoders] site check plese (possible preloading

RE: [Flashcoders] Q: Best tweening engine for Flash 8 filters

2006-01-26 Thread Ryan Potter
I haven't tried them, but the new version of fuse has besier tweens as well. http://www.mosessupposes.com/Fuse/fuse1.1docs/ZigoEngine.html (bottom of the page) It sounds like this comes down to preference. -Original Message- From: [EMAIL PROTECTED] on behalf of

RE: [Flashcoders] /**** Fuse Question - [SOLVED] ****/

2006-01-14 Thread Ryan Potter
To: Flashcoders mailing list Subject: Re: [Flashcoders] / Fuse Question - WTF? / Ryan, Your code works only if you drag-and-drop an instance of the Fuse Component on Stage. You'd better ask Moses about that behaviour... Regards, Julien. Ryan Potter a écrit : Is there a way to step

[Flashcoders] /**** Fuse Question - WTF? ****/

2006-01-12 Thread Ryan Potter
Is there a way to step back and forth through animations in Fuse? I created a simple animation (code below) to test this. I am new to Fuse. Problem: I am trying to make it so that I can click a button (the two lower clips) and launch an animation action in fuse. So far I can't

RE: [Flashcoders] Tween class question

2006-01-09 Thread Ryan Potter
Have you looked at Fuse? http://www.mosessupposes.com/fuse/ I may not understand your question, but I just started playing with it and it is loaded with features. Like events that fire automatically. I have found it more powerful than the macromedia tween class. -Original Message-

RE: [Flashcoders] Cache busting

2005-12-15 Thread Ryan Potter
Take a look at this. http://www.communitymx.com/abstract.cfm?cid=827EA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Rollins Sent: Thursday, December 15, 2005 10:04 AM To: Flashcoders mailing list Subject: [Flashcoders] Cache busting I'd like to

RE: [Flashcoders] Independent contractors and unemployment-

2005-12-13 Thread Ryan Potter
That is the case if they filed correctly. There are rules for when an employer has to give you a w2 and not a 1099. check out www.irs.gov. Here is a quote from the irs: The general rule is that an individual is an independent contractor if you, the employer, have the right to control or direct