How to stop page from resetting when using a laser barcode scanner to fill input areas.

I am using Firefox 30 with Mac OS 10.9 at work. We keep track of workflow using a 3rd party website and scan the information in with a UBS laser barcode scanner.
In Firefox the input regions will fill with the information, but then clear without saving or sending the information to the site. What settings are needed for Firefox to keep and send the scanned information?

Just a WAG.
Try the first item in Accessibility = Always use the cursor keys to navigate within page
''assuming that web app doesn't use the cursor keys for anything''
Have you attempted to get support for that website or website app?
Without more information all we can do is guess.
It's been 10 years or so, but I did play with the CueCat barcode scanner a bit and even modified some software that I found on a CueCat enthusiast website to do silly things and to re-purpose it to keep an inventory of my CD collection. ''(Yep, that long ago.)''
The CueCat it was sending keyboard commands, which wasn't hard to figure out, because it piggy-backed on the PS/2 keyboard cable; there were a very small number of USB versions made for retail store kiosks and for demo purposes, but the whole project was killed before they started making the USB for consumers.

Similar Messages

  • How to stop iphone from autoplay when plug into car audio system usb?

    how to stop iphone from autoplaying when connected to your car audio USB ?

    You need to remove the association that Windows has with that particular file type. To do that, you need to open Windows Explorer. From there, click on Tools, then Folder options. Click on the tab that is named file types. You then need to find the extension for the photos that appear in the iPhone, then click that registered file type. Once you do that, there is a section to select the program to open that file type with. You can click on the change button, and that will allow you to change the program that it opens with, or restore the default. There is also a box that can be checked to always use the selected program. If you unselect it, it will prompt you next time on what program to use.
    Hope this helps.

  • How do I stop pages from scrolling when i'm creating an interactive PDF?

    I'm attempting to create an interactive PDF portfolio with links from the homepage to gallery pages and projects etc, but it seems useless if I can't stop the PDF pages from scrolling? Can anyone help?
    I have InDesign CS5.5 and Adobe Acrobat Pro.
    Thanks,
    Elizabeth

    I had the same problem with an interactive PDF I created out of InDesign CS5.5. Not sure if what I found will work for a PDF portfolio but here is what I did.
    After creating my document and exporting it as an interactive PDF I opened it in Acrobat X. I went to file/properties and opened the dialogue box. I then clicked on the "initial view" tab and checked the "hide toolbars" and "hide window controls" clicked okay, closed the dialogue box and re-saved the PDF.
    The next time I launched it you could not mouse click to navigate the pages anymore, you had to use the interface I had created. The only caveat is that the keyboard arrows and the mouse scroll wheel still work but if you click anywhere on the page other than my buttons the pages now stay put.
    Hope this works for you,
    Phil

  • How can I keep pages from scrolling when using keyboard page-down

    The bottom of the pages window has a gear. You can select "Page" in the drop down menu and click the arrow, to perform a page down. The new page is positioned exactly like the previous page. But when I type fn+down-arrow or cmd+down arrow the new page view is either higher or lower than the previous page. Resizing the window makes it almost possible to get a consistent page display but not quite. It's awkward trying to read a document when each new page jumps to a new position. The arrow next to the gear is the only solution I've found.
    Does anyone know a way to achieve this page down view using just the keyboard. I'm using the iMac wireless keyboard?
    Thanks,
    Mark

    It is an annoyance, due to the 2 meaning two different things.
    The page down key means the whole window view which is not the physical page that you see in Pages.
    Apple could have clarified it by labelling the key +window down/up.+
    Peter

  • HELP - How to stop audio from starting when captivate loads

    Hi there,
    I'm trying to work out how to stop my audio files attached to objects (images) from playing when captivate initially loads.  I have a number of images with audio and when captivate initially loads all of the audios play at once which isn't good.  I only want the audio associated with the object to play when the user clicks the item.   
    I've been researching for days and can't find an answer.  Am I doing something wrong, or am I overlooking something.? 
    Could someone PLEASE help me with this or at least put me in the right direction.  Any suggestions will be appreciated!!!
    Jasmin 

    To achieve that you have to separate the audio from the image. The principle I explained in this article http://lilybiri.posterous.com/audio-objects-control-them
    The audio will play when the object to which it is attached gets visible. If you attach the audio to another object like a non-visible highlight box (that is my 'audio object' but you can use also a non-visible drawing object), you can set this 'audio object' to invisible in its Properties panel. When the user clicks on the click box, execute the action 'Show audio object' and the audio will play. I would even recommend using advanced standard actions over a simple action because you will be able to hide the other audio objects at the same time, and the play head will not be released - see video http://www.youtube.com/watch?v=M3nKi-DB6Fw&feature=plcp
    You have to know that hiding an audio object, will pause the audio. If you show it again, it will continue playing, not restart.
    Lilybiri

  • How to open document from mac when using windows without transferring the file?

    How can i open a document from mac when i am using windows without transferring it?

    depend on the document program more then anything else really
    when ever I open a doc with word it make a history for undo and redo action file in the same dir
    with bootcamp you only have read not write access to the osx partition so it would fail to be able to create that file
    but if you can get word or whatever program you use to open the file not to place a temp file in the same dir
    or use a program which did not make any type of temp file or used a program where the temp file would be located elsewhere where you decide it would work file

  • How to get values from resultset when using subquery???

    Hi ,
    I have a problem in executing sql query from java.
    I am executing an sql query which return a intersection of values from 3 tables.
    Here is the query I am using
    select id from dps_user where id in (select b.id from dps_user b,laserlink c
    where c.userid='univ.'||b.login and c.status in(1,3,8,9,10)
    intersect
    select b.id from dps_user b,laserlink c
    where c.userid=b.login and c.status in(1,3,8,9,10)).
    this query is working fine from sql .
    when I am trying to excute the same query from java nothing is coming into resultset.
    String ISP_AND_EMAIL="select id "+
                             " from dps_user where id in (select b.id from dps_user b,laserlink c "+
                                  "where c.userid='"+"univ.'"+" ||b.login and c.status in(1,3,8,9,10)"+
                                  " intersect "+
                                  " select b.id from dps_user b,laserlink c"+
                                  " where c.userid=b.login and c.status in(1,3,8,9,10))";
              System.out.println(ISP_AND_EMAIL);
              rs=stmt.executeQuery(ISP_AND_EMAIL);
    How to use concatinate string (|| ) in java.
    can anyone help to retrieve the values from this resultset...
    Thanks

    concatnation is done using + in java.
    I am doubtful about the following line where there may be error
    "where c.userid='"+"univ.'"+" ||b.login and c.status in(1,3,8,9,10)"+
    I don't know if the univ. is a string or some variable.I need more clarification on this line,then i may help u.
    thx

  • Stop phone from dimming when using Google Maps

    I'm not sure if this is the right place, but I was wondering if there was a way to stop my iPhone from dimmer while using Google Maps?

    Turn tracking mode on by tapping the blue button at the lower left. That will center your map on your current location. As you move around, iPhone updates your location, adjusting the map so that the location indicator remains in the center of the screen. The screen will remain on so long as you remain in tracking mode.
    See pages 115-116, http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • How do I stop Pages from opening when I log back in? Login items are not ticked.

    Prior to Yosemite I had trouble with Pages where it closed down the app when I closed a document.
    I was given a command line to put in the 'Terminal' to deactivate Pages. This worked.
    That command was -  -g NSDisableAutomaticTermination -bool TRUE/False.   But that isn't recognised any longer when I reverse the True/False.
    But I now don't want Pages to open automatically when I Log in.
    The box is not ticked for Pages in System Preferences- Users- Login Items.

    It needs to be removed from the list, not just unticked.
    (124669)

  • How to stop Pages from "rounding up" in charts?

    I'm a total novice when it comes to spreadsheeting so please help me someone!
    I am using Pages invoice template. It comes with a lovely table/spreadsheet to determine how much the invoice is for.
    I am trying to get Pages to accept a number like 3.5 in the chart. Although it seems to multiply correctly (it gives me the correct number using 3.5 to multiply the rate), it always rounds up and changes my 3.5 to 4 afterwards.
    What can i do to stop this? I am multiply my day rate, and sometimes i work a half day.
    Thanks!

    May I write that the response is available page 141 of the Numbers User Guide which is available from Help > Numbers User Guide ?
    Yvan KOENIG (from FRANCE mardi 24 mars 2009 20:47:14)

  • How to stop a while loop when using tab control

    How do you use a tab contol to stop what is happening on one tab when you switch to another tab?  In the test example I attached, I have a while loop nested inside a case structure controlled by the tab control.  When I tab to page two the elapsed timer starts but when I switch to another tab it does not stop.  I can't come up with an easy way to stop or exit the while loop when I change tabs. 
    Thank you
    Danny
    Attachments:
    tab control.vi ‏24 KB

    I played with it a little more and came up with this fix.  This fixes it but is not tied to the changing tabs as I was looking for.  Is this just too many nested loops and a bad idea?
    Danny
    Attachments:
    tab control fix maybe.vi ‏26 KB

  • How to keep files from disappearing when using Dynamic link to AE in PremProCS4?

    I am at my wits end here and hope someone can offer a solution.  I use Dynamic Link in PremProCS4 to link a clip in my timeline to AfterEffects.  I follow the instructions in my book and everytime I close my files and reopen..I loose the clip along with the effects...I get the place card instead.  Here are the steps I do as per the Adobe Classroom in a Book Explains:
    I double click on my .MTS file in the Project Board so it comes up on my Source Screen.
    I take select the part of the clip I wish to use in my timeline and drag it to the appropriate spot on a video layer.
    I then right click the "clip" and select "Replace With After Effects Comp"
    I then name the new file.  name or whatever.aep
    It opens in AE
    I then apply two simple effects... keying and a cartooning effect I use from NewBlue Cartooner.
    As instructed I then go directly back to PremPro and do a "render" by pressing the Enter Key.  This does not work since I only get a yellow bar above the clip instead of a red on???
    So then I save the PremPro project and close it then go to the AE project, save and close it.
    When I reopen PremPro the file has a place card in it and in AE it says I am missing a file.
    I have tried many different ways to do this process including re-importing the .MTS file.
    I can close PremPro and reopen it and all is the same as long as I don't close the AfterEffects project.  Once AE is closed it looses the file.  On a note here I keep all my computer source files in the same place and it never changes plus they are in my PPro Project as well.  I never change the names so this isn't this reason.
    Is there a tried and true method to select a piece of clip in the video layer in Prem Pro and add effects from AE and not have it misplace the files?
    Thanks  Kate

    Hi Curt, and thank you for taking the time to respond.
    Its odd how I've been trying to figure this one out for a long time and I tried your suggestion but it didn't make any difference..darn.
    In the AE forum they say this is quite common and no one really knows why...double darn.
    So I went back with a fresh mind this morning and tried something else..and it worked...so far anyway.
    So far I figured it out... I guess I just needed to ask the question and write it all out to help get my brain working in the right direction: 
    Since the normal process to do this doesn't work for me ..and apparently many others..here is the solution for those of you having similar issues.
    In PremPro select the desired clip you wish to place effects on
    Rename it and save
    R click and "Replace with AE composition"
    Name new file
    You will see three files pop up in AE in the project panel.
    The original source clip .. in my case.. shows an icon that lets me know it isn't the true file.
    Highlight this file with a click and then go Ctrl H (for PCs)
    The group of computer source clips you use for your project will come up.. double click on the original clip you had imported into your PPro project.
    The source file icon in AE will change to an icon that denotes the true file...save
    Go to your still open Ppro project and make sure it carried the effects over..save.
    Now you can save and close the AE project.
    So for this works for me today and I hope this helps anyone else dealing with a similar issue.
    Thanks.

  • How to stop portlets from disappearing when invoked?

    Hi,
    I have a portal Application that contains 2 portlets from WSRP procuder.
    These portlets have IPC through a parameter.
    The first portlet is an LOV of client list, and the second portlet is a financial situation which takes the client as parameter.
    In my Portal Application, when I choose a client and click the button both portlets disappear and then reapper when the second portlet is refreshed with new data.
    How can i stop the first portlet from disappearing and reappearing when invoked.
    Thank you in advance
    Emile

    Hello:
    Try rebuilding the library. 
    http://support.apple.com/kb/HT2638
    Barry

  • How to stop page from auto-submitting forms?

    Hello, I am using JDeveloper JDeveloper 11.1.2.3.0, and it is from some days now that I am facing an wired problem with my application. I click a link to pass from one page to the other. The second page is composed of a pannelTabbed component with different view forms within each tab. As soon as I click to another tab within the second page the Commit buttons on all the page get Enabled automatically! I do not understand why is this happening.. Can anyone please give me an idea of what might have caused this? It is giving me a lot of problems now when I want to create or edit something within the page..
    Thank you

    <af:panelTabbed id="pt2" styleClass="AFStretchWidth" dimensionsFrom="auto">
                                        <af:showDetailItem text="Contract Info" id="sdi1" stretchChildren="first"
                                                           disclosed="true" styleClass="AFStretchWidth">
                                            <af:panelGroupLayout id="pgl29" layout="scroll" halign="center">
                                            <af:spacer width="10" height="10" id="s68"/>
                                                <af:panelFormLayout id="pfl1" fieldWidth="400" labelWidth="100" rows="1"
                                                                    maxColumns="2">.........
    Excuse me for responding now but I had some internet problems. So my pannelTabbed starts like this and within each tab there are some elements..
    I am using BC4J and I just tried debug mode but I do not see anything happening when tabs are clicked.

  • How to stop header from displaying when hovering over mail photos

    Hi
    This is an annoying behaviour to say the least. In MacMail when I move my cursor over an imbedded photo in a message the full header for the photo that is a link shows up almost blocking the photo. I can understand that the cursor would turn into a hand but there must be a way to stop the full address of the photo link? from displaying.
    Anyone?

    E. Michael Brandt wrote:
    Screen readers whould still read the alt attribute despite the presence of a title attribute.  In fact most apparently do not read the Title on an image:
    http://www.paciellogroup.com/resources/articles/WE05/forms.html
    As always some Screen Reader users can reconfigure the software:
    http://www.isolani.co.uk/blog/access/ConfiguringLinksInScreenReaders
    So in general I think you are safe doing this, but perhaps others can weigh in here.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia
    Thanks very much,
    I saw several scripts where Javascript were used.
    But your solution is very simple and it works perfectly in IE7, don't know if it works in IE 8.
    Thanks again,
    Patrick

Maybe you are looking for

  • Itunes keeps crashing when trying to sync my iPhone 4s

    Every time, I put my iphone in its dock, itunes opens (which is fine) and then tries to sync the device - including the back up. By this, I mean it is going through the 6 step process. At step 6 though, it crashes. Which is INCREDIBLY frustrating. Wh

  • Get sales order in condition routine of VF01

    Hi I need to get the sales order number (or at least the delivery number) in a condition routine which is called in VF01. I can't find any structure/internal table/variable where it is passed. Does anybody have an idea where to find the information?

  • Photo gallery using SlidingPanel SpryData

    I want to build a horizontal photo gallery with Sliding Panels and getting the data from an xml file. SoI read carefully the example of Building a Sliding Panels widget with Spry Data but i cannot understand how to get 5 or 6 panels at once. My idea

  • Regarding mapping

    Hi Buddies,    How do u transport mapping from development to quality server. How many types of mapping r there. Thanks in advance Regards, Nagaraju Tankala

  • Why is there no "download now" button?

    There is no "download now" button on the 11.6.602.180 page for msie 64-bit