Re: [Flashcoders] Cache Issue

2012-07-16 Thread Nathan Mynarcik
add a query at the end of the xml string when loading. var cb = new Date().getTime(); then when you load.. load('content.xml/?cb='+cb); ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Button events under mc

2012-07-09 Thread Nathan Mynarcik
Try MOUSE_OVER instead of ROLL_OVER. Also, leave the mouseEnabled/mouseChildren set to false for whatever is on top of the button. On Mon, Jul 9, 2012 at 3:24 PM, natalia Vikhtinskaya natavi.m...@gmail.comwrote: Yes I tried mouseEnabled for the text. That does not help. I can not put

Re: [Flashcoders] RE: Grab Textfield Value from Javascript

2012-05-24 Thread Nathan Mynarcik
*In JS:* mainFlash = document.getElementById('flash'); //id of the object element mainFlash.asFunc(); //trigger flash with an external interface call *In Flash:* //Flash listens for asFunc in JS and knows to execute myFunc ExternalInterface.addCallback('asFunc', myFunc); //my Func is an

Re: [Flashcoders] RE: Grab Textfield Value from Javascript

2012-05-24 Thread Nathan Mynarcik
If you are not using swfObject to embed your flash, I highly recommend doing so. You should have no cross browser issues with it and the code provided/researched to achieve your objective. You can download it here: http://code.google.com/p/swfobject/downloads/list You can find the easy

Re: [Flashcoders] RE: Can Javascript Listen to Flash Events?

2012-05-22 Thread Nathan Mynarcik
Would allowscriptaccess=always work in this situation? Perhaps the issue is deeper than that? On Tue, May 22, 2012 at 12:15 PM, Paul Andrews p...@ipauland.com wrote: Just get a flash event handler to call a javascript function. You probably don't have the security setting for the project

Re: [Flashcoders] anyone heard of spongecell?

2011-12-15 Thread Nathan Mynarcik
I interviewed there over a year ago. Small little company that seemed to just be getting off the ground with a new technology that they were very passionate about and seemed like it was their edge in delivering ads to a more advanced targeted audience. I'd say they are worth going in and

Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Nathan Mynarcik
I've used pipwerks SCORM wrapper with an elearning course I did a couple years back. Just ExternalInterface calls and letting the javascript do the dirty work for me seemed best for me at the time. http://pipwerks.com/2008/02/10/flash-demos-for-scorm-actionscript-classes-now-available/ -hth

Re: [Flashcoders] Tween

2011-11-07 Thread Nathan Mynarcik
TweenLite with Bezier curve is what I would use. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash + jQuery

2011-11-04 Thread Nathan Mynarcik
Why not use ExternalInterface.call('functionName')? ExternalInterface Documentationhttp://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/external/ExternalInterface.html?filter_flash=cs5filter_flashplayer=10.2filter_air=2.6 ___

Re: [Flashcoders] ExternalInterface arguments?

2011-11-01 Thread Nathan Mynarcik
Do you have a reference of how you are using it? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Twitter and RSS feeds

2011-09-24 Thread Nathan Mynarcik
Can you read a list timeline? Perhaps putting everyone in a list and accessing that time line is a work around. On Sep 24, 2011 2:14 PM, John R. Sweeney Jr. jr.swee...@comcast.net wrote: Hello all, I can access the user_timeline of my account at Twitter, but cannot find away to get to the

Re: [Flashcoders] Spotify AS3 lib?

2011-08-11 Thread Nathan Mynarcik
Are you looking to read the Metadata? Or develop a full 3rd party program? I can across this http://developer.spotify.com/en/metadata-api/overview/ Perhaps it could help? Unfortunately it only allows search and lookup... ___ Flashcoders mailing list

Re: [Flashcoders] Incorrect XML from PHP to Flash

2011-07-20 Thread Nathan Mynarcik
Have you tried without wrapping it in a CDATA tag? Could this be converting the tags to ASCII? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Incorrect XML from PHP to Flash

2011-07-20 Thread Nathan Mynarcik
Sorry, I meant to say NOT wrapping. Problem is beyond that though. On Wed, Jul 20, 2011 at 10:58 AM, Henrik Andersson he...@henke37.cjb.netwrote: Did you even look at the code he posted? The code already does that! ___ Flashcoders mailing list

Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Nathan Mynarcik
Perhaps [code] xml..GroupNodeName [/code] should get the parent node for ya? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Emanuele Canavesi invited you to Dropbox

2011-03-30 Thread Nathan Mynarcik
Wow! Kudos to the spam to get more dropbox space. Touché! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] FDT, version control and project files

2011-03-11 Thread Nathan Mynarcik
Hey Alias, At my current place of work, we almost always use SVN to control our projects. Lately, we have started to noticed that the SVN plugin with FDT 3.5 is subpar and likes crap on us often. So some of the guys have started using CornerStone to handle the SVN stuff. I feel it's alot easier

Re: [Flashcoders] error mesg

2010-12-16 Thread Nathan Mynarcik
Take out the e:MouseEvent in your doSubmit function. On Dec 16, 2010 6:40 PM, DONALD TALCOTT dtalc...@mindspring.com wrote: I have the following code below. When I compile the swf,I get the following error; Line 187 1136: Incorrect number of arguments. Expected 1. Have been playing with this

Re: [Flashcoders] error mesg

2010-12-16 Thread Nathan Mynarcik
. On Dec 16, 2010, at 7:05 PM, Nathan Mynarcik wrote: Take out the e:MouseEvent in your doSubmit function. On Dec 16, 2010 6:40 PM, DONALD TALCOTT dtalc...@mindspring.com wrote: I have the following code below. When I compile the swf,I get the following error; Line 187 1136: Incorrect number

Re: [Flashcoders] development strategy for packages with

2010-12-13 Thread Nathan Mynarcik
It depends on how many files you want to manage. I think from a OOP perspective, you would want to have one fla and two doc classes. As long as it doesn't effect your timeline (or headaches) to get everything to work together. Nathan Mynarcik nat...@mynarcik.com www.mynarcik.com http

Re: [Flashcoders] stop caching

2010-12-09 Thread Nathan Mynarcik
You could add a new Date variable at the end of your swf like: var d:Date = new Date() var nc:String = ?nocache= + d.getTime(); startLoad(moive.swf+nc); Nathan Mynarcik nat...@mynarcik.com www.mynarcik.com http://www.mynarcik.com/feed/rss.xml http://www.twitter.com/NMynarcik http

Re: [Flashcoders] stop caching

2010-12-09 Thread Nathan Mynarcik
The method I described is how I have kept from caching. Wonder if there is a difference when testing locally vs. on a server. Nathan Mynarcik nat...@mynarcik.com www.mynarcik.com http://www.mynarcik.com/feed/rss.xml http://www.twitter.com/NMynarcik http://www.facebook.com/pages/Nathan-Mynarcik

Re: [Flashcoders] How to view and edit alternate content

2010-11-12 Thread Nathan Mynarcik
Or just change the name of the swf to embed in your swfObject code to test. If it can't find the swf, alternate content its shown. On Nov 12, 2010 5:22 AM, Glen Pike g...@engineeredarts.co.uk wrote: ___ Flashcoders mailing list

Re: [Flashcoders] Scrollbar Component

2010-11-10 Thread Nathan Mynarcik
Do an if statement checking to see if the textfields height is greater than the scrollbars height. If false, scrollbar.visible = false. Is that what you want to do? On Nov 10, 2010 8:51 AM, Lehr, Theodore ted_l...@federal.dell.com wrote: The scrollbar component seems like it should be failry

Re: [Flashcoders] Scrollbar Component

2010-11-10 Thread Nathan Mynarcik
Have you checked the component inspector and see if it is being linked to your dynamic TF? Nathan Mynarcik nat...@mynarcik.com www.mynarcik.com http://www.mynarcik.com/feed/rss.xml http://www.twitter.com/NMynarcik http://www.facebook.com/pages/Nathan-Mynarcik-Interactive-Web-Developer

Re: [Flashcoders] Scrollbar Component

2010-11-10 Thread Nathan Mynarcik
with added text *function updateScrollBar():void{ scrollBar.update(); if (scrollBar.enabled == false) { scrollBar.alpha = 0; } else { scrollBar.alpha = 100; } } Nathan Mynarcik nat...@mynarcik.com www.mynarcik.com http://www.mynarcik.com/feed/rss.xml http://www.twitter.com/NMynarcik http

Re: [Flashcoders] Removing movieClip from memory

2010-10-25 Thread Nathan Mynarcik
import flash.media.SoundMixer; SoundMixer.stopAll(); Nathan Mynarcik nat...@mynarcik.com www.mynarcik.com http://www.mynarcik.com/feed/rss.xml http://www.twitter.com/NMynarcik http://www.facebook.com/pages/Nathan-Mynarcik-Interactive-Web-Developer/265263144230 http://www.linkedin.com

Re: [Flashcoders] Converting fla to mov

2010-10-23 Thread Nathan Mynarcik
You could record it using www.screenr.com. It will record your screen for a max of 5 min and will allow you to download the vid as a mp4. On Oct 23, 2010 12:33 PM, natalia Vikhtinskaya natavi.m...@gmail.com wrote: What is the best solution if I want to convert swf to mp4 for broadcast video?

Re: [Flashcoders] Flash to Powerpoint

2010-10-22 Thread Nathan Mynarcik
You could always go the oldschool route of taking screenshots and pasting on the slide(s). On Fri, Oct 22, 2010 at 10:40 AM, Lehr, Theodore ted_l...@federal.dell.comwrote: Anyone have a link to a tutorial or something that gives siome guidance on how to create a powerpoint presentation

Re: [Flashcoders] CS5 where to put tween engines etc?

2010-09-30 Thread Nathan Mynarcik
This should work in CS5 as well: http://screenr.com/EK4 Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 30, 2010 at 2:09 PM, David Hunter davehunte...@hotmail.comwrote: Hi all, just upgraded from CS3 to CS5. Where do I put external classes and libraries like

Re: [Flashcoders] CS5 where to put tween engines etc?

2010-09-30 Thread Nathan Mynarcik
is the class you are trying to import inside the Flash_Packages/org folder? Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 30, 2010 at 2:39 PM, David Hunter davehunte...@hotmail.comwrote: thanks for all your prompt advice. i'm ok with keeping my own classes

Re: [Flashcoders] FLV audio doesn't stop

2010-09-29 Thread Nathan Mynarcik
I have encountered this as well with an e-Learning Flash Course I did last year. I read somewhere that unloadAndStop() was suppose to work when unloading the current swf/flv. I think this is a Flash 10 only method. Perhaps this might fix your issue? On Wed, Sep 29, 2010 at 10:02 PM,

Re: [Flashcoders] Apple changes their guidelines

2010-09-09 Thread Nathan Mynarcik
That link is not even a page long... Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 9, 2010 at 10:13 AM, Kurt Dommermuth k...@kurtdommermuth.comwrote: shit. I don't want to read their damn agreement. What the hell does this mean? On Thu, Sep 9, 2010 at 9

Re: [Flashcoders] Bounce Backs

2010-09-09 Thread Nathan Mynarcik
I have them automatically filtered as Spam and deleted before they hit my inbox. To answer your question, yes, I used to get them every time I posted. Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 9, 2010 at 10:38 AM, Bill S. lists...@fo.com wrote: Does

Re: [Flashcoders] Bounce Backs

2010-09-09 Thread Nathan Mynarcik
I agree. I think it has been brought up in the past. Not exactly sure what made of it last time it was discussed. Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 9, 2010 at 11:20 AM, Bill S. lists...@fo.com wrote: Thanks Nathan: I can filter them too

Re: [Flashcoders] Apple changes their guidelines

2010-09-09 Thread Nathan Mynarcik
I think (and hope) so. Looks like my new business expense actually calls for the upgrade to CS5 now. Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 9, 2010 at 11:10 AM, Merrill, Jason jason.merr...@bankofamerica.com wrote: Flash CS5 still ships with the iOS

Re: [Flashcoders] Apple changes their guidelines

2010-09-09 Thread Nathan Mynarcik
I understand. I have slight concerns about that statement too. And the fact that it's to Apple's discretion on what they really mean... For example: Can we not access XML data stored on the web from our Apps? Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 9

Re: [Flashcoders] TweenMax.allTo()

2010-09-09 Thread Nathan Mynarcik
What if you did it like this: function getRandY():Number{ var randY:Number = Math.random()*stage.stageHeight; return randY; } TweenMax.allTo(_blockViews, 1, { alpha:1, y:getRandY() }, .2); Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Sep 9, 2010 at 2:43 PM

Re: [Flashcoders] TweenMax.allTo()

2010-09-09 Thread Nathan Mynarcik
You could also do an onComplete call to a function that will add to a counter variable that you can then access as nameOfArray[counter] for the Y parameter. Of course, I have not used the allTo function. But this has worked for the regular to and from methods. Nathan Mynarcik nat

Re: RE: [Flashcoders] TweenMax.allTo()

2010-09-09 Thread Nathan Mynarcik
Said from the man himself. Great suggestion! On Sep 9, 2010 6:58 PM, Jack Doyle j...@greensock.com wrote: No need to use a Timer. Wouldn't it be as simple as this?: var targets:Array = [mc1, mc2, mc3]; var positions:Array = [0, 100, 200]; var stagger:Number = 0.2; for (var i:int = 0; i

Re: [Flashcoders] startDrag stopDrag problem

2010-09-08 Thread Nathan Mynarcik
Have your mouseUp listener on the stage and not on the scrubber. Or else, you would have to release on the scrubber for your function to be called. Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Wed, Sep 8, 2010 at 9:46 AM, natalia Vikhtinskaya natavi.m...@gmail.comwrote

Re: [Flashcoders] Link text indexes in a TextField

2010-08-30 Thread Nathan Mynarcik
You will have to cull out what you want: **Psuedo Code** var stuff:String = [a href=event:block1]dolor sit[/a]; stuff.substr(stuff.indexOf([a href=event:block1]), stuff.indexOf([/a])); Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Mon, Aug 30, 2010 at 1:46 PM, Andrew

Re: [Flashcoders] E4X question: counting number of subnodes

2010-08-19 Thread Nathan Mynarcik
of users in each game: **Pseudo Code** games.game(@id == 1).user.length(); Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Aug 19, 2010 at 1:18 PM, Glen Pike postmas...@glenpike.co.ukwrote: Hi, I am not sure you can count the sub-nodes without having some sort

Re: RE: [Flashcoders] image issue

2010-08-16 Thread Nathan Mynarcik
Is your image on exact pixels? Make sure the x and y are not on decimals but whole numbers. On Aug 16, 2010 8:49 AM, Lehr, Theodore ted_l...@federal.dell.com wrote: smoothing is off I tried to fool around with the jpeg quality in the publish settings - but that did not seem to impact it

Re: [Flashcoders] I have a drag and drop question.

2010-08-12 Thread Nathan Mynarcik
So, are you trying to get the name of the object that was dropped? or the name of what the object that was dropped landed on? Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Aug 12, 2010 at 8:36 AM, Cor c...@chello.nl wrote: I have a drag and drop question. In my

Re: [Flashcoders] onComplete Problem

2010-08-07 Thread Nathan Mynarcik
You should still be able to execute an onComplete as long as you are communicating between your scripts and the main. On Aug 7, 2010 9:35 AM, Steven Jacobs stevenjacobs...@yahoo.com wrote: Hi; I am building a script that imports two other scripts. I load them just fine and I load a couple of

Re: RE: [Flashcoders] drag issues

2010-08-05 Thread Nathan Mynarcik
Or you can do: e.currentTarget.parent.startDrag(); On Aug 5, 2010 9:24 AM, Cor c...@chello.nl wrote: mc.mouseChildren = false; -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun... Geen virus gevonden in het binnenkomende-bericht. Gecontroleerd

Re: [Flashcoders] Querying XML

2010-08-05 Thread Nathan Mynarcik
You would need to make a var that is an XMLList that pulls only the nodes that have the value a. Then you can trace out your XMLList and it will only be the ones you need. Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Aug 5, 2010 at 2:18 PM, Lehr, Theodore ted_l

Re: [Flashcoders] Querying XML

2010-08-05 Thread Nathan Mynarcik
. On Thu, Aug 5, 2010 at 11:47 AM, Nathan Mynarcik nat...@mynarcik.com wrote: You would need to make a var that is an XMLList that pulls only the nodes that have the value a. Then you can trace out your XMLList and it will only be the ones you need. Nathan Mynarcik nat...@mynarcik.com

Re: [Flashcoders] paper effect

2010-06-23 Thread Nathan Mynarcik
http://activeden.net/searches?term=Magazinetype=files http://activeden.net/searches?term=Magazinetype=files On Wed, Jun 23, 2010 at 12:30 PM, Gustavo Duenas gdue...@leftandrightsolutions.com wrote: Thanks where can I get this flipping book component Gustavo On Jun 22, 2010, at 6:53 PM,

Re: [Flashcoders] masking issues

2010-06-12 Thread Nathan Mynarcik
Whatever is added to the stage last by using addChild method, will be at the top. What is masking what? No where in your code do you have anything setup to be a mask. -Original Message- From: Paul Freedman p...@freedmania.com Date: Sat, 12 Jun 2010 18:55:14 To: Flash Coders

Re: [Flashcoders] AS3 newbie question: how can I correct this to makean object appear on the stage?

2010-06-11 Thread Nathan Mynarcik
First you are not importing your mybox class correctly. Second, the external class should start with a capital (MyBoxx.as). Third, your declaration of the instance is incorrect for how you have it setup. import myBoxxflash; var myBoxx:MyBoxx = new MyBoxx(); addChild(myBoxx); Your external

Re: [Flashcoders] AS3 newbie question: how can I correct this to makean object appear on the stage?

2010-06-11 Thread Nathan Mynarcik
I would also suggest posting only to one mailing list first. This would help ghost threads from being created. Besides, I think most of us are subscribed to both and both lists have many helpful people on them to provide you solutions. Good luck. -Original Message- From: Paul Freedman

Re: [Flashcoders] swf compressing

2010-06-10 Thread Nathan Mynarcik
Think there might be some JSFL files that will compress the all the images in the FLA. Just will have to open each FLA and then run it. Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com On Thu, Jun 10, 2010 at 3:48 PM, Latcho spamtha...@gmail.com wrote: Hi friends, I have

Re: [Flashcoders] buttonMode and textfield

2010-06-01 Thread Nathan Mynarcik
Put an invisible box over the text and have the eventlistener added to that instead of the TF. On Tue, Jun 1, 2010 at 1:10 PM, Lehr, Theodore ted_l...@federal.dell.comwrote: Is there anyway to make it so the whole area of a textfield will register if the buttonMode is set to true... as it

Re: [Flashcoders] ticker

2010-05-28 Thread Nathan Mynarcik
@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -- Nathan Mynarcik nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] Drop shadows and blurs how heavy on the processor?

2010-05-22 Thread Nathan Mynarcik
If you are not scaling the items, PNGs might work. However, they might bloat your swf size. Might be a trial and error thing that you would want to try and test. Not sure how bad blurs and glows/shadows are on the processor. I would probably still go the vector route. On Sat, May 22, 2010 at

Re: [Flashcoders] Drop shadows and blurs how heavy on the processor?

2010-05-22 Thread Nathan Mynarcik
. so I need to satisfy my designer with his needs and not over process things. Fahim Akhter Game Developer | White Rabbit Studios | http://apps.facebook.com/feline-frenzy/ On Sat, May 22, 2010 at 8:31 PM, Nathan Mynarcik nat...@mynarcik.comwrote: If you are not scaling the items, PNGs might work

Re: [Flashcoders] Line break in dynamic text imported from xml

2010-05-19 Thread Nathan Mynarcik
I believe you can use \n in your feedback string and it makes a new line. On Wed, May 19, 2010 at 10:56 AM, Paul Jinks p...@pauljinks.co.uk wrote: It's been a long time since I've done any coding. I think this is pretty straightforward but it has me beat. Can you help? I'm working on a

Re: [Flashcoders] Test

2010-05-14 Thread Nathan Mynarcik
Yup --Original Message-- From: Elia Morlin Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] Test Sent: May 14, 2010 4:58 PM Are my messages coming through? Thanks ___

Re: [Flashcoders] How to hault execution and raise a error flag

2010-04-29 Thread Nathan Mynarcik
You could try in your logic to use a case switch. Then break on error. --Original Message-- From: Fahim Akhter Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] How to hault execution and raise a error flag Sent: Apr

Re: [Flashcoders] passing obj name

2010-04-28 Thread Nathan Mynarcik
Create a variable to store the item to shake: var itemToShake:MovieClip; flower.addEventListener(MouseEvent.ROLL_OVER,jiggle); function jiggle(e:Event):void { var timer:Timer=new Timer(2,100); timer.addEventListener(TimerEvent.TIMER,shakeBtn); timer.start(); itemToShake =

Re: [Flashcoders] arranging

2010-04-28 Thread Nathan Mynarcik
addChild(mc) normally brings them to the top. --Original Message-- From: Henrik Andersson Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: Re: [Flashcoders] arranging Sent: Apr 28, 2010 12:13 PM Lehr, Theodore wrote: If I have

Re: [Flashcoders] arranging

2010-04-28 Thread Nathan Mynarcik
-boun...@chattyfig.figleaf.com] On Behalf Of Nathan Mynarcik [nat...@mynarcik.com] Sent: Wednesday, April 28, 2010 1:33 PM To: Flash Coders List Subject: Re: [Flashcoders] arranging addChild(mc) normally brings them to the top. --Original Message-- From: Henrik Andersson Sender: flashcoders

Re: [Flashcoders] arranging

2010-04-28 Thread Nathan Mynarcik
index:int; index = getChildIndex(mc); setChildIndex(mc, index+1); } -Nathan Quoting Nathan Mynarcik nat...@mynarcik.com: Will getChildIndex and setChildIndex not work either for static objects? -Original Message- From: Lehr, Theodore ted_l...@federal.dell.com Date

Re: [Flashcoders] arranging

2010-04-28 Thread Nathan Mynarcik
[flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nathan Mynarcik [nat...@mynarcik.com] Sent: Wednesday, April 28, 2010 1:51 PM To: Flash Coders List Subject: Re: [Flashcoders] arranging Will getChildIndex and setChildIndex not work either for static objects? -Original Message- From

Re: [Flashcoders] arranging

2010-04-28 Thread Nathan Mynarcik
: flashcoders-boun...@chattyfig.figleaf.com [ flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nathan Mynarcik [ nat...@mynarcik.com] Sent: Wednesday, April 28, 2010 1:51 PM To: Flash Coders List Subject: Re: [Flashcoders] arranging Will getChildIndex and setChildIndex not work either

RE: [Flashcoders] Changing angle for better arrangement in circle

2010-04-22 Thread Nathan Mynarcik
in circle Red dots I put to show points where items are attached. As you see space between points are equal. Some items are scaled and space between them is not equal. That what I try to change. Space should be equal between each item. 2010/4/21 Nathan Mynarcik nat...@mynarcik.com: If you want

Re: [Flashcoders] Changing angle for better arrangement in circle

2010-04-21 Thread Nathan Mynarcik
If you want the dots to be on top of all the items, the dots need to be in separate MCs of the items and need to be added to the stage after all the other item MCs have been added. Quoting natalia Vikhtinskaya natavi.m...@gmail.com: Here is a result

Re: [Flashcoders] Flash and iThingammybob

2010-04-20 Thread Nathan Mynarcik
developer agreements? I'm just curious about the potential use of the conversion for prototypes or niche uses. Paul ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik

Re: [Flashcoders] Flash and iThingammybob

2010-04-20 Thread Nathan Mynarcik
Come to think of it, I wonder if you could just make a website for support and download of your app. Sell it on the site via Paypal or a shopping cart. Can Apple prevent developers from doing this? Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com

Re: [Flashcoders] Flash Google

2010-04-20 Thread Nathan Mynarcik
This is true. If for some reason google thinks you are trying to advance your rank by wrongful ways (to their discretion) you get flagged. Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: tom rhodes tom.rho...@gmail.com

Re: [Flashcoders] NoCache XML

2010-04-05 Thread Nathan Mynarcik
I know I used the meta tags to control cache and that still didn't fix. I'm interested to see if this is any different. Please share your findings. Thanks, Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: Karl

RE: [Flashcoders] NoCache XML

2010-04-05 Thread Nathan Mynarcik
, but if it prevents every browser from caching, so be it. Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl

RE: [Flashcoders] NoCache XML

2010-03-31 Thread Nathan Mynarcik
Figured out this issue. The NoCache method worked fine. I was trying to use the information before it was set in it's variables. Thanks Steven and others for their replies! Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message

Re: [Flashcoders] What good is a Controller?

2010-03-30 Thread Nathan Mynarcik
It actually is easier than you think. You just have to walk the plank and jump. I did, and never looked back. Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: Karl DeSaulniers k...@designdrumm.com Date: Tue, 30 Mar

Re: [Flashcoders] Recursive and e:Event

2010-03-29 Thread Nathan Mynarcik
ixml is not an e:Event I need to find a way to get around this can I call the function without e:Event? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik

Re: [Flashcoders] Process issue

2010-03-29 Thread Nathan Mynarcik
Why not call your next function inside the buildXML() function after it is all done? Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: Lehr, Theodore ted_l...@federal.dell.com Date: Mon, 29 Mar 2010 08:56:44 To: Flash

Re: [Flashcoders] Error #2032 Stream Error

2010-03-29 Thread Nathan Mynarcik
? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list

RE: [Flashcoders] NoCache XML

2010-03-28 Thread Nathan Mynarcik
in -1 days so nothing gets cached from the site. Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers

Re: [Flashcoders] Events can be tedious, general thoughts on best practice?

2010-03-26 Thread Nathan Mynarcik
www.lynda.com/home/DisplayCourse.aspx?lpk2=759 Chapter 4 Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: Cor c...@chello.nl Date: Fri, 26 Mar 2010 17:10:34 To: 'Flash Coders List'flashcoders@chattyfig.figleaf.com

[Flashcoders] NoCache XML

2010-03-26 Thread Nathan Mynarcik
to prevent visitors from sometimes having to refresh until the xml gets loaded correctly? Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] NoCache XML

2010-03-26 Thread Nathan Mynarcik
That's similar to what I am doing. I know for a fact that the url doesn't already have a ? in it. I have no clue why on some visits, the colors and other xml data is not pulled. Then on a refresh it pulls them. --Original Message-- From: Steven Sacks To: Nathan Mynarcik To: Flash

Re: [Flashcoders] NoCache XML

2010-03-26 Thread Nathan Mynarcik
To: Nathan Mynarcik To: Flash Coders List Subject: Re: [Flashcoders] NoCache XML Sent: Mar 26, 2010 8:36 PM Safari doesn't honor nocache. Safari is a jerk. Are you using Safari? On 3/26/2010 3:35 PM, Nathan Mynarcik wrote: That's similar to what I am doing. I know for a fact that the url doesn't

Re: [Flashcoders] faster work flows?

2010-03-15 Thread Nathan Mynarcik
? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list

Re: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread Nathan Mynarcik
-- Kenneth Kawamoto http://www.materiaprima.co.uk/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525

Re: [Flashcoders] Apparently Doesn't Check Cache

2010-03-10 Thread Nathan Mynarcik
with a date element so flash would constantly think its a new XML doc to load everytime. Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com -Original Message- From: mark.jonk...@comcast.net Date: Wed, 10 Mar 2010 13:46:08 To: Flash Coders

Re: [Flashcoders] Passing Call To Child

2010-03-10 Thread Nathan Mynarcik
? TIA, Susan ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com

Re: [Flashcoders] OOP Books (OT)

2010-03-10 Thread Nathan Mynarcik
Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] calender component

2010-03-06 Thread Nathan Mynarcik
It's not free but... http://www.flabell.com/flash/Events-Tour-Calendar-271 -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M Sent: Saturday, March 06, 2010 1:00 AM To:

Re: [Flashcoders] addChildAt

2010-03-05 Thread Nathan Mynarcik
); ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com

Re: [Flashcoders] Draw Outline Slowly

2010-03-03 Thread Nathan Mynarcik
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list

Re: [Flashcoders] Re: Pop up window locally

2010-03-03 Thread Nathan Mynarcik
list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] web video

2010-03-02 Thread Nathan Mynarcik
there is a tutorial pointing to that in the internet? Regards, Gus ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat

Re: [Flashcoders] addEventListener Problem

2010-03-01 Thread Nathan Mynarcik
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com

Re: [Flashcoders] Preloader, Pt. 2

2010-02-26 Thread Nathan Mynarcik
the cotton-pickin preloader to cooperate?! TIA, V ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525

Re: [Flashcoders] corporate history timeline examples

2010-02-26 Thread Nathan Mynarcik
@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat

Re: [Flashcoders] Link Around a Bitmap

2010-02-26 Thread Nathan Mynarcik
/listinfo/flashcoders Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com 254.749.2525 www.mynarcik.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Link Around a Bitmap

2010-02-26 Thread Nathan Mynarcik
Md = mc --Original Message-- From: Nathan Mynarcik Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Nathan Mynarcik ReplyTo: Flash Coders List Subject: Re: [Flashcoders] Link Around a Bitmap Sent: Feb 26, 2010 1:25 PM Put your bitmap in a movieclip

Re: [Flashcoders] Finding and Removing a Sprite

2010-02-23 Thread Nathan Mynarcik
You could try root.removeChild(mysprite); Or you can try removeChild(getChildByName(mySprite)); Where is your code that is calling this method located? External Doc Class? On the main timeline? Inside or on a movieclip? Nathan Mynarcik Interactive Web Developer nat...@mynarcik.com

  1   2   >