Java :: Scan Documents Directly To Be Uploaded To A Webpage?
Apr 27, 2010
I was hoping to do this from a flash plugin, kind of how flash accesses the microphone or webcam but it doesn't seem possible. Is this going to be possible using Java, or ActiveX, or some other strategy that I haven't looked at yet?The idea is to do it without a client install, or at least something lightweight and browser and platform independent.
View 1 Replies
Similar Posts:
Apr 13, 2011
I am working on an AS3 file for one of my webpages, in Flash it is 660 x 2800 pixels in size, which is relatively large, and to view the entire file contents i need to have a zoom level of 40%! Once publish as an SWF file and uploaded to my webpage, the file appears very small!! I expand the file to as large as possible on the webpage and the file still appears undersized. Obviously I wish it to fill the whole content area.
View 1 Replies
Dec 6, 2005
I have a Flash website with an online shop. The shop part uses javascript and cgi in separate html pages. I want to insert a link to a URL from these web pages back to "scene 3.0 (home)" in my main .swf file. The .swf is embedded in an index.html file so a link to the URL [URL] starts the flash movie back from the start with the intro and everything. I want it to skip the intro (scenes 1.0 and 2.0) and go directly to the "scene 3.0 (home)" scene.
View 2 Replies
Aug 4, 2009
I ve uploaded flash file with transparent background to my web page. Set background transparency in html code of page. Purpose of this flash is to represent main meny, so it contains few buttons, in up and over stage everything is ok but when i press mouse some strange doted line appears around flash, on click out of flash zone line disappear i want to remove that doted line.
View 3 Replies
Nov 11, 2009
is possible to drag (multiple) files from desktop directly into a flash webpage.
View 2 Replies
Oct 26, 2009
How do you read the RGB values of a webpage's screen pixels directly underneath of a Flash widget?
View 1 Replies
Mar 9, 2010
Problem: Conditions:
IE7, SP2, latest flash/java. Only reproducible on one machine. Observations: Smaller than a javascript alert box, and seems to be generated when a swf on my web page loads. The dialog is modal, however, like an alert box.
I've tried matching the configuration of the machine in question, but a recreation of the machine does not get this error. I'm not ultra-familiar with flash/flex, so is there something that flex/flash could do which would cause this error dialog to appear.
How would one even go about debugging this? It's mostly not reproducible aside from a single machine, and the circumstances which cause the error are unknown.
View 3 Replies
Jun 6, 2011
What are the options (or is it possible at all) for a web page (running on a remote server, not localhost) to access a data stream (not video) coming in via the USB port of the local computer?
Ideally this would work cross-platform (Windows, Unix, Mac anyway) and the local computer would not have to download/install anything to make it work (beyond what you can reasonably expect a computer to have)
An embedded Java applet seems the only way, but I'm wondering if there's any other technologies that could do it. If the restriction is lifted so that the user can install something (basic for non-techies, not setting up a local server running node.js for example) does that make more things possible (Flash?)
View 2 Replies
Sep 18, 2009
Is it possible to take a screen shot (using the Print Screen) and paste it from the System Clipboard directly into a web pages text area field (which I would create)? Do I need a browser plug-in? Can Flash do this?
View 2 Replies
Aug 6, 2010
I have a flash template that I bought and customized with dreamweaver, flash and Coda html editor, the website test PERFECTLY when I test the index.html file, all of the buttons work fine, I have a total of 12 .flv videos and they ALL play back fine, when I play the index.html file, the problem occurs when I upload the files to my godaddy server, 11 of the videos play fine, the whole site is fine, it is one particular .flv file that will not play once it is uploaded to the server. I have changed the orders the video play, renamed the file and changed the html flv path to reflect the name change, I have deleted all the files off my server, refreshed the server logged out and re logged on and uploaded everything again, I have re-encoded the original .mov file to a .flv file again using Adobe media encoder, still nothing, I am wondering why would the index.html play this particular .flv file fine, but once uploaded to the server it will not play, the path is correct I have checked it, if the path were the problem the index.html for that particular file would not play when I test the index.html file before I upload it, but it plays fine until it is uploaded, I am uploading the whole folder on the root, and this particular video file is in a folder with all the rest of the .flv files, I even tried changing the path and putting this particular .flv file in a seperate folder and change the path still nothing.
View 7 Replies
Apr 17, 2011
I know this doesn't have a simple answer, but I want to learn how to scan images, and thus videos (frame-by-frame) and identify other images in that initial image with a given amount of error.
View 1 Replies
Dec 2, 2010
When I first open my project, I want the visuals to stay on the 1st frame, while Flash scans through and creates an array of all the frame labels and their relative frame numbers.
Would be useful to be able to specify a layer to search for labels on, and/or search for any and all frame labels in an mc.
View 1 Replies
Feb 21, 2010
I want the flash movie to scan the dir, like: news/In news i have a few txt. files:
news/1.txt
news/2.txt
news/3.txt
I want it to return a array [1.txt,2.txt,3.txt] But when i ad one.
news/4.txt
it automaticly returns an array with [1.txt,2.txt,3.txt,4.txt] in it. how would i do this?
View 10 Replies
Jan 25, 2004
I want the flash movie to scan the dir, like: news/ In news i have a few txt. files:
[Code]...
I want it to return a array [1.txt,2.txt,3.txt] But when i ad one. news/4.txt it automaticly returns an array with [1.txt,2.txt,3.txt,4.txt] in it. how would i do this?
View 3 Replies
Jun 9, 2011
Way I can import a .txt file into flash, check for EXACT duplicate words and then resave it out as a .txt file with the duplicates removed ?
View 6 Replies
Jun 12, 2011
While recursive scans are commonly use to scan through nested objects / data. It can go on an infinite loop, if some of the objects references one another. So what is the most effective way to scan all items, without crashing the computer, nor skipping a specified parameter?
Here is an example of a recursive scanner...
/**
* Triggers the scan function for each object given
**/
function recursiveScanner( object:* , scanFunction:Function ):void {
[Code].....
The objects will trigger scans for one another in an eternal loop.
I do believe in C/C++ : Each scanFunction call, will be added into a list consisting of scanned 'memory address', thus preventing a repeat. Is this even possible in AS3? Is there a more elegent way?
View 2 Replies
Jul 14, 2011
I was interested in searching through text in a textfield, and applying text formatting to keywords. For example, every time the word 'the' appears, apply a text format that changes it to green and 14pt. Here is an example of a format and text applied to a textfield. How would I go about searching through the textfield and applying this format only to specific words? my_txt.text = 'The cat jumped over the house.'
/// my format I want to apply
with (_lt_fmt) {
align = 'left';
blockIndent = 0;
[Code]....
View 8 Replies
Mar 29, 2011
i need to scan some html text for all ocurences of a custom tag. I'm useing a regexp to do so, and it works fine:
//START CODE
var myRegExp:RegExp = /<hi>(.*?)</hi>/ig;
var myString:String ="Lorem Dolor<hi>Found1</hi> Lorem Dolor Ipsum dolor <hi>Found2</hi> sit amet mas nocturn <hi>Found3</hi> Lorem Dolor <hi>Found4,YouFoundThemALL</hi> ";
[Code]...
View 3 Replies
Sep 12, 2006
I'm trying to find a way of playing a presentation with product information and movie animation (flash or HTML with embedded movie) using a barcode scan as the activator. Ie, a customer would scan 1 of around 20 products on a barcode scanner, and product info and a movie would play. Anyone have any ideas of how this can be done. I've been out of the flash world for a while, so not sure if it has the capability. If someone has the ability to put this together, there would be some $$ involved. brendan.lake@circle-square.net
View 2 Replies
Feb 8, 2011
I would like to be able to create a folder for the copied video frames access the individual frames frome a .flv video file and/or .swf file save these frames to the auto-created folder I assume one would need to do this using Action Script 3 to scan through the .swf and .flv files and extract the frames.
View 2 Replies
Oct 7, 2009
I'm working on a school project that will work so that a webcam can scan a grid of colors and determine what color it is and there by playing a sound that is connected to that color. You can then create music by drawing different colors on a grid.
So I managed to import the webcam image to flash, and that's all. How do I Proceed?
* How do I get the webcam to detect colors? (Green, Blue, Red, Yellow and Black)
* How do I connect these color detections to start playing a sound/movieclip?
This is the code id used to import the webcam.
Code:
import flash.media.Camera;
import flash.media.Video;
var camera:Camera = Camera.getCamera();
if (camera != null) {
video.attachCamera(camera);
} else {
trace("You need a camera.");
}
View 1 Replies
May 29, 2009
In Flash CS3 when you did Modify/Document it allowed you to type in a document Title and Description which were metadata searchable by internet search engines. According to the book "Brilliant Flash CS4" this is still possible in CS4, but I think they have removed the option, and the book is wrong. add metadata for searching to FLA documents or is this now gone?
View 1 Replies
Mar 13, 2010
My XML scripts work fine in the local swf. If I load an external swf, can I still retrieve XML data from the same way. What problems will I encounter with XML and externally loaded swf files?
VARIABLE TYPES
var timer:Timer = new Timer(10);
var myString:String = "";
[code].....
View 1 Replies
Jun 13, 2011
I have a dillema with Flash, and that is using more than 1 external document... Over the years I've tried using the include statement WHICH worked in as2 but now as we have progressed into as3 it seems to cause more and more errors! Why is Adobe screwing up actionscript? Back when Macromedia owned it everything was sooo much simpler than it is now
Right now I am making a Flash Game which is almost finished and I'm already using the external document for the GameController, I've added a brightness setting for portable users to make it brighter, I borrowed code off a kind coder and I'm now responsible for converting the external document into the actions keyframe...I used the include 'Main.as' statement and I get this error, packes cannot be nested.....is it possible to put the full code in my keyframes actions layer instead?
View 9 Replies
Jul 16, 2011
I want to load my xml file from my documents. What url should I use? in this request
xmlLoader.load(new URLRequest("medialist.xml"))
View 1 Replies
Apr 24, 2008
i'm trying to create a mix and match clothing application using flash for a school project but am having trouble with xml documents. Using an old gallery tutorial on the site, i found it was quite easy to load up one xml document, excerpt of code below.
I thought it would be as simple as copying all the code and changing the variable names to load a second xml document but i find when i run the code, that only the last xml document in the code loads
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
[Code]....
View 1 Replies
Jun 25, 2010
I am a .NET Developer, but the question I am having is not related to .NETPlease keep this in mind even if my question sounds very trivial.This is my question:We have an swf in the browser, which communicates with a java extensionIts done using Smartfox Server(Used for MMO apllications)From the swf we are grabbing a portion of the screen as "Byte Array" in action script(3).And in Java, we are calling a function that converts the ByteArray to Image and then saves it.ur Java developer is encountering the errorSo basically, what I would like to know is this:How to accept the object type Byte Array from ActionScript in Java?Whats Java object type that is mapped to Byte Array in ActionScript?The conversion part is easy, I dare say. code in the ActionScript Section
public function savePhoto(uName:String, ba:ByteArray, descr:String):void{
var obj:Object = {};
obj.arr = ba;
[code]....
View 3 Replies
Jul 16, 2010
I tried with flex and java in the backend. In this, I am able to upload files till 100 MB using remote object (blazeDs) where we will read the file as byte array and send it to the java method. If the file size exceeds after that, then I get the run time error in IE.
View 1 Replies
Oct 27, 2010
I could play MIDI file where "filename" is a String type with "asd.mid" value. However, I tried to sent AIR's nativeprocess command to Java, it shown "could not read" error.
[Code]...
View 1 Replies
Sep 15, 2011
Meaning specifically, what steps do you go through when creating a new application using these tools?
View 1 Replies