HT4509 Barcode scanner app with international keyboard

Hi,
is there any barcode scanner app that can be used as an iternational keyboard:
it should allow to be added from settings
when this keyboard is selected, the camera should open, allowing to scan barcode, and using it in any app, as normal keyboard?
thx

barcode scanner is an electronic device for reading printed barcodes. Like a flatbed scanner, it consists of a light source, a lens and a light sensor translating optical impulses into electrical ones. Nearly all barcode readers contain decoder circuitry analyzing the barcode's image data

Similar Messages

  • Barcode Scanner app using Javascript for windows 8 tablet

    I want to create a barcode scanner app in which i want to start the camera preview, and read the barcode. Is there any sample code? I have used the below code but its working only with windows desktop not working with tablet.
    function openScanner() {
        var
            // barcode main objects
            zxing,
            sampler,
            element,
            // application  references
            isZxingInit = false,
            isDomReady = false,
            isVisible = false,
            isCancelled = false,
            raiseSuccess,
            raiseError;
        // init objects
        initZXing();
        initSampler().done(function () {
            console.log('- MediaCapture has been initialized successfully!');
            // preparing to show camera preview
            createCameraElement();
            showPanel();
            setTimeout(render, 100);
        }, raiseError);
        // initialize ZXing
        function initZXing() {
            if (!isZxingInit) {
                isZxingInit = true;
                zxing = new ZXing.BarcodeReader();
                console.log('zxing==' + zxing);
            } else {
                console.log('- ZXing instance has been recovered!');
        // initialize MediaCapture
        function initSampler() {
            console.log('- Initializing MediaCapture...');
            sampler = new Windows.Media.Capture.MediaCapture();
            return sampler.initializeAsync();
        // initializes dom element
        function createCameraElement() {
            console.log('- Creating DOM element...');
            if (!isDomReady) {
                isDomReady = true;
                element = document.createElement('video');
             //   element.style.display = 'none';
                element.style.position = 'absolute';
                element.style.left = '0px';
                element.style.top = '0px';
              //  element.style.zIndex = 2e9;
                element.style.width = '100%';
                element.style.height = '100%';
                element.onclick = cancel;
                document.body.appendChild(element);
                console.log('- Camera element has been created!');
            } else {
                console.log('- DOM is ready!');
        function showPanel() {
            if (!isVisible) {
                isCancelled = false;
                isVisible = true;
                element.style.display = 'block';
                element.src = URL.createObjectURL(sampler);
                element.play();
        // renders image
        function render() {
            console.log('- Sampling...');
            var frame, canvas = document.createElement('canvas');
            canvas.width = element.videoWidth;
            canvas.height = element.videoHeight;
            canvas.getContext('2d').drawImage(element, 0, 0, canvas.width, canvas.height);
            frame = canvas.msToBlob().msDetachStream();
            loadStream(frame);
        // loads data stream
        function loadStream(buffer) {
            console.log('- Loading stream...');
            Windows.Graphics.Imaging.BitmapDecoder.createAsync(buffer).done(function (decoder) {
                console.log('- Stream has been loaded!');
                if (decoder) {
                    console.log('- Decoding data...');
                    decoder.getPixelDataAsync().then(
                        function onSuccess(pixelDataProvider) {
                            console.log('- Detaching pixel data...');
                            decodeBitmapStream(decoder, pixelDataProvider.detachPixelData());
                        }, raiseError);
                } else {
                    raiseError(new Error('Unable to load camera image'));
            }, raiseError);
        // decode pixel data
        function decodeBitmapStream(decoder, rawPixels) {
            console.log('- Decoding bitmap stream...');
            var pixels, format, pixelBuffer_U8;
            switch (decoder.bitmapPixelFormat) {
                // RGBA 16
                case Windows.Graphics.Imaging.BitmapPixelFormat.rgba16:
                    console.log('- RGBA16 detected...');
                    // allocate a typed array with the raw pixel data
                    pixelBuffer_U8 = new Uint8Array(rawPixels);
                    // Uint16Array provides a typed view into the raw bit pixel data
                    pixels = new Uint16Array(pixelBuffer_U8.buffer);
                    // defining image format
                    format = (decoder.bitmapAlphaMode === Windows.Graphics.Imaging.BitmapAlphaMode.straight ? ZXing.BitmapFormat.rgba32 : ZXing.BitmapFormat.rgb32);
                    break;
                    // RGBA 8
                case Windows.Graphics.Imaging.BitmapPixelFormat.rgba8:
                    console.log('- RGBA8 detected...');
                    // for 8 bit pixel, formats, just use returned pixel array.
                    pixels = rawPixels;
                    // defining image format
                    format = (decoder.bitmapAlphaMode === Windows.Graphics.Imaging.BitmapAlphaMode.straight ? ZXing.BitmapFormat.rgba32 : ZXing.BitmapFormat.rgb32);
                    break;
                    // BGRA 8
                case Windows.Graphics.Imaging.BitmapPixelFormat.bgra8:
                    console.log('- BGRA8 detected...');
                    // basically, this is still 8 bits...
                    pixels = rawPixels;
                    // defining image format
                    format = (decoder.bitmapAlphaMode === Windows.Graphics.Imaging.BitmapAlphaMode.straight ? ZXing.BitmapFormat.bgra32 : ZXing.BitmapFormat.bgr32);
            // checking barcode
            readCode(decoder, pixels, format);
        // decoding barcode
        function readCode(decoder, pixels, format) {
            'use strict';
            console.log('- Decoding with ZXing...');
            var result = zxing.decode(pixels, decoder.pixelWidth, decoder.pixelHeight, format);
            if (result) {
                console.log('- DECODED: ', result);
                close(result);
            } else if (isCancelled) {
                console.log('- CANCELLED!');
                close({ cancelled: true });
            } else {
                render();
        // cancel rendering
        function cancel() {
            isCancelled = true;
        // close panel
        function close(result) {
            element.style.display = 'none';
            element.pause();
            element.src = '';
            isVisible = false;
            element.parentNode.removeChild(element);
            isDomReady = false;
            raiseSuccess(result);
        function raiseSuccess(result) {
            console.log('Result===' + JSON.stringify(result));
        function raiseError(error) {
            console.log('ERROR::::' + error);
    Can anyone tell why its not working on tablet with solution? Thanks in advance

    Hi Asha - we have sample code for barcode scanning here:
    https://code.msdn.microsoft.com/windowsapps/Barcode-scanner-sample-f39aa411
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Barcode Scanner Compatible with OAF framework

    Dear All
    Our Organization wants to purchase a Barcode Scanner Compatible with OAF framework which is wireless and Bluetooth Supported and can run E-business suite.
    can any one sugest us.
    regards
    arif

    Please see these docs.
    Supported Barcode Formats in Release 12 [ID 757983.1]
    Mobile Apps Does Not Recognize Barcode Data Identifiers and Strip the DFI's [ID 745432.1]
    How To Enable Barcode Scanning In Mobile Field Service [ID 1085330.1]
    Receiving "Transaction Fails" When Using Mobile Supply Chain (MSCA) Terminal Device/Scanners [ID 837728.1]
    Advanced Barcode Strategies [ID 297992.1]
    Using Barcode Scanning Solutions with Oracle Applications and Desktop Computers [ID 152601.1]
    Also, contact the vendors and ask them for the certifications/features with Oracle E-Business Suite.
    Thanks,
    Hussein

  • Barcode Scanner app

    There are quite a few Barcode Scanner apps available and I wonder if anyone can advise which is the best one to use? Thanks for your help.

    I prefer QR code scanner pro because it's works pretty well, and its free.
    BlackBerry Application Developer
    Eric Lewis

  • Trouble with internal keyboard and touchpad

    Hi,
    Yesterday I just out of nowhere started having some trouble with my keyboard and touchpad on my MacBook Air.
    The problem displayed itself on various ways. One thing was that I couldn't press regulary with the touchpad. When I was pressing one time, it acted like a pressed with two fingers. When I tried to type in my password on the administrator page, some of the keys didn't work at all and some started to act weird. For example when I was pressing the letter B, the "bar" which displayes where you are in the text (don't know the word in English) went backwards, and when I pressed the letter F it went forward. This seemes so weird and also gives me a hope that it might be some setting failure though B stands for backwards and F stands for forward.
    I could log in to the guestpage where I tried to write in "notes". In notes, no letters at all was working, only numbers. When I tried to shut the computer down from the apple symbol I was asked to write administrator name and password. When I tried to mark the name to write it, there wasn't a "bar" but a cross, but on the other hand did it work to write in the password field. But of course not B and F..
    Usualy I'd just press the on/off botton until the computer lockdown, unfortunately the botton doesn't work. So the only thing I could do was to let the battery die and hope that it would start when I recharged it and pressed start, this didn't go as well as I hoped, so now I'm stuck with a dead macbook air.
    Any ideas of what could be the problem or/and any solutions what might do the trick?
    Extremly greatful for any answers

    Yes you need to use a wired keyboard.

  • Why Doesn't My BarCode Scanner Work With Mountain Lion?

    I'm running Mac OS X 10.8.4 and I have two brand new CipherLab 1500 barcode scanners.  When I plug the scanners into a PC, they work fine.  When I plug them into either of my iMacs the scanner light comes on when I pull the trigger, but when I point the scanner at a barcode, the light goes out, there is no "beep" to indicate a successful scan, and not data is displyed (I'm testing it with TextEdit).  The light will not come back on when I pull the trigger again.  I've spoken with CipherLab and they say there's nothing wrong woth the scanners (and I tend to believe them) and that the reason the light doesn't come on when I pull the trigger after attempting to scan a barcode is because the scanner's waiting for a reply from the computer and won't re-scan until it receives one.  CipherLab also says they've tested their scanners on OS X (the tech I spoke with didn't know what version they've tested them up to) and they "work fine."
    Any thoughts?

    Check http://support.apple.com/kb/HT3669 Printer and scanner software available for download to determine if you need drivers and also try the solutions mentioned KB Articles:  http://support.apple.com/kb/PH11143 OS X Mountain Lion: Reset the printing system and http://support.apple.com/kb/PH11070 OS X Mountain Lion: Troubleshoot a network printer which should work w/scanners too.

  • Using i-pad adobe app with external keyboard

    I have an external blutooth keyboard I use with my I-pad. It works with all other applications, but when I open Adobe app and try to type into documents, it will not let me. I can pull up the on screen keyboard and type into documents on adobe app just fine. Anyone else have this problem and know how to fix it? Any help is greatly appreciated!

    Hi,
    activate "MIDI IN" in the piano roll window. That's a red button next to the green "MIDI OUT" you have to activate.
    Fox

  • Scanner app with Lion?

    I am just about ready to upgrade to lion, but have an issue with my scanners ... Three of them, all epson.. Using Epson scan app has been great, but I read that it will not run on Lion... So I've tried both image capture and vuescan... Both are awful compared to the old epson scan and I don't really see any alternatives.
    What have you with epson scanners done???
    Thanks
    Tom

    I am a graphic designer and have been using an Epson Perfection Photo 4870 for years now. 99% has been TWAIN'd through Photoshop. My main issue always was that, I would have to FILE > IMPORT > TWAIN over and over again, for everything I wanted to scan, and it wasted a lot of time relaunching the Epson scanning software.
    Recently my 2007 MacBook died (two days ago) completely...so I had to purchase a new MacBook Pro with Lion pre-installed. After multiple failed atempts to TWAIN the scanner through Photoshop or even trying to launch the scanner through the Print / Fax settings (which would never launch)...I finally discovered that Image Capture was fully recognizing the scanner.
    So I have ran a few tests scans, photos, artwork, office papers...etc. I haven't tried the transparency abilities yet, but so far, the software seems to retain all the abilities the Epson software did and actually has more features now. All the Image Sharpen, Unsharp Mask, Descreening, Backlight and Dust Removal are all there and seem to function normally. It's got all the DPI options, size, color and even file type options.
    It may take a few more times to really tweek the software and figure out what are the best settings to use now, but I think overall it is going to be just fine. One new feature that I have seen from the get go, is the ability to ROTATE the scanning selection box! Which was NOT available in the Epson software, this is a huge plus which will save time having to readjust alignment in PS if the scanned items ***** on the scanner bed while closing the lid or something. Also, the fact that the software doesn't have to close and relaunch on every scan.
    The main drawback I do see so far though, is that you cannot add the PS.app to the list of destinations to send a scanned file. So at the moment I am just sending scans to a select folder and then opening them in PS to edit. It has the option to send to iPhoto, Image.app and Mail, but not PS. I think if they enable that option, then this Image Capture software will be plenty suficient to use.
    No one likes change...but sometimes it works out ot be better.
    Oh yea, and it does seem to process, preview and scan much quicker than the old Epson Scan software...
    Jeremy

  • Opening an App with a keyboard shortcut

    Hello all,
    I am new to this OS, though I have dabbled in linux distros and thus have become infatuated with the terminal.
    How do I set a keyboard shortcut to OPEN a terminal window. I do not want to set a keyboard shortcut to execut once a terminal window is already open.
    I guess I could start terminal at boot and let it run in the background but it seems an solution lacking any elegance and would take up ram and processor resources.
    Any ideas for a noob?
    thanks
    -E

    Hi. Welcome to Apple Discussions.
    You can set Terminal as a Login Item in System Preferences >> Login Items, the resources it uses are miniscule. Or drag Terminal.app to the Dock so you can launch it with a mouse click.
    There also <a href="http://docs.info.apple.com/article.html?artnum=75459"">keyboard shortcuts you try</a> and <a href="http://docs.info.apple.com/article.html?artnum=304759">Automator to write scripts.
    Hope you find something that works well for you.
    -mj
    [email protected]

  • Use of external keypad with internal keyboard

    Hi folks,
    I've just got my new Tecra S4-122, of course without an integrated numeric keypad, so I've such a thing too. The problem is now that I'm not able to use the numbers on the keypad without activating the internal "keypad" (Use of normal letters as numbers), so it's not really helpful, because I can't use it during typing. Is there any solution to activate ONLY the external keypad (Labtec thing on USB)?
    Thanks in advance!
    Best regards,
    Phip

    Hi
    Unfortunately, its seems there is not other way as to enable the keypad with FN+F11.
    best regards
    Jimi

  • Buy macbook with international keyboard

    I am going to the states for a couple of semesters and i want to buy a macbook since they are way cheaper there than in my country Denmark. Is it possible to order a macbook in the USA with a danish keyboard?

    You need to contact apple sales as this would be a special order MacBook.

  • Xperia l restarts when using Walkman app with internal speaker

    Hi recently I updated my xperia l to 15.3.A.1.14.
    But after that whenever I start playing songs without headset my phone shutdown and restarting. Is there any solution for this issue. Anybody please help to fix this problem.
    Solved!
    Go to Solution.

    try
    setting>apps>all>walkman> clear data and cache force stop and reboot your phone
    and
    setting>apps>all>smart connect> do the same as walkman then reboot again
    see how it goes
    Some will call me fatalist And some will call me freak
    But hidden in my throwing fist The fortune that I seek-- Amon amarth

  • Mobile Scanner Apps with ITS

    I like to make a mobile Application with the ITS WEBGUI. But I get an error “No IVIEWS” are supported.
    Is there a way to run ITS HTML on Windows Mobile 2003n(I need the table controls)
    Thx
    Peter

    Hi Peter,
    the webgui will not work on the browser available on Windows Mobile 2003. But you can make use of ITSmobile to create a customer mobile application. For details about ITSmobile please check the ITSmobile documentation on http://help.sap.com.
    Best regards,
    Klaus

  • International keyboard with Norwegian layout - possible to remap some keys?

    Hey, I have a MBP OS X 10.6.8 with international keyboard that I have selected a Norwegian layout on, since I need the special characters we have in our language (æ, ø and å).
    My question is - is it possible to remap just SOME keys/characters while in this configuration?
    The keys I need to remap are:
    < to ` (so I can do Command-` in programs to change windows)
    ´ to ' (because I use the standard apostrophe)
    Any way to do this in OS X, or maybe with other software? Thanks for any help!

    Some possible options:
    +Use system preferences/language & text/text/symbol and text substitution to create shortcuts
    +Use Ukelele to create a custom keyboard layout
    http://scripts.sil.org/ukelele
    +Use the US layout and type your special characters using the built-in alt key shortcuts
    http://homepage.mac.com/thgewecke/diacritics.html
    Note:  Standard apostrophe is alt + @ on the Norwegian layout (alt + \ if keys are printed for US layout).

  • Adobe form barcode scanner input

    I made an Adobe form with X Pro.  The purpose of the form is to inventory equipment.  I use a barcode scanner to enter serial numbers into the form.  When I scan the barcode (Code 39) of an item the serial number entered into the form is truncated.  To ensure that the scanner was reading the barcode correctly I scanned a code while having notepad open, it input the entire serial number correctly.  I did the same thing with Word and the serial was also input correctly.  Why is the form truncating my serial number?  I can type more in the field if I so wish so I know that a character limit is not the issue.  I checked all of the text box's properties but see nothing incorrect or limiting. 
    Thanks for the help,
    Goob

    Sorry for never replying to your post.  The problem is: I do not know why this is happening.
    Your last sentence "on the Text Area the scan seems to stop before entering all digits but when I scroll back through, they are accurate" makes me think.  As I wrote earlier, "A barcode scanner is basically just an input device like a keyboard", but very much faster.  Somehow it seems that the software acts like it is encountering the carriage return before all the data digits have been processed.
    But somehow it also seems to correct itself in a text area that allows multiple lines, but not in a single-line text field.
    Yet that does not happen with my barcode scanner, but with yours and the o/p's.
    Very confusing!  Does anybody else have some thoughts on this?

Maybe you are looking for

  • Crash during start-up Photoshop Elements 9

    When starting up Photoshop Elements Editor I receive the message: "Unable to continue because of a hardware or system error. Sorry, but this error is unrecoverable." The Photoshop Elements Organizer functions properly What should I do now? shutting d

  • Camera not working with computer "HELP"

    my camera used to work with computer but when i took it off and went to hook it back up nothing seams to work now it says camera not hooked up on all my app's what can i do to make it work or check if my system is working the way it should ???? how c

  • Can't deactivate 4s

    Im trying to sell my iPhone 4s, I completely restored it to factory settings using iTunes. But now the iPhone is able to make calls, text, and use 3g, but on my Verizon it still says my current phone is activated (LG G3) Im looking for a way to compl

  • Speedy 33 - virtual

    I have already installed the drivers for the speedy 33, but sometimes when the board is plugged in, the vab software doesn't pick up the hardware.  Any suggestions?

  • How do I make titles in Final Cut Express HD

    How do I make titles in Final Cut Express HD?