Loading navigation

Atlas

Your web-based eye in the sky

Road maps, satellite views, directions, GPS tracking, and more! Atlas is the easiest way to find what you're looking for.

Open

Ready to get started?

Open Atlas now.
Details

Want more information?

Read more about Atlas.

Bugs

Bug tracking made stupid easy

More advanced than Post-it notes, less complicated than Team System. We've stripped the bloat from traditional bug tracking systems and dramatically simplified the whole mess.

Open

Ready to get started?

Open Bugs now.
Details

Want more information?

Read more about Bugs?

Folders

Your files, on the internets

Store your digital photos, music, movies and documents online. Work with files in your web browser like you would on your desktop.

Open

Ready to get started?

Open Folders now.
Details

Want more information?

Read more about Folders.

Gadgets

Mini-applications for Windows Live

Gadgets customize your Windows Live homepage, putting you in charge of what information you'd like to interact with.

Open

Ready to get started?

Add all of our gadgets to your Live.com page.
Details

Want more information?

Read more about the gadgets we've created for Live.com.

Scripts

JavaScript Framework designed for .NET gurus

Built for software developers, Scripts is an object oriented JavaScript framework with a programming model similar to the Microsoft .NET Framework.

Open

Ready to get started?

Open the examples and browse through the documentation.
Details

Want more information?

Read more about Scripts.

FreshLogicStudios.Scripts.Console

Summary


Represents input, output, and error streams.
Defined in Console.js

Constructors

FreshLogicStudios.Scripts.Console()

Properties

  • static Object In
    Gets the input HTML element.
  • static Object Out
    Gets the output HTML element.

Methods

  • static void Clear()
    Clears the output HTML element of display information.
  • static void ReadLine()
    Reads the line of characters from the input HTML element, evaluates the line as an expression, and outputs the results to the console.
  • static void SetIn(<element> element)
    Sets the In property to the specified HTML element.

    Parameters

    • element - An HTML element that represents the input stream.
  • static void SetOut(<element> element)
    Sets the Out property to the specified HTML element.

    Parameters

    • element - An HTML element that represents the output stream.
  • static void Write(<object> object)
    Writes the text representation of the specified value or values to the output HTML element.

    Parameters

    • object - The value to write.
  • static void WriteLine(<object> object)
    Writes the specified data, followed by a line break HTML element, to the output HTML element.

    Parameters

    • object - The value to write.