User matt lohkamp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T04:35:21Z http://stackoverflow.com/feeds/user/14026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245420/dimensions-of-loaded-swfs-stage 2 dimensions of loaded swf's stage matt lohkamp 2008-10-29T00:45:25Z 2009-10-21T11:36:28Z <p>Here's the situation - I've got a shell that loads an external .swf. Now, that .swf is 800x600, but it's an animation piece, and there are elements that extends off the stage. When I load the .swf into the shell and call its width attribute, it returns 1200 - because it's including the elements that break out of the stage.</p> <p>This isn't what I want - ideally, there would be two properties, one to return the 'calculated width' and one to return the 'default width'. Do these properties exist, and if not, what's the best workaround?</p> http://stackoverflow.com/questions/1101802/as3-streamlining-a-universal-loader 0 AS3: streamlining a 'universal loader' matt lohkamp 2009-07-09T04:09:33Z 2009-07-09T11:14:59Z <p>In Flash Actionscript 3, when you need to load text, you use a class called 'URLLoader', and when you need to load an image (or .swf) you use a class called 'Loader.' As far as I know, loading a .bmp with URLLoader is as useless as loading an .xml into a Loader - it doesn't compute.</p> <p>I'm making a class that handles a queue of external assets to be loaded - but aside from splitting the target url to check out the file extension, I can't figure out a good way to tell if each URL requires a URLLoader or a Loader. At any rate, it's imaginable that a .php url might return either an image or a document - so there's no way to count on the file names to dictate the right type of loader class to use.</p> <p>Any ideas on how to reliably detect the right class for the job on a URL-by-URL basis?</p> http://stackoverflow.com/questions/1102180/as3-loader-ignoring-png-transparency 0 AS3 Loader ignoring .png transparency matt lohkamp 2009-07-09T06:37:43Z 2009-07-09T07:12:17Z <p>In Flash CS4, open a new document, change the background colour to something recognizeable (like magenta) and add the following code:</p> <pre><code>var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, function(e:Event){addChild(e.target.content);}); loader.load(new URLRequest('newsnakelub8.png')); </code></pre> <p>... replacing the .png filename with any you happen to have handy, I grabbed <a href="http://img329.imageshack.us/img329/5742/newsnakelub8.png" rel="nofollow">this one</a>. Compile the .swf, and join me in a sigh of disapointment - the normally transparent .png now has a white background, not allowing the flash background colour to show through.</p> <p>Is there a magical 'treatAsPNG24' property that I'm missing somewhere?</p> http://stackoverflow.com/questions/441185/avoid-beep-sound-when-enter-keypress-in-a-textbox/441520#441520 2 Answer by matt lohkamp for Avoid Beep sound when enter keypress in a textbox matt lohkamp 2009-01-14T01:00:59Z 2009-01-14T01:00:59Z <p>If it's related to the browser that your audience is using, then they're used to it happening, because it happens on every other site besides yours. I'd say it's not worth worrying about - kind of like people with JavaScript turned off. They know they've got it turned off, and they're accustomed to sites lacking certain functionality as a result. You can't force them to turn it on, and you can't force them to turn the sound thing off. It's one of those experience comprises you've got to accept in web apps.</p> http://stackoverflow.com/questions/361299/should-all-programmer-be-testers-and-vice-versa/361387#361387 -1 Answer by matt lohkamp for Should all programmer be testers and vice versa matt lohkamp 2008-12-11T23:16:13Z 2008-12-11T23:16:13Z <p>no - programmers should not (and in many cases can not and have no interest in being) testers, and while it's good for testers to have 'conversational' programming skills, it's not necessary for them to be proficient.</p> <p>The attention to detail and sort of perfectionist attitude required to be a good tester is something that certain people have a knack for - just like certain people have the problem-solving mindset required to be a good programmer. They're different types of people - you can't make them into each other.</p> <p>Finally, even if you were hellbent on moving their job descriptions closer together, don't make the programmers who made the project be the ones to test it - they've seen it so many times during development that they've lost all perspective, and will easily overlook problems since they're so used to seeing things a certain way. This happened all the time at the last agency I worked at. Get some fresh eyes on the project.</p> http://stackoverflow.com/questions/312877/popups-from-embedded-swf-cross-browser 1 popups from embedded .swf cross-browser matt lohkamp 2008-11-23T19:54:25Z 2008-12-04T21:22:05Z <p>Situation: you've got a .swf embedded in an html page, and when you click on something in the .swf, it needs to popup a chromeless window. Normally this would be fairly easy - but consider Safari, which completely disables all 'window.open' functionality while its popup-blocker is enabled (it makes an exception if the function is triggered onclick, but it doesn't count clicks in flash). How can you create something which gracefully degrades (provides an alternate and roughly equivalent experience) for browsers that won't execute window.open?</p> <p>(note: this is AS3, and Safari 3 for PC or Mac we're talking about - but more broadly, any browser that doesn't support or refuses to allow the javascript window.open function.)</p> <p><strong>edit</strong>: seriously, only one answer? I'm disapointed...</p> <p>Edit # 2: I figured it out myself (the div overlay seemed too crazy for the project I'm working on) ... check out <a href="http://code.google.com/p/popupfromflash/" rel="nofollow">code.google.com/p/popupfromflash</a> - it attempts to use ExternalInterface to setup a window.open function, and if that fails (particularly in Safari) it calls back into flash and prompts it to do a navigateToURL to pop up the window normally (instead of chromlessly)</p> http://stackoverflow.com/questions/312880/actionscript3-to-javascript-communication-best-practices 4 Actionscript3 to JavaScript communication: best practices matt lohkamp 2008-11-23T20:01:34Z 2008-12-01T15:25:47Z <p>On a more abstract level then <a href="http://stackoverflow.com/questions/299729/javascript-to-flash-communication">a previous question</a>, in my experience there are 3 ways to call a javascript function on an html page from an embedded .swf using AS3: ExternalInterface, fscommand, and navigateToURL.</p> <p>Let's compare and contrast these methods (and maybe others I haven't listed) and talk about the pros and cons of each - right now, ExternalInterface <em>seems</em> like the way to go in terms of flexibility, but is it right for all situations? Are there concrete benefits in terms of execution speed or anything like that? I'm curious - what do we think?</p> http://stackoverflow.com/questions/311051/from-as2-to-as3-loading-external-images/312894#312894 1 Answer by matt lohkamp for From AS2 to AS3 loading external images matt lohkamp 2008-11-23T20:10:20Z 2008-11-23T20:10:20Z <p>I think you're making things a little too complicated - here's what you need to load a single image:</p> <pre><code>import flash.display.Loader; import flash.event.Event; import flash.net.URLRequest; var imageLoader:Loader = new Loader(); imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, function(e:Event){ // e.target.content is the newly-loaded image, feel free to addChild it where ever it needs to go... }); imageLoader.load(new URLRequest('yourImage.jpg')); </code></pre> <p>... can you extrapolate from there to loading a list of images? Run that code in for-loop, each time assign a different variable (place in an array, perhaps, or property of an object) to your newly loaded e.target.content so you can access it outside of that 'onComplete'-type function.</p> http://stackoverflow.com/questions/224933/runtime-font-loading-in-flash-as3 1 runtime font loading in Flash/AS3 matt lohkamp 2008-10-22T08:54:44Z 2008-10-29T01:06:13Z <p>Imagine you're creating a presentation that will be translated into a dozen different languages, including ones with non-latin characters (Chinese, for instance). The client's branding style guide dictates that certain fonts are acceptable for certain languages. The content itself is required to be externalized, so that the text can be replaced without ever opening a .fla, or re-saving a graphic.</p> <p>So we're talking dynamic TextField s, populated from XML, with the font swapped out to accommodate the viewer's locale - what's the most painless way to dynamically load only the fonts required (regardless of the filesize), and apply them as necessary? I'm looking for solutions using <strong>Flash only, not Flex</strong>.</p> <p><strong>EDIT -</strong> I figured it out, but I can't designate an answer I supplied as 'accepted' - if someone would just re-submit my answer below, I'll accept it, so this gets closed - or alternatively, vote up my answer until they add that feature. Thanks!</p> http://stackoverflow.com/questions/224933/runtime-font-loading-in-flash-as3/245405#245405 1 Answer by matt lohkamp for runtime font loading in Flash/AS3 matt lohkamp 2008-10-29T00:40:21Z 2008-10-29T00:40:21Z <p>I'm totally disappointed that no-one knew about this - oh well. I finally found someone who'd written a little class to handle the font-loading process, and gave directions on how to create the .swfs for it to load:</p> <p><a href="http://www.mokisystems.com/blog/flash-as3-loading-fonts/" rel="nofollow">Flash AS3 Loading Fonts</a></p> <p>Hopefully other people'll find this helpful - it turned out to be the magic bullet for my problems.</p> http://stackoverflow.com/questions/196027/is-there-a-more-accurate-way-to-create-a-javascript-timer-than-settimeout/196250#196250 1 Answer by matt lohkamp for Is there a more accurate way to create a Javascript timer than setTimeout? matt lohkamp 2008-10-12T23:04:25Z 2008-10-12T23:04:25Z <p>shog9's answer is pretty much what I'd say, although I'd add the following about UI animation/events:</p> <p>If you've got a box that's supposed to slide onto the screen, expand downwards, then fade in its contents, don't try to make all three events separate with delays timed to make them fire one after another - use callbacks, so once the first event is done sliding it calls the expander, once that's done it calls the fader. jQuery can do it easily, and I'm sure other libraries can as well.</p> http://stackoverflow.com/questions/190805/how-does-one-go-about-developer-scalability-and-code-reuse-in-flash/195264#195264 1 Answer by matt lohkamp for How does one go about developer scalability and code-reuse in Flash? matt lohkamp 2008-10-12T09:08:37Z 2008-10-12T09:08:37Z <p>Antti has a bunch of good ones, externalizing code and appointing a leader in particular, I'd just add that when you're picking different tasks for everyone, tell people to code their piece as a modular class that provides the functionality you'll need - that'll make the code more reuseable in the future, and make integration smoother as well.</p> http://stackoverflow.com/questions/68444/combinging-swfs-and-other-resources-into-a-single-swf-file/195260#195260 0 Answer by matt lohkamp for Combinging SWFs and other resources into a single SWF file matt lohkamp 2008-10-12T09:05:21Z 2008-10-12T09:05:21Z <p>using flex to easily embed them is a good way to go, and if that doesn't sound like fun, think of it this way - XML and CSS data is really just a big long string - so hard-code the string data as a variable inside of your project, and use it as normal.</p> http://stackoverflow.com/questions/193810/how-can-i-upload-files-without-using-an-html-form/193865#193865 0 Answer by matt lohkamp for How can I upload files without using an HTML <form>? matt lohkamp 2008-10-11T08:44:38Z 2008-10-11T08:44:38Z <p>Have you check out the fieldset element? Why not wrap your input elements in that, then use jQuery to dynamically assign 'submit' functionality, as opposed to trying to attach it to the overall form element?</p> http://stackoverflow.com/questions/193677/what-ideas-do-you-think-can-it-be-applied-to-this-gui-to-make-it-more-effective-f/193822#193822 0 Answer by matt lohkamp for What ideas do you think can it be applied to this GUI to make it more effective for real people usage? matt lohkamp 2008-10-11T07:47:28Z 2008-10-11T07:47:28Z <p>I'd try and detect their locale through browser/ISP meta data if I could, then default to that - but most people expect an alphabeticly-ordered list of languages. What if they're looking for Serbian, but after they hit 'S' once they get spanish, with no Serbian in sight? They might assume that there is no Serbian, since it's not where they expect it (before spanish) and leave. That'd be bad.</p> http://stackoverflow.com/questions/52344/how-to-detect-using-aspx-if-javascript-is-enabled-on-browser/171787#171787 0 Answer by matt lohkamp for How to detect (using .ASPX) if Javascript is enabled on browser matt lohkamp 2008-10-05T10:14:04Z 2008-10-05T10:14:04Z <p>To be honest, you shouldn't need to use a server-side language to detect javascript, and furthermore spammers are not necessarily not running javascript. (sorry about the double-negative) Your objective is good, but your approach is wrong - implementing a CAPTCHA, as suggested by a few of our peers, would be a great way to handle this.</p> http://stackoverflow.com/questions/171630/greasemonkey-love-it-or-hate-it/171783#171783 0 Answer by matt lohkamp for Greasemonkey: love it or hate it? matt lohkamp 2008-10-05T10:09:03Z 2008-10-05T10:09:03Z <p>We've got accept the reality of our platform: once your website is in the (computer) memory of the viewer, they're able to do whatever they want with it, without your permission. Popular sites that try to dictate their own viewing terms to their audience often suffer immediate and angry backlash - instead of trying to do it your way, let the users do what they want, embrace it, and you'll end up providing a better service, which your users will appreciate and reward.</p> http://stackoverflow.com/questions/165595/running-a-swf-from-file-without-having-the-user-change-their-flash-player-sec/166219#166219 0 Answer by matt lohkamp for Running a SWF from file:/// without having the user change their Flash Player security settings... matt lohkamp 2008-10-03T10:21:20Z 2008-10-03T10:21:20Z <p>I hesitate to say "you can't do it", but in my experience, there's no way to do what you're describing. Anyone, if I'm wrong, I'd love to know the trick.</p> http://stackoverflow.com/questions/155615/is-it-reasonable-to-assume-my-visitors-have-javascript-enabled/156648#156648 0 Answer by matt lohkamp for Is it reasonable to assume my visitors have javascript enabled? matt lohkamp 2008-10-01T08:03:38Z 2008-10-01T08:03:38Z <p>One interesting point to consider is that as a web developer you have a social responsibility to push technology forward - and by using things like AJAX, you increase exposure and potentially rate of adoption along with it. The only thing that should stop you from using the tech to its fullest extent is money - if you won't make the money that you need because people will have trouble viewing the material, you've got to reconsider.</p> http://stackoverflow.com/questions/152846/what-features-distinguish-flex-from-dhtml/155481#155481 0 Answer by matt lohkamp for What features distinguish Flex from DHTML? matt lohkamp 2008-09-30T22:56:33Z 2008-09-30T22:56:33Z <p>What you're talking about is Flash versus Javascript. Flex is Flash, DHTML is Javascript.</p> <p>Flex allows for rapid prototyping, an alternate IDE for building Flash .swf s, and fits nicely into Air - Javascript only runs in browsers, includes less animation support by default (although there are plenty of well-established libraries that provide that functionality) and doesn't require a plugin to work.</p> http://stackoverflow.com/questions/148251/css-centering-tricks 8 CSS centering tricks matt lohkamp 2008-09-29T10:55:07Z 2008-09-30T03:39:42Z <p>My favorite equation for centering an xhtml element using only CSS is as follows:</p> <pre><code>display:block; position:absolute; width: _insert width here_; left:50%; margin-left: _insert width divided by two &amp; multiplied by negative one here_ </code></pre> <p>There's also the simpler margin:auto method in browsers that support it. Does anyone else have tricky ways to force content to display centered in its container? (bonus points for vertical centering)</p> <p>edit - oops, forgot the 'negative' part of one in the margin-left. fixed.</p> http://stackoverflow.com/questions/135047/interview-questions-for-flash-developers/136556#136556 4 Answer by matt lohkamp for Interview questions for Flash developers matt lohkamp 2008-09-25T22:20:01Z 2008-09-25T22:20:01Z <p>Honestly, if you yourself aren't a flash developer, I'd caution against interviewing a potential Flash developer, unless you're only doing it to get a sense of their character (as opposed to their skill level). Experience in working with the technology is going to give you a much more realistic perspective - blindly asking questions that other people told you are good ones to ask will get you into trouble.</p> <p>That said, if you can find someone you know to sit in on the interview with you and provide evaluation from a technical standpoint, here's a few things I'd remind them to ask:</p> <ul> <li>object oriented programming</li> <li>loading external media</li> <li>audio &amp; video playback (also maybe volume control / mixing)</li> <li>event listeners</li> <li>transitions / animation</li> <li>filter / sort algorithms</li> <li>common UI elements: scrollbar, form elements, drop-down menu, rollover states, drag-and-drop, etc.</li> </ul> <p>Those are sort of generally useful areas of knowlege, but the true test of profficiency is a practical test - "write a class that meets these requirements", or "this code isn't working, find out why and fix it" are good ways to immediately gain insight into the candidate's work (and thought) process.</p> <p><strong>Most importantly:</strong> even if the interviewee is short on specific knowlege or experience of the subjects you settle on, it's better to get someone who is a fast learner and will easily comprehend new concepts then to get someone who might know a lot now, but will resist learning new stuff.</p> http://stackoverflow.com/questions/124002/why-is-software-support-for-bidirectional-text-hebrew-arabic-so-poor/124707#124707 1 Answer by matt lohkamp for Why is software support for Bidirectional text (Hebrew,Arabic) so poor? matt lohkamp 2008-09-24T00:22:39Z 2008-09-24T00:22:39Z <p>I know ltr text in Flash is a pain in the ass - I've heard it's easier for web pages, although you've got to be careful how you process strings so they don't get mixed up.</p> <p>This is an awfully subjective question, by the way, one that's impossible to find a 'solution' for - are you sure this is the right place to ask it?</p> http://stackoverflow.com/questions/124671/picking-a-random-element-from-a-set/124699#124699 2 Answer by matt lohkamp for Picking a random element from a set matt lohkamp 2008-09-24T00:18:46Z 2008-09-24T00:18:46Z <p>Can't you just get the size/length of the set/array, generate a random number between 0 and the size/length, then call the element whose index matches that number? HashSet has a .size() method, I'm pretty sure.</p> <p>In psuedocode -</p> <pre><code>function randFromSet(target){ var targetLength:uint = target.length() var randomIndex:uint = random(0,targetLength); return target[randomIndex]; } </code></pre> http://stackoverflow.com/questions/117776/loading-an-existing-database-into-www-sql-designer/120123#120123 1 Answer by matt lohkamp for Loading an existing database into WWW SQL Designer? matt lohkamp 2008-09-23T09:51:35Z 2008-09-23T09:51:35Z <p>Can you just export the sql query that builds your existing tables, and run that in WWW SQL Designer? Most database management software has that option...</p> http://stackoverflow.com/questions/119694/replacing-strings-inside-swf/120097#120097 0 Answer by matt lohkamp for Replacing strings inside SWF matt lohkamp 2008-09-23T09:45:15Z 2008-09-23T09:45:15Z <p>tricky - it might not be any easier, but you could load the 'locked' swf into one you control, then spider through its objects until you hit TextBox, using some for...in loops - it'd be a long, arduous process to map them out then change them, especially if the previous developer didn't name things in a helpful way, but if it's a fairly simple .swf then it might be too bad...</p> <p>Also, there's a mac-only utility for decompiling swfs that I remember a coworker swearing by, but I don't recall the name... anybody?</p> http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113907#113907 1 Answer by matt lohkamp for Which CSS tag creates a box like this with title? matt lohkamp 2008-09-22T09:04:26Z 2008-09-22T09:04:26Z <p>I can't believe no one's correcting your common mistake - the <strong>tag</strong> doesn't look like anything, it's just markup. You can make any combination of tags look like the picture you showed - a header and a paragraph, a term and definition... whatever.</p> http://stackoverflow.com/questions/110533/what-are-jquerys-limitations/110633#110633 2 Answer by matt lohkamp for What are JQuery's limitations? matt lohkamp 2008-09-21T09:32:16Z 2008-09-21T09:32:16Z <p>jQuery is great - it can do whatever javascript can do, but quicker, and in less code. Its only limitations are the ones inherent in javascript as a client-side scripting language. Like any tool, it's possible to missuse, but unless your scripting needs are profoundly basic there's almost no reason NOT to use it.</p> http://stackoverflow.com/questions/109580/how-do-i-access-cookies-within-flash/110626#110626 0 Answer by matt lohkamp for How do I access cookies within Flash? matt lohkamp 2008-09-21T09:29:19Z 2008-09-21T09:29:19Z <p>cookies are available to javascript through document.cookie - try using flash's getURL to call a javascript function.</p> <p><code>getURL('javascript:document.cookie = "varname=varvalue; expires=Thu, 2 Aug 2001 20:47:11 UTC; path="');</code></p> http://stackoverflow.com/questions/107800/can-flash-save-content-without-server-side-help 3 Can Flash save content without server-side help? matt lohkamp 2008-09-20T10:06:59Z 2008-09-20T18:44:54Z <p>As far as I know, Flash has to pass info off to another external process in order to save files - POSTing to PHP or talking to an executable, right? But every once in a while I hear rumors that Flash is able to open a file, make changes, then save/write those changes, all on its own - is it possible?</p> http://stackoverflow.com/questions/1101802/as3-streamlining-a-universal-loader/1103247#1103247 Comment by matt lohkamp on AS3: streamlining a 'universal loader' matt lohkamp 2009-07-10T07:13:40Z 2009-07-10T07:13:40Z Thanks for the in-depth answer! I didn't know the security sandbox angle, and the idea of looking at the file's opening sequence is intriguing... you might be right, however, in the end it's easier for me to give them the option to manually specify type then it is for me to try to take care of it for them. http://stackoverflow.com/questions/148251/css-centering-tricks/148374#148374 Comment by matt lohkamp on CSS centering tricks matt lohkamp 2009-07-09T07:25:09Z 2009-07-09T07:25:09Z no, like: &lt;div style=&quot;margin: 0 auto;&quot;&gt;&lt;/div&gt; http://stackoverflow.com/questions/1102180/as3-loader-ignoring-png-transparency/1102249#1102249 Comment by matt lohkamp on AS3 Loader ignoring .png transparency matt lohkamp 2009-07-09T07:21:27Z 2009-07-09T07:21:27Z I was all ready to get defensive and be like, &quot;Uh, yeah, of course it does,&quot; but you're right, it really doesn't. I feel dumb. http://stackoverflow.com/questions/1102180/as3-loader-ignoring-png-transparency Comment by matt lohkamp on AS3 Loader ignoring .png transparency matt lohkamp 2009-07-09T07:20:33Z 2009-07-09T07:20:33Z WOW, that's more than a little embarrassing - in my defense, the image that appeared in the preview pane in explorer showed a transparent background - but you're right, I should've opened it in photoshop to make sure. Well, I'm relieved that it's nothing more complicated than that! http://stackoverflow.com/questions/1101802/as3-streamlining-a-universal-loader/1102115#1102115 Comment by matt lohkamp on AS3: streamlining a 'universal loader' matt lohkamp 2009-07-09T06:27:59Z 2009-07-09T06:27:59Z good link - looks like it attempts to auto-detect the type based on the URL, but allows the user to pass in an additional argument to bypass this default behavior. I like that idea. http://stackoverflow.com/questions/1101802/as3-streamlining-a-universal-loader/1101838#1101838 Comment by matt lohkamp on AS3: streamlining a 'universal loader' matt lohkamp 2009-07-09T05:02:26Z 2009-07-09T05:02:26Z My thinking is more or less along the same lines - but I'm not sure I want to make them specify whether the target is essentially text or binary data. What if that target url is coming from another source, and they have no control over it? What I'm really after is figuring out a way to automatically detect the appropriate loader type. http://stackoverflow.com/questions/474939/do-i-have-to-use-javascript/475056#475056 Comment by matt lohkamp on Do I have to use Javascript? matt lohkamp 2009-01-24T02:41:12Z 2009-01-24T02:41:12Z making the client's computer do the work instead of the server is a great point, one that I would've made if you hadn't beat me to it. http://stackoverflow.com/questions/474939/do-i-have-to-use-javascript/475110#475110 Comment by matt lohkamp on Do I have to use Javascript? matt lohkamp 2009-01-24T02:40:04Z 2009-01-24T02:40:04Z Could you really do 'everything' through server-side code? What about animation? Or 'onInput'-type events? What about asynchronous http requests? To be fair, I only really know PHP, but I've played with ASP. NET and Cold Fusion (ew) too, and non of them offer that functionality. http://stackoverflow.com/questions/474939/do-i-have-to-use-javascript/475122#475122 Comment by matt lohkamp on Do I have to use Javascript? matt lohkamp 2009-01-24T02:36:20Z 2009-01-24T02:36:20Z you don't have to be so begrudging about admitting that you occasional use javascript - it's not a dirty word, or anything. Especially with libraries like jQuery, JS has really grown into a totally legit and in some areas nearly indispensable tool. http://stackoverflow.com/questions/474939/do-i-have-to-use-javascript/475338#475338 Comment by matt lohkamp on Do I have to use Javascript? matt lohkamp 2009-01-24T02:34:39Z 2009-01-24T02:34:39Z keep in mind, though, that flash, java, and silverlight apps are all inherently unaccessible, and the time you spend accommodating that maybe very well equal the time you would've spent using something like jQuery. http://stackoverflow.com/questions/467897/how-to-hide-the-script-html-tag/467901#467901 Comment by matt lohkamp on How to hide the SCRIPT html tag? matt lohkamp 2009-01-22T04:05:28Z 2009-01-22T04:05:28Z any code that executes client-side is by definition accessible to the computer which executes it - it's like asking how to make a raspberry with flammable juice. It simply cannot be done. (disclaimer: I am not a genetic biologist, but I feel pretty good about that statement.) http://stackoverflow.com/questions/441018/replacing-spaces-with-underscores-in-javascript/441035#441035 Comment by matt lohkamp on Replacing spaces with underscores in JavaScript? matt lohkamp 2009-01-14T01:13:42Z 2009-01-14T01:13:42Z regex: now you have TWO problems! ha ha. Actually, this is one area where plain old split/join might be a better choice, especially if the codebase will be shared amongst less-than-expert peers who may need to poke through things without you to guide them. http://stackoverflow.com/questions/373818/whats-with-those-do-not-use-javascript-people/373973#373973 Comment by matt lohkamp on What's with those Do-Not-Use JavaScript People? matt lohkamp 2009-01-14T01:09:33Z 2009-01-14T01:09:33Z so you can't be arsed to pick and choose the annoying aspects of a website, and disable javascript overall 'just to be safe'? that sounds like a uninspired way to deal with the problem... http://stackoverflow.com/questions/373818/whats-with-those-do-not-use-javascript-people/373825#373825 Comment by matt lohkamp on What's with those Do-Not-Use JavaScript People? matt lohkamp 2009-01-14T01:06:51Z 2009-01-14T01:06:51Z so the question becomes - why is the mobile device using a crippled excuse for a browser, and how does it become my problem? I know, I know, it's my problem because I'm being paid to make it my problem, but seriously, javascript is pretty standard - how do they get away with making stuff without it? http://stackoverflow.com/questions/441185/avoid-beep-sound-when-enter-keypress-in-a-textbox/441382#441382 Comment by matt lohkamp on Avoid Beep sound when enter keypress in a textbox matt lohkamp 2009-01-14T01:04:45Z 2009-01-14T01:04:45Z friendly reminder - you entered this message in a box clearly labeled 'your answer', and yet it obviously isn't an answer, it's a question - the answers aren't for created a threaded forum - style discussion. Thanks!