No more thread previews?

Discussion in 'Tips On Using The Board' started by wildcatsrule, Jul 3, 2007.

  1. wildcatsrule

    wildcatsrule Well-Known Member

    I used to be able to highlight the title of a thread in the the new posts lists and a small drop down box would appear with the thread starters first post. Now this isn't happening. Anybody else having this problem? Or is it just my computer? :Do No: :confused:
     
  2. David G

    David G de-modded....

    Works fine for me still.
     
  3. austingta

    austingta Well-Known Member

    Still good here. Maybe restart your computer.
     
  4. Dale

    Dale Sweepspear

    Highlight it?
    If I just move the cursor over the title and I see that.
    If you keep the cursor in motion, (slightly wiggle it back & forth.)
    The little drop down won't close before you are done reading it.



    :TU:
     
  5. wildcatsrule

    wildcatsrule Well-Known Member

    Whoops! I didn't mean highlight it, I just put the cursor on it like you said and the thread appears below-or at least it used to. Still not working. I get the little hand to appear, but no thread drop down box. This has been going on for several days now:confused: :Do No:
     
  6. unclelar

    unclelar Well-Known Member

    mine works!
     
  7. alan

    alan High-tech Dinosaur

    Mine works also. I've noticed that on some computers the text box is larger than on mine. What determines the size of the box? :Do No:
     
  8. Truzi

    Truzi Perpetual Student

    Hmm, are you allowing javascript?
     
  9. Bad Boattail

    Bad Boattail Guest

  10. alan

    alan High-tech Dinosaur

    Mine shows only about the first line and a half.


     
  11. wildcatsrule

    wildcatsrule Well-Known Member

    Let's just say you are asking someone whose computer skills/knowledge are rudimentary at best. So here I go with a series of what I'm sure will be considered dumb questions.

    1) What is javascript?
    2) Do I want javascript?
    3) How do I check to see if I'm allowing it?
    4) How do I add it or get rid of it, depending on whichever I need to do?


    Somebody get me a #2 pencil.....:Comp:
     
  12. Bad Boattail

    Bad Boattail Guest

    In short:

    JavaScript is a scripting language most often used for client-side web development. Its proper name is ECMAScript, though "JavaScript" is much more commonly used. "JavaScript" is actually Netscape Communications Corporation's (and now the Mozilla Foundation's) implementation of the ECMAScript standard.

    JavaScript is a dynamic, weakly typed, prototype-based language with first-class functions. JavaScript was influenced by many languages and was designed to have a similar look to Java, but be easier for non-programmers to work with.[1] The language is best known for its use in websites (as client-side JavaScript), but is also used to enable scripting access to objects embedded in other applications.

    Despite the name, JavaScript is unrelated to the Java programming language; though both have a common debt to C syntax. The language was renamed from LiveScript in a co-marketing deal between Netscape and Sun in exchange for Netscape bundling Sun's Java runtime with their browser, which was dominant at the time. Semantically, JavaScript syntax has far more in common with the Self programming language.

    "JavaScript" is a registered trademark of Sun Microsystems, Inc. It was used under license for technology invented and implemented by Netscape Communications and current entities such as the Mozilla Foundation.

    Some JavaScript source codeJavaScript was originally developed by Brendan Eich of Netscape under the name Mocha, later LiveScript, and finally renamed to JavaScript. The change of name from LiveScript to JavaScript roughly coincided with Netscape adding support for Java technology in its Netscape Navigator web browser. JavaScript was first introduced and deployed in the Netscape browser version 2.0B3 in December of 1995. The naming has caused confusion, giving the impression that the language is a spinoff of Java, which is not the case; and has been characterized by many as a marketing ploy by Netscape to give JavaScript the cachet of what was then the hot new web-programming language.

    To avoid trademark issues, Microsoft named its implementation of the language JScript. JScript was first supported in Internet Explorer version 3.0, released in August 1996 and included Y2K compliant date functions unlike JavaScript at the time. Microsoft submitted JScript to ECMA for standardization resulting in the standardized version named ECMAScript.

    As of 2006, the latest version of the language is JavaScript 1.7. The previous version 1.6 corresponded to ECMA-262 Edition 3 like JavaScript 1.5, except for Array extras, and Array and String generics. ECMAScript, in simple terms, is a standardized version of JavaScript. The ECMA-357 standard specifies E4X, a language extension dealing with XML.

    JavaScript is a prototype-based scripting language with a syntax loosely based on C. Like C, the language has no input or output constructs of its own. Where C relies on standard I/O libraries, a JavaScript engine relies on a host environment into which it is embedded. There are many such host environment applications, of which web technologies are the best-known examples. These are examined first.

    One major use of web-based JavaScript is to write functions that are embedded in or included from HTML pages and interact with the Document Object Model (DOM) of the page to perform tasks not possible in HTML alone. Some common examples of this usage are:

    Opening or popping up a new window with programmatic control over the size, position and 'look' of the new window (i.e. whether the menus, toolbars, etc. are visible).
    Validation of web form input values to make sure that they will be accepted before they are submitted to the server.
    Changing images as the mouse cursor moves over them: This effect is often used to draw the user's attention to important links displayed as graphical elements.
    The DOM interfaces in various browsers differ and don't always match the W3C DOM standards. Rather than write different variants of a JavaScript function for each of the many browsers in common use today, it is usually possible, by carefully following the W3C DOM Level 1 or 2 standards, to provide the required functionality in a standards-compliant way that most browsers will execute correctly. Where this is not practical, the availability of functions and properties can be tested during execution. Care must always be taken to ensure that the web page degrades gracefully and so is still usable by any user who:

    has JavaScript execution disabled - for example as a security precaution
    has a browser that does not understand the JavaScript - for example on a PDA or mobile phone
    is visually or otherwise disabled and may be using an unusual browser, a speech browser or may have selected extreme text magnification. For more information on this, see the Web Accessibility Initiative
    Other examples of JavaScript interacting with a web page's DOM have been called DHTML and SPA.

    A different example of the use of JavaScript in web pages is to make calls to web and web-service servers after the page has loaded, depending upon user actions. These calls can obtain new information, which further JavaScript can merge with the existing page's DOM so that it is displayed. This is the basis of Ajax programming.

    Outside of the Web, JavaScript interpreters are embedded in a number of tools. Adobe Acrobat and Adobe Reader support JavaScript in PDF files. The Mozilla platform, which underlies several common web browsers, uses JavaScript to implement the user interface and transaction logic of its various products. JavaScript interpreters are also embedded in proprietary applications that lack scriptable interfaces. Dashboard Widgets in Apple's Mac OS X v10.4 and Yahoo! Widgets are implemented using JavaScript. Microsoft's Active Scripting technology supports JavaScript-compatible JScript as an operating system scripting language. JScript .NET is a CLI-compliant language that is similar to JScript, but has further object oriented programming features. Tools in the Adobe Creative Suite, including Photoshop, Illustrator, and InDesign, allow scripting through JavaScript.

    The interactive music signal processing software Max/MSP released by Cycling '74, offers a JavaScript model of its environment for use by developers. It allows much more precise control than the default GUI-centric programming model.

    The Java programming language, in version SE 6 (JDK 1.6), will introduce the javax.script package that allows any Java application to read, interpret and execute JavaScript scripts at run-time. The Java developer can make objects and variables that are part of the host application available to the JavaScript code using a Bindings object. These aspects of the running application can then be accessed and manipulated at run-time from JavaScript in a similar manner to the way that client-side scripts access the DOM of a displayed page in a web browser.

    Each of these applications provides its own object model which provides access to the host environment, with the core JavaScript language remaining mostly the same in each application.

    JavaScript debugging has some specifics in comparison with stand-alone applications. JavaScript programs usually rely on interaction with the loaded page's Document Object Model (DOM) so errors may be caused by wrong DOM usage in a technically correct script. This makes JavaScript errors difficult to find. However, currently both Internet Explorer and Gecko-based browsers come with a JavaScript debugger. Gecko browsers use the Venkman debugger or the Firebug debugger for Mozilla Firefox. Opera announced a debugging developer tool in a preview released in February 2007. Client-side JScript in Internet Explorer can be debugged with Microsoft Script Debugger. Some client-side JavaScript errors might depend on specific client side conditions such as browser version, user input or other installed software. Microsoft Visual Studio can be used to debug server-side and command-line JScript. Microsoft also provides Microsoft Script Editor (MSE) as part of their Microsoft Office package for scripts embedded in Microsoft Office documents. There are also some free tools such as JSLint, which will scan JavaScript code looking for problems, as well as a commercial JavaScript Debugger called SplineTech JavaScript HTML Debugger for Microsoft Windows. A debugger for the engine powering Apple's Safari, Webkit is also avalible under the name Drosera.

    Since JavaScript is interpreted, loosely-typed, and, when run at the client-side, may be hosted in varying environments, applications, implementations and versions, the programmer has to take extra care to make sure the code executes as expected in as wide a range of circumstances as possible, and that functionality degrades nicely when it does not.

    Each script block is parsed separately. On web pages where JavaScript in script blocks is mixed with HTML, syntax errors can be identified more readily by keeping discrete functions in separate script blocks, or (for preference), using many small linked .js files. This way, a syntax error will not cause parsing/compiling to fail for the whole page, which can help to allow a graceful exit.

    As JavaScript is a rich interpreted language running arbitrary server-provided code on a client computer, it has suffered its fair share of security issues. Many attempts at bypassing logical barriers to steal confidential information make use of JavaScript to perform their deeds behind the scenes, using techniques such as cross-site scripting (XSS). Non-expert users usually can't notice what is going on because the malicious code has no visible effect on their browsing experience. Besides, it is not obvious to people who are not programmers that their Web browser includes a full-blown programming language interpreter, with the power and risks implied.

    The basic JavaScript language and the standard objects present few security risks. Most risks come from the way in which access is provided to the execution environment, which is most commonly the browser.

    Java has similar security issues but these are considered less serious because the Java virtual machine provides a well-defined sandboxing model and few Web sites today (as of 2007) require Java, whereas many use JavaScript.

    There is no relationship between Java and JavaScript; their similarities are mostly in basic syntax because both are ultimately derived from C. Their semantics are quite different and their object models are unrelated and largely incompatible. Like C and C++, all Java variables and members are statically typed, whereas all JavaScript variables (as well as object properties and array elements) may hold a value of any type.

    The standardization effort for JavaScript also needed to avoid trademark issues, so the ECMA 262 standard calls the language ECMAScript, three editions of which have been published since the work started in November 1996. The object model of browser-based JavaScript, the Document Object Model (DOM), is not part of the ECMAScript standard. It is defined in a set of separate standards developed by the W3C, and is applicable to the access and manipulation of HTML and XML documents in many computer languages and platforms.

    Microsoft's own VBScript, like JavaScript, can be run client-side in web pages. VBScript has syntax derived from Visual Basic and will only run if the web pages are viewed in Internet Explorer.

    ActionScript, the programming language used in Macromedia Flash, is another implementation of the ECMAScript standard.

    JSON, or JavaScript Object Notation, is a general-purpose data interchange format that is defined as a subset of JavaScript.

    JavaScript OSA (JavaScript for OSA, or JSOSA), is a scripting language for Mac OS based on the Mozilla 1.5 JavaScript implementation, SpiderMonkey. It is a freeware component made available by Late Night Software. Interaction with the operating system and with third-party applications is scripted via a MacOS object. Otherwise, the language is virtually identical to the core Mozilla implementation. It was offered as an alternative to the more commonly used AppleScript language.

    ECMAScript was included in the VRML97 standard for scripting nodes of VRML scene description files.

    JavaScript is also considered a functional programming language like Scheme and OCaml because it has closures and supports higher-order functions.

    It's a free world, so it's up to you :TU:

    Go to your configuration screen en check your Software folder

    Click here for a free download :Comp:

    (I'm not sure if the language wil change when you click on that page...)
     
  13. 69SkylarkConv

    69SkylarkConv Active Member

    Are you logged into the site with your Username and password? If you're not, the preview will not work. I just logged out to test it and the feature went away... Upon logging back in it was fine. Hope this helps.

    -Jim
     
  14. wildcatsrule

    wildcatsrule Well-Known Member

    Yep- I'm logged in and it still won't work. Still not sure about all this javascript business or if that even has anything to do with it:Do No:
     

Share This Page