... not in JS, that i know of, maybe an ActiveX control, to pull that from the registry, or wherever it is, but that will put your user's Antivirus on alert,...
12197
Tim Sabin
timsabin
Nov 3, 2005 5:07 pm
Hi, When the JSP writes out JavaScript, it's just writing another section of the HTML page. An example: <script type="text/javascript"> var jsBlah = <%=jspBlah...
12198
Tim Sabin
timsabin
Nov 3, 2005 5:07 pm
Please give us some code and try to expand what you're asking. --Tim Sabin...
12199
Michael Ballai
mballai
Nov 3, 2005 5:07 pm
I found some code that works if you do it manually http://www.faqts.com/knowledge_base/view.phtml/aid/1544/fid/129 Any idea as to how I can do this by simply...
12200
Tim Sabin
timsabin
Nov 3, 2005 5:08 pm
Soren, Using ActiveX in any flavor will limit all your users to using IE only. There are other browsers out there. It sounds to me like this is way beyond the...
12201
Tim Sabin
timsabin
Nov 3, 2005 5:08 pm
The "this" keyword works the same in JavaScript as it does in Java. It refers to fields and methods belonging to the current object. A good example is a...
12202
Tim Sabin
timsabin
Nov 3, 2005 5:11 pm
No. JavaScript cannot access files on the user's computer. There are 2 ways to do this: 1) Your server program reads server files and inserts them in the ...
12203
Darth Mikey D
darth_mikeyd
Nov 3, 2005 6:16 pm
Thanks for the reply. That got it working. My next question is this, is there a way to set the background color of the window that opens to a certain color?...
12204
viewcharts
Nov 3, 2005 6:17 pm
Is the text file going to change, or do you just need to make links from the list in the text file? If all you need to do is conver the list to html links, you...
12205
viewcharts
Nov 3, 2005 6:18 pm
Hello, I am migrating from javascript to using PHP and still very new to PHP. What I am trying to do in php is populate a form when it loads up. For a test, I...
12206
slcam2000
Nov 3, 2005 6:18 pm
Hey everyone: I am fairly new to Acrobat but have managed to design some forms that I need for work. Each document is created with columns and rows and there...
12207
viewcharts
Nov 3, 2005 6:24 pm
Hello, I am migrating from javascript to using PHP and still very new to PHP. What I am trying to do in php is populate a form when it loads up. For a test, I...
12208
Darth Mikey D
darth_mikeyd
Nov 3, 2005 8:01 pm
This is what I am doing. The file will be sitting on the server with the web page, so that is not a problem. Also, the file will not be updated or changed in ...
Thanks for the reply. I did end up just using tables. It was just annoying me that I couldn't get the span thing to work in FireFox when it worked just fine...
12211
David Smart
smartware_co...
Nov 3, 2005 8:17 pm
Please look at the view source output carefully yourself before posting it, especially if the browser is telling you you have a syntax error. Your 080.gif is...
12212
Garvin Casimir
khing2
Nov 4, 2005 12:26 am
I have an alternate solution. You don't need to check sourceElement for events. You can just pass the object as an argument in the function <input type=button...
12213
Ariel Seoane
arielseoane
Nov 4, 2005 12:42 am
Most times, javascirpt is used client side, so that JS scripts are run on the client (the person visiting the site) machine, once the page is received. If you...
12214
Jon Stephens
jdwayside
Nov 4, 2005 12:56 am
Another example for using the this keyword: <form> <input type="text" name="someText" value="Hello!"><br> <input type="button" value="Click Me!" ...
12215
Jon Stephens
jdwayside
Nov 4, 2005 1:23 am
Hi Wes, 1. Please don't post the same question multiple times. This a mailing list, not a chatroom or forum, and many of the people who read this list...
12216
David Smart
smartware_co...
Nov 4, 2005 8:05 am
You're missing a closing quote on the bgcolor tag. Regards, Dave S ... From: Darth Mikey D To: JavaScript_Official@yahoogroups.com Sent: Friday, November 04,...
12217
David Smart
smartware_co...
Nov 4, 2005 8:06 am
For similar things, I just tend to change the text file to a JS file and make the text information into assignment statements or similar to populate variables...
12218
Tim Sabin
timsabin
Nov 4, 2005 1:56 pm
JavaScript doesn't read files. Also, browser HTML runs on the client only. Instead, you would generate the HTML needed via your server language. An example:...
12219
Alain Haddad
haddad_alain
Nov 4, 2005 2:27 pm
hey you can use AJAX to read the file content and insert them into your html page.. search for AJAX on the net and i'll give you an example.. var x = new...
12220
Alain Haddad
haddad_alain
Nov 4, 2005 2:32 pm
hi let me remind you first of all that document.writeln or document.write erase all the data from the page, also the scripts.. thats why the script will only...
12221
mballai
Nov 4, 2005 9:33 pm
I'm using this function to launch a URL from a menu selection function formHandler(mymenu){ var URL = document.mymenu.site.options ...
12222
Wes G
viewcharts
Nov 4, 2005 9:34 pm
Hi Jon, Sorry, I didn't realize I posted twice to your group. I realize it is a javascript group, but thought I saw it supported other languages too, but will...
12223
Michael Ballai
mballai
Nov 4, 2005 10:44 pm
I came up with a rather crude solution making the optional value "#" instead of the usual "". --makes a strange url in the address bar. would be interested in...
12224
Igor Feghali
igorfb
Nov 5, 2005 8:49 am
why does document.forms[0].field.onkeypress=onlynumbers; works and <input type=text name=field onkeypress="onlynumbers()"> don't? the function is: function...
12225
Fernando PHP
fernandosouz...
Nov 5, 2005 8:50 am
I have a button which makes a search in a database (MySQL) using AJAX, the problem is when I use IE it does not do what is expected, instead it says "Error:...