Form Fields In Adobe Acrobat
Jul 20, 2005Can someone give me the code to show or hide a field based on the status
of another field (in this case a checkbox). The actual application is
Adobe Acrobat.
Can someone give me the code to show or hide a field based on the status
of another field (in this case a checkbox). The actual application is
Adobe Acrobat.
How can I detect whether Adobe Acrobat Reader (any version) is installed using javascript? I am able to detect the installation using IE 5+/NS7 on Windows. But unable to detect on IE/NS on Mac 10.3.3
View 2 Replies View RelatedThere are two input fields in a form, but only one of them is required, they are not required at the same time. Either A or B is required. ( A is required OR B is required). In other words, a user can input data to field A, or he can input data to filed B, but he can not input data to Both A and B at the same time. How to implement this constraint in Jquery form validation?
View 17 Replies View RelatedI have been looking for the past 2 days for a script that I can add and delete table rows.
I have found a lot but so far all of them add an input field but I desperatly need a textarea or ideally a section of input fields.
I have tried to change the code from input to text area but none of them worked.
Have you come across to a similar script.
I would appreciate any contributions.
What I am trying to do is a page where the user will add their employees details so we can order business cards for them. So I have fileds such as, Name, Tel Num, Email, Cell etc.
I have this order form where the customers can change the quantity by intput in a text field.I would like to have the text field changed with select fields, but doing so in the form, the script is not doing anymore.Can anyone have a look and tell me what to change in the scritp to accept select fields in place of the text fields.
View 5 Replies View RelatedWe have a catalog of the products we sell online as a collection of PDF files. The files may be accessed individually or there is the option of going directly to any catalog page by using a little js utility.
The utility is your typical input text box & button combo. Typing in a valid page number in the text box and clicking the button opens a new window with a PDF turned to the requested page, and works on the most common browsers/ OS combinations.
Here's the prob: We decided to make it so the ENTER key would activate the script. Works fine in Windows, but on Mac with Safari nada! What these users get is the correct PDF turned to page one. I've tried a few variations of the key capture code to no avail.
:confused: At present I am clueless though my intuition suggests this may have something to do with Acrobat. Code:
I want to do scrolling like done in google books (acrobat reader
style)
http://books.google.com/books?vid=I...GvO7VKdoRrLLsJQ
it could be done by scrollTop & scrollLeft ... but how to get exact
effect like in acrobat reader.
I have a small script which runs when the acrobat document opens and populates a field with the date, but I would like the date to be filled when the document is first opened, then saved with that date.
code:
// get new Date object
var d = new Date();
[code]....
I need information (sure, i used google but couldn't find anything useful yet) about automating/adjusting Acrobat Reader using javascript. I need to print multiple documents without having to open them individually and selecting the print option on each document. I also need to adjust the user interface. Sometimes printing is allowed, sometimes it is not. So i need a way to disable (or remove) the print button from the default toolbar.
Anyone has experience (sample code) or documentation i can use?
I would like text fields in an Adobe form to auto-populate when an item from a combo box list is selected. For example, if a user selects "shirt," then a set of text fields will auto-populate with the budget figures for a "shirt." I am not familiar with JavaScript. Would anyone be willing to explain the first steps in the project described above? Is there a way I could adapt previously-used scripts and insert my own information?
View 1 Replies View RelatedNotice: This is a discussion thread for comments about the SitePoint article, Take Your CSS to the Desktop with Adobe AIR!.
The only book that covers Adobe AIR with AJAX (html, javascript) is Larry Ullman's Adobe AIR (Adobe Integrated Runtime) with Ajax: Visual QuickPro Guide
All the other books cover Flex (MXML) and Flash (Actionscript) and expect you to know those things first.
Notice: This is a discussion thread for comments about the SitePoint article, How To Store Adobe AIR Application Preferences Using JavaScript.
Great article. Just one question - why did you choose xml and not sqlite database? Don't you think using a sqlite database is a more stable way of storing the preferences?
I am having a problem with the submit() method that is driving me nuts. I'm using document.form.submit() with large text fields (approx. 2000 characters) and am getting a "Invalid Syntax" error. If I do the same thing with a text field of under 1500 characters, it works fine.
Is there some size limit here that I don't know about?
Having a few problems with a form validation script. Its supposed to stop sending the form if key fields are missing, but it just sends them anyway!
Below is the code i use in the header to check for blank fields:
Code:
And now the code i use to action it:
Code:
From what i can see the fields match, it all links up correctly but still it will allow blank forms to be sent.
We're using Malsup's form plugin v2.82 and jQuery core 1.6.2. We're having issues in IE7 where, on a form with file upload, form fields are being dropped before the form is submitted to the server.We tracked it down to the `fileUpload` function, specifically line 196 where each field in the form data has `.attr('disabled',false)` run against it. If we change this to`.prop('disabled',false)` it all works fine.I don't see a clearly marked place to submit bug reports for the form plugin, and wanted to verify that others see this as well,
View 6 Replies View RelatedI'm having trouble changing the font color of my labels ONLY when I stop the form from submitting due to blank fields. I'm not sure whether if just changing my CSS will achieve what I want, or am I going to have to add somethig to my if else statement, or both? I would think I would need to change CSS to :
label.onfocus {
color:red;
}
but a little confused on what else.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
[Code]...
I have two js scripts running on my project at the moment, one is uses mootools and the other uses jquery-1.2.3min, both work but not if they are on the same page.The mootool adds the pop out effect to a form box and the jquery enables the nav switch for 2 boxes that contain different form fields for a search engine. Now I've been reading up on the two and have decided to favour jquery which means I have to reproduce the same effect in mootool but with my limited knowledge it's proven rather hard.The mootool code:
var isExtended = 0;
var height = 165;
var width = 240;
[code]....
I have a form that has a reset button, and when it's closed, the form is reset. However, at least in testing on my own machine, I notice that the form fields are remembering past input (on Firefox 4 anyway). Once this goes public, I don't want the form remembering anything in case the website is viewed on a public machine. How can I keep the form fields from remembering any past input?
View 2 Replies View RelatedI have a working contact form with 3 of the fields requiring validation and they work well. I have added extra fields to the form (StatusClass, Project, CameFrom). These 3 fields return fine but I need to validated them. My problem is that the new fields don't show in the behaviours/validate panel even though they are within the form tag.
<script type="text/JavaScript">
<!--
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
[Code]...
I am re-developing my website and want to use some Ajax/jQuery in it (so I am learning as I go) and I am not sure if this is possible so that is my first question:I have a registration form and I would like to know if after the person registering has completed their first and surname and the 2 sections of their postcode if I can use jQuery to run a PHP script to see if they are already registered before waiting for the form to be submitted and running a script then.I am thinking onkeyup (or similar) after the last field is completed but I don't know how that would work needing to also use 3 other field values.If this is possible, can anyone give me any ideas of examples that do this or how I can go about passing all the variables and running the scripts at the correct time.
View 6 Replies View RelatedI am using the ultimate form validator [URL] but the form is still submitting even though it says which fields are missing..
View 2 Replies View RelatedNotice: This is a discussion thread for comments about the SitePoint article, A New Window on HTML-Based Adobe AIR Apps.Contest ended early? After submitting the quiz, it says it's over already - not supposed to expire until the 5th, right?
View 2 Replies View RelatedHow do I create a countdown timer to be used in adobe flash? I have the site planned out using Flash now I cant get the timer to work. it should start at 0 and go to 60 seconds.
View 3 Replies View RelatedI have a submenu that expands over the adobe pdf reader addon/plugin. See this basic exampleI need to make it so that the menu stays above the plugin. Currently, parts of it are cut off.After some research I came across the idea of placing an iframe below the submenu to force it to stay on top. As the topic suggests this is called an "iframe shim" and I have been some what successful. See this basic example one submenu is shown on page load because i plan to take screen shots of it) The only problem is that it doesn't work in opera. I have tested it in chrome and firefox and they are working. I can't test it in ie8 at the moment because the plugin for some reason just won't work on the page, however i have tested the approach before and it did work in ie
View 1 Replies View RelatedI just downloaded the new Adobe Edge program for creating HTML5 websites. I was trying out a proof of concept for something I wanted to do on a site with a simple circle shape (will eventually be a soccer ball) rolling across the screen when clicked. The animation looks great, but it happens when the page loads, not when the image is clicked.
My HTML
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<!--Adobe Edge Runtime-->
<script type="text/javascript" src="edge_includes/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="edge_includes/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="edge_includes/edge.0.1.1.min.js"></script>
<script type="text/javascript" src="edge_includes/edge.symbol.0.1.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="ball_edge.js"></script>
<link rel="stylesheet" href="ball_edge.css"/>
<!--Adobe Edge Runtime End--> .....
I am trying to put together a Adobe Air Application that is basically a RSS feeder for my blog (custom made). I have the Air application all design and coded on the front end in terms of how it looks. My problem now is that I dont know how to get that XML document to my Air application using jQuery. Im still a beginner at jQuery (and JS in general).
View 1 Replies View Related