Tagged Questions
29
votes
6answers
43k views
How to embed fonts in HTML?
I'm trying to figure out a decent solution (especially from the SEO side) for embedding fonts in web pages. So far I have see the W3C solution, which doesn't even work on Firefox, and this pretty cool ...
23
votes
5answers
328 views
Optimizing my web application using Flash, Javascript and JSP
I have a web app that I am trying to speed up. It looks like this:
+------+
| |
| |
+------+
+------+
| |
| |
+------+
+------+
| |
| |
+------+
Each box is an ...
22
votes
7answers
2k views
HTML5 Local Storage fallback solutions
I'm looking for javascript libraries and code that can simulate localStorage on browsers that do not have native support.
Basically, I'd like to code my site using localStorage to store data and know ...
19
votes
5answers
17k views
How can I detect if Flash is installed and if not, display a hidden div that informs the user?
How can I use javascript/jQuery/etc to detect if Flash is installed and if it isn't, display a div that contains information informing the user that they need to install flash?
19
votes
5answers
13k views
Web XML Editor - with XML syntax highlighting
I am trying to find a web-based XML Editor with at least syntax highlighting. Something simple in Javascript or Flash would be nice.
The more lightweight, the better it would be.
16
votes
6answers
1k views
Adding unobtrusive progress bar to old-school file uploads
You all know the new generation of fancy, mostly Flash-based file uploaders like SWFUpload that can show a progress bar while uploading - a great improvement especially for shaky and low-bandwidth ...
16
votes
9answers
15k views
Cross Browser Flash Detection in Javascript
Does anyone have an example of script that can work reliably well across IE/Firefox to detect if the browser is capable of displaying embedded flash content. I say reliably because I know its not ...
13
votes
3answers
13k views
Best way to determine user's locale within browser
I have a website (Flash) localized into a dozen of languages and I want to auto-define a default value depending on the user's browser settings in order to minimize the steps to access the content.
...
11
votes
6answers
2k views
Do websockets allow for p2p (browser to browser) communication?
To clarify when I ask about browser to browser communication I mean without a server in between forwarding message. I would like to implement something like this for a game. If p2p in websockets ...
10
votes
6answers
25k views
Cross Domain ExternalInterface “Error calling method on NPObject”
I am trying to enable communication between Javascript and Flash via ExternalInterface across domains. The Javascript works great when it is located on the same domain as the SWF. But in one case, the ...
10
votes
2answers
478 views
What thread does JavaScript code called from Flash execute on?
As far as I understand, all JavaScript code is event-driven and executes on a single browser thread.
However, I have some JavaScript functions that are called from within a SWF object sitting on the ...
9
votes
3answers
441 views
Is there any reason to ditch javascript flash embedding methods in 2011?
The benefits of embedding flash with JS to my knowledge:
ability to query navigator object and see what flash versions are installed, possibly branch out on that and feed different content based on ...
9
votes
7answers
1k views
What's the ultimate way to embed Flash (swf) files to HTML (and XHTML) documents?
Like most people I use SWFObject to embed Flash (swf) files to my Web projects.
As you know SWFObject offers 2 ways to embed Flash: Static publishing and Dynamic publishing.
Static publishing uses ...
9
votes
2answers
706 views
Free Open Source In-browser image editors
I'm looking for a in-browser image editing solution to integrate with my project: http://code.google.com/p/django-ray/
I got it working with Pixlr quite easily and the editor is fantastic .. however ...
9
votes
11answers
3k views
What are the best Javascript/Flash frameworks to render graphs or charts from data?
Ideally I'd like to do as little preparation data work on the server as possible. The less I have to do to prep the data from the database to make a given chart, the happier I am and the more view I ...
9
votes
6answers
4k views
Flash steals browser focus
I have a flash app in my page, and when a user interacts with the flash app, the browser/html/javascript stops receiving keyboard input.
For example, in Firefox control-t no longer opens a new tab.
...
9
votes
20answers
2k views
What is the best way to handle photo uploads?
I'm doing a website for a family member's wedding. A feature they requested was a photo section where all the guests could go after the wedding and upload their snaps. I said this was a stellar idea ...
8
votes
13answers
1k views
Is javascript / HTML5 capable of supporting “flash like” animation and drag and drop
With apple browsers not supporting flash or silverlight, there is a real incentive to avoid flash / silverlight to avoid losing that audience when building a web site. That being said there is ...
8
votes
2answers
435 views
What techniques are available to do P2P in the browser?
What options does a web developer currently have for implementing client-side peer-to-peer systems in the web browser? Some hypothetical examples might be a file-sharing service that bypasses the ...
8
votes
3answers
349 views
When does a browser initialize flash?
I am working on optimizing a page that has Flash on it. I am using optimization practices like moving Javascript to the bottom to not block. Removing inline scripts. And minimizing HTTP requests with ...
8
votes
2answers
852 views
Security / Protecting code in JavaScript
With all the recent hype about JavaScript and HTML5 replacing Flash, I wanted to know - How would it be possible to protect client-side js code? Of course, it is possible to obfuscate it, but that ...
8
votes
3answers
2k views
Is “long polling” the most efficient way to create a Web Real Time App?
I want to create an application like this:
http://typewith.me/2wicOjuefI
What is the most efficient way to create this real time application ?
Flash ? Long polling ? Http Streaming ? or anything ...
8
votes
6answers
482 views
Valid JavaScript code that is NOT valid ActionScript 3.0 code?
Most JavaScript code is also syntactically valid ActionScript 3.0 code. However, there are some exceptions which leads me to my question:
Which constructs/features in JavaScript are syntactically ...
8
votes
2answers
863 views
Returning a byte string to ExternalInterface.call throws an error
I am working on my open source project Downloadify, and up until now it simply handles returning Strings in response to ExternalInterface.call commands.
I am trying to put together a test case using ...
8
votes
5answers
1k views
Flash: Using mouse wheel events in full screen mode (Windows and Mac)
Although Flash has a mouse wheel event (MouseEvent.MOUSE_WHEEL), it comes with quite a few problems.
The first is that the event is not yet supported on the Mac. So there are a bunch of solutions, ...
8
votes
20answers
2k views
Are browser based online games possible?
I'm not talking about BB-type text based but rich rpgs with spriting, etc.
With the current advancements in javascript for rich browser interfaces,
would it be possible to create semi-massive ...
8
votes
7answers
6k views
Is there some way to show HTML content inside Flash?
I want to show HTML content inside FLASH. Is there some way to do this?
I am talking about full blown HTML (with JavaScript if possible)
7
votes
3answers
409 views
Web Direct Print Plug-in
We all know that it's impossible to do native print in a browser that bypasses the browser's print dialog, however, we have the need to do a direct print, ideally where we could also select a ...
7
votes
2answers
813 views
Why does ExternalInterface breaks when I pass parameter with JSON like string?
I have a very odd problem with Flash 10 and ExternalInterface. I am currently using a homemade bridge to use RTMFP with Javascript and whenever I try to pass data that contains JSON, I get a wierd ...
7
votes
3answers
286 views
What is a good platform for building a game framework targeting both web and native languages?
I would like to develop (or find, if one is already in development) a framework with support for accelerated graphics and sound built on a system flexible enough to compile to the following:
native ...
7
votes
3answers
279 views
Is there any how I can test whether a mobile browser supports flash using web technology?
I know most mobile browsers don't support javascript,
how can I check this?
7
votes
2answers
873 views
flash blocking javascript events
this is an edit of the original post now that I better understand the problem. now with source code!
In IE, if body (or another html div has focus), then you keypress & click on flash at the ...
7
votes
9answers
795 views
Flash based cropper like this, but with source or customizable?
I am looking for a Flash based image uploader with resize and possibly rotate function.
I have checked many possibilities, and the very best in simplicity and unser experience I found is Kroppr at a ...
7
votes
13answers
1k views
2D web-game: on what?
I want to make a basic, 2D fighting game (not fast paced nor does it have many cool effects.)
I could make it with jQuery, but I think that it would run slowly (to my knowledge).
Can anyone give me ...
7
votes
7answers
3k views
Flash vs. (Ex)Canvas vs. SVG/VML
If you were to design a graphics-heavy interactive web application (say a game like Mario Bros.) today, which of the three available technologies would you prefer - Flash, (Ex)Canvas or SVG/VML?
What ...
7
votes
8answers
1k views
Clipboard access using Javascript - sans Flash?
Is there a reliable way to access the client machine's clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...
7
votes
2answers
6k views
Javascript -> Flash throwing “Error calling method on NPObject”
I'm trying to call a Flash (AS3) function from Javascript. When the code runs, I get the error "Error: uncaught exception: Error calling method on NPObject!" From my day's worth of googling around, ...
7
votes
5answers
11k views
Object Focus problem with Safari and Chrome browsers
I have the following javascript being called to request a focus when page is loaded.
This code works 100% OK with Firefox and IE7, but Chrome and Safari do not seem to move the focus at all. How to ...
7
votes
3answers
1k views
javascript for new tab (CTRL+T), new window (CTRL+N)?
When flash has keyboard focus, CTRL+T (new tab) and CTRL+N (new window) are intercepted by flash.
Is there a way to pass these events through to the browser so that they work (opening new tab, ...
7
votes
3answers
2k views
Firefox restarts Flash movie if enclosing DIV properties change
I have a Flash movie embedded in some DIV. The trouble is that when I change any property of the enclosing DIV dynamically, Firefox (not other browsers) restarts/reinitializes Flash movie effectively ...
7
votes
9answers
6k views
What is the best multiple file JavaScript / Flash file uploader?
Specifically, I'm looking for a client-side, JavaScript and / or Flash based multiple file uploader. The closest thing I've found is FancyUpload. Anyone have experience with it? If not, what else ...
6
votes
3answers
620 views
Workaround Flash not allowing fullscreen from Javascript
Question
I have video player chrome buttons designed with HTML/CSS. The full screen button needs to tell Flash to go full screen, but Adobe forbids this Javascript-to-Actionscript interaction. What ...
6
votes
1answer
737 views
“Error calling method on NPObject!” in Uploadify
I'm using Uploadify to upload file in my CMS. Everything works fine until recently. I got an error
Error calling method on NPObject
on this line
document.getElementById(jQuery(this).attr('id') + ...
6
votes
2answers
297 views
How does youtube's report bug tool takes a screenshot of you screen?
If you go on the bottom of the page there's a "Report bug" link.
They let you highlight parts of the screen and sent it along with the bug description.
Any idea of how this could be implemented?
6
votes
2answers
127 views
Looking for resources to explain a security risk
I've a developer which has given users the ability to download a zip archive which contains an html document which references a relative javascript file and flash document. The flash document accepts ...
6
votes
5answers
366 views
Is there anyway to turn off the url “cliking” sound in IE using html, javascript, or flash?
I have a flash application written in action script 2, and at one point it makes multiple back-to-back JavaScript requests using getUrl().
They have to be done as separate requests because IE had a ...
6
votes
6answers
402 views
Please recommend one or more of the best Chart component,Flash or javascript
I am looking for a suitable charting component use in my Web project,Please help me!
Thanks!
6
votes
4answers
2k views
Embed YouTube video with jQuery in IE6 without SWFObject
Here's my code:
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<title></title>
...
6
votes
1answer
269 views
Cross domain requests: Javascript vs Flash
As you might know, browser's security model does not allow a script loaded in a page from http://www.example.com to make cross-domain requests (no AJAX calls to any other domain other than ...
6
votes
4answers
488 views
Supressing browser's authentication dialog
I apologize that there is a similar question already but I'd like to ask it more broadly.
Is there any way at all to determine on the client side of a web application if requesting a resource will ...