This subject matter is generally related to web browsing services.
Web pages are created using a markup language which provides a means to describe a structure of text-based information in a document and to supplement that text with interactive forms, embedded images, and other objects. One popular markup language is HyperText Markup Language (HTML) which is written in the form of tags surrounded by angle brackets. HTML can describe the appearance and semantics of a web page, and can include embedded scripting language code (e.g., JavaScript®) which can affect the behavior of web browsers and other HTML processors. JavaScript® provides developers with the ability to add mouse event handlers or event listeners in a web page. These mouse event handlers can be assigned to specific regions of the web page and configured to receive mouse events in those regions, such as mouse up or mouse down events.
By contrast, web pages that are navigated with a touch sensitive device often need to respond to touch events generated by a user touching a web page with one or more fingers and making gestures. Conventional mouse event handlers cannot correctly interpret these touch events. Thus touch events require a different touch event model to correctly interpret touch events and to allow developers to fully utilize the capabilities of a touch sensitive display or device.
One or more touch input signals can be obtained from a touch sensitive device. A touch event model can be used to determine touch and/or gesture events based on the touch input signals. The touch and gesture events can be associated with touch input signals generated from different regions of a web page displayed on the touch sensitive device. Access can be provided to at least one touch or gesture event through a programming interface.
In some implementations, in a web browser, a method comprising: receiving a rotation value associated with a gesture event; and dynamically rotating an element of a web page associated with the gesture event in the web browser based on the rotation value, wherein the rotation value is a relative delta in degrees. The gesture event can includes two or more touch events.
In some implementations, in a web browser a method includes: receiving a scaling value associated with a gesture event; dynamically resizing an element of a web page associated with the gesture event in the web browser based on the scaling value, wherein the scaling value is a relative delta in document pixels. The gesture event can be associated with two or more touch events.
In some implementations, in a web browser, a method includes: receiving a touch list, the touch list including touch data to identify one or more touches on a web page, wherein the touch data includes a touch identifier and at least one set of touch location coordinates, wherein the touch list further includes data to a touch event target associated with each touch, wherein the at least one set of touch location coordinates includes a set of client coordinates, a set of page coordinates, and a set of screen coordinates. The touch data can identify one or more changed touches.
Other implementations are disclosed which are directed to systems, methods and computer-readable mediums.
In some implementations, a user may perform various functions with the elements on the web page 100 using a finger instead of a mouse. The user can, for example, touch the elements of the web page 100 using the touch sensitive display 402 shown in
In some implementations, one or more elements 102, 104, 106, 108 in web page 100 can be associated with one or more corresponding touch event handler by associating corresponding nodes in the DOM 150 with the touch event handlers. Touch event handlers can be inserted into HTML tags of the web page 100 and can execute a scripting language to perform an action when, for example, a user touches or gestures within one of the elements on the web page 100. For example, JavaScript® can work with the DOM 150 to attach actions to different touch events.
In some implementations, one or more elements 102, 104, 106, 108 can receive touch input which is detected by an event handler or listener. The touch input can be detected and processed into touch events by a touch event model which can be implemented in one or more layers of a software stack, as described in reference to
Each element in the web page 100, and its associated event handler, can receive, process and handle touch events. For example, if driver 202 (
In some implementations, a touch event can be detected per finger per node in the DOM 150. For example, a user can touch the touch sensitive display 402 at touch point 110 and touch point 112 at substantially the same time, and two separate touch events can be detected by the touch event model. A separate touch event can be detected for touch point 110 and touch point 112 because each node 102 and node 104 in the DOM 150 are associated with a separate touch event handler.
In some implementations, touch events can be delivered to the web page 100 as EventTargets. Some examples of touch events can include touchstart, touchmove, touchend, and touchcancel. Other touch events are possible. Touchstart is a touch event that is detected when a user first places a finger on the touch sensitive display 402 in a region on the web page 100 that is associated with an event handler. When the user moves his finger around on the web page 100, one or more touchmove events can be detected. When the user raises his finger off of the web page 100, a touchend event is detected. The touchcancel can be detected when the system interrupts regular event handling. For example, a touchcancel event can occur when the touch sensitive display 402 is locked out to prevent inadvertent touches.
In some implementations, gesture events can also be detected by combining two or more touch events. Like touch events, the gesture events (GestureEvents) can also be delivered to the web page 100 as EventTargets. Some examples of gesture events can be gesturestart, gesturechange, and gestureend. The gesture events can contain scale and/or rotation information. The rotation information can include a rotation value that is a relative delta in degrees. An element on the webpage 100 can be dynamically rotated base on the rotation value. The scale information can include a scaling value that is a relative delta in document pixels. An element on the webpage 100 associated with the gesture event can be dynamically resized based on the scaling value. Other gesture events are possible.
In some implementations, a touch list can be received that includes touch event data to identify one or more touches on the web page 100. The touch event data can include a touch identifier and at least one set of touch location coordinates. The touch list can also include touch event data to a touch event target associated with each touch. In some implementations, the one set of touch location coordinates can include client coordinates, page coordinates, and screen coordinates. In some implementations, the touch event data can identify one or more changed touches.
In some implementations, GestureEvents can be sent to the web page 100 before TouchEvents. For example, if a user places fingers on touch point 110 and touch point 112, then makes a rotating gesture with those fingers clockwise or counterclockwise on the touch sensitive display, the touch event model detects these multiple touch events and combines the touch events into a gesture event. The gesture event can then be sent to the web page 100, followed by the touch events that were combined to form the gesture event. This way, a developer has access to a gesture event and the individual touch events of the gesture event which provides the developer with more flexibility when developing a web application.
In some implementations, the touch events are received in the following order: a touchstart event, one or more touchmove events and a touchend or touchcancel event. Using the example of
An example touch event model will now be described in Interface Description Language (IDL). The functionality and data structures of the IDL can be accessed through an API by a web designer or application developer. Access to touch events and/or gesture events can be associated with attributes that can be inserted in a markup language document (e.g., HTML, XML) to define event actions in an application. For example, the attributes can be inserted in one or more HTML tags in an HTML document for generating the web page displayed on the touch sensitive display 402. The event actions can include running an embedded script (e.g., JavaScript®).
The following is example of HTML code snippet for processing touch events using the example IDL above. The HTML below shows, for example, that the touch event listener TouchStart and GestureStart were added to an element with the HTML code:
this.element.addEventListener(‘touchstart’, function(e) {return self.on TouchStart(e)}, false);
this.element.addEventListener(‘gesturestart’, function(e) {return self.on GestureStart(e)}, false);
The HTML code corresponding to the IDL above may be as follows:
One or more drivers in a driver layer 202 can communicate with the hardware 200. For example, the drivers can receive and process touch input signals generated by the touch sensitive display or device in the hardware layer 200. A core Operating System (OS) 204 can communicate with the driver(s). The core OS 204 can process raw input data received from the driver(s). In some embodiments, the drivers can be considered to be a part of the core OS 204.
A set of OS application programming interfaces (APIs) 206 can communicate with the core OS 204. These APIs can be a set of APIs that are usually included with operating systems (such as, for example, Linux or UNIX APIs). A set of core foundation APIs 208 can utilize the OS APIs 206, and a set of foundation APIs 210 can utilize the core foundation APIs 208.
Web page software development kit (SDK) 210 can include a set of APIs designed for use by applications running on the device. The touch event APIs can, for example, be included in the Web page SDK 210. The APIs of the Web page SDK 210 can utilize the foundation APIs 208. The Web page SDK 210 can, for example, include Web KIT provided by Apple Inc. The Web page SDK 210 can be offered as an API or can be accessible through an application, for example, a browser such as SAFARI®, provided by Apple Inc.
Applications 214 running on the device can utilize the APIs of the Web page SDK 210 to create web pages. The APIs of the Web page SDK 210 can, in turn, communicate with lower level elements, ultimately communicating with the touch sensitive display or device and various other user interface hardware. While each layer can utilize the layer underneath it, that is not always required. For example, in some embodiments, applications 214 can occasionally communicate with OS APIs 206.
In some implementations, the touch sensitive display 402 can comprise a multi-touch sensitive display 402. A touch sensitive display 402 can, for example, process multiple simultaneous touch points, including processing data related to the pressure, degree and/or position of each touch point. Such processing facilitates gestures and interactions with multiple fingers, chording, and other interactions. Other touch sensitive display technologies can also be used, e.g., a display in which contact is made using a stylus or other pointing device. Some examples of multi-touch sensitive display technology are described in U.S. Pat. Nos. 6,323,846, 6,570,557, 6,677,932, and U.S. Patent Publication 2002/0015024A1, each of which is incorporated by reference herein in its entirety. In some implementations, the multi-touch capable device 400 can display one or more graphical user interfaces on the touch sensitive display 402 for providing the user access to various system objects and for conveying information to the user.
In some implementations, the multi-touch capable device 400 can implement multiple device functionalities, such as a telephony device, an e-mail device, a network data communication device, a Wi-Fi base station device, and a media processing device. In some implementations, the multi-touch capable device 400 can include a web browser 404 for displaying web pages (e.g., web page 100). The touch sensitive display 402 can receive touch input signals made on the web page 100 and the touch model described above can be used to determine touch and/or gesture events based on the touch input signals. In some implementations, the multi-touch capable device 400 can implement network distribution functionality. In some implementations, the touch sensitive display 402 can be locked down when the multi-touch capable device 400 is proximate to the user's ear. This lockdown would cause a touchcancel event as described in reference to
In some implementations, an accelerometer 472 can be utilized to detect movement of the multi-touch capable device 400, as indicated by the directional arrow 474. Accordingly, display objects and/or media can be presented according to a detected orientation, e.g., portrait or landscape. In some implementations, the multi-touch capable device 400 may include circuitry and sensors for supporting a location determining capability, such as that provided by the global positioning system (GPS) or other positioning systems (e.g., systems using Wi-Fi access points, television signals, cellular grids, Uniform Resource Locators (URLs)). In some implementations, a positioning system (e.g., a GPS receiver) can be integrated into the multi-touch capable device 400 or provided as a separate device that can be coupled to the multi-touch capable device 400 through an interface to provide access to location-based services. The multi-touch capable device 400 can also include one or more wireless communication subsystems.
In some implementations, a port device, e.g., a Universal Serial Bus (USB) port, or a docking port, or some other wired port connection, can be included. The port device can, for example, be utilized to establish a wired connection to other computing devices, such as other multi-touch capable devices 400, network access devices, a personal computer, a printer, or other processing devices capable of receiving and/or transmitting data. In some implementations, the port device allows the multi-touch capable device 400 to synchronize with a host device using one or more protocols, such as, for example, the TCP/IP, HTTP, UDP and any other known protocol.
The multi-touch capable devices 400a and 400b can also establish communications by other means. For example, the multi-touch capable device 400a can communicate with other wireless devices, e.g., other multi-touch capable devices 400, cell phones, etc., over the wireless network 512. Likewise, the multi-touch capable device 400a and 400b can establish peer-to-peer communications 520, e.g., a personal area network, by use of one or more communication subsystems, such as the Bluetooth™ communication device 488 shown in
The multi-touch capable device 400 can, for example, communicate with a network resource 530 over the one or more wired and/or wireless networks 510. For example, the network resource can be a web server for delivering web pages which can be touched via the touch model, as described in reference to
Other services can also be provided, including a software update service that automatically determines whether software updates exist for software on the multi-touch capable device 400, then downloads the software updates to the multi-touch capable device 400 where it can be manually or automatically unpacked and/or installed.
Sensors, devices and subsystems can be coupled to the peripherals interface 606 to facilitate multiple functionalities. For example, a motion sensor 610, a light sensor 612, and a proximity sensor 614 can be coupled to the peripherals interface 606 to facilitate the orientation, lighting and proximity functions described with respect to
A camera subsystem 620 and an optical sensor 622, e.g., a charged coupled device (CCD) or a complementary metal-oxide semiconductor (CMOS) optical sensor, can be utilized to facilitate camera functions, such as recording photographs and video clips.
Communication functions can be facilitated through one or more wireless communication subsystems 624, which can include radio frequency receivers and transmitters and/or optical (e.g., infrared) receivers and transmitters. The specific design and implementation of the communication subsystem 624 can depend on the communication network(s) over which the multi-touch capable device 400 is intended to operate. For example, a multi-touch capable device 400 may include communication subsystems 624 designed to operate over a GSM network, a GPRS network, an EDGE network, a Wi-Fi or WiMax network, and a Bluetooth™ network. In particular, the wireless communication subsystems 624 may include hosting protocols such that the device 500 may be configured as a base station for other wireless devices.
An audio subsystem 626 can be coupled to a speaker 628 and a microphone 630 to facilitate voice-enabled functions, such as voice recognition, voice replication, digital recording, and telephony functions.
The I/O subsystem 640 can include a touch screen controller 642 and/or other input controller(s) 644. The touch-screen controller 642 can be coupled to a touch screen 646. The touch screen 646 and touch screen controller 642 can, for example, detect contact and movement or break thereof using any of a plurality of touch sensitivity technologies, including but not limited to capacitive, resistive, infrared, and surface acoustic wave technologies, as well as other proximity sensor arrays or other elements for determining one or more points of contact with the touch screen 646.
The other input controller(s) 644 can be coupled to other input/control devices 648, such as one or more buttons, rocker switches, thumb-wheel, infrared port, USB port, and/or a pointer device such as a stylus. The one or more buttons (not shown) can include an up/down button for volume control of the speaker 628 and/or the microphone 630.
In one implementation, a pressing of the button for a first duration may disengage a lock of the touch screen 646; and a pressing of the button for a second duration that is longer than the first duration may turn power to the multi-touch capable device 400 on or off. The user may be able to customize a functionality of one or more of the buttons. The touch screen 646 can, for example, also be used to implement virtual or soft buttons and/or a keypad or keyboard.
In some implementations, the multi-touch capable device 400 can present recorded audio and/or video files, such as MP3, AAC, and MPEG files. In some implementations, the multi-touch capable device 400 can include the functionality of an MP3 player, such as an iPod™. The multi-touch capable device 400 may, therefore, include a 32-pin connector that is compatible with the iPod. Other input/output and control devices can also be used.
The memory interface 602 can be coupled to memory 650. The memory 650 can include high-speed random access memory and/or non-volatile memory, such as one or more magnetic disk storage devices, one or more optical storage devices, and/or flash memory (e.g., NAND, NOR). The memory 650 can store an operating system 652, such as Darwin, RTXC, LINUX, UNIX, OS X, WINDOWS, or an embedded operating system such as VxWorks. The operating system 652 may include instructions for handling basic system services and for performing hardware dependent tasks.
The memory 650 may also store communication instructions 654 to facilitate communicating with one or more additional devices, one or more computers and/or one or more servers. The memory 650 may include graphical user interface instructions 656 to facilitate graphic user interface processing; sensor processing instructions 658 to facilitate sensor-related processing and functions; phone instructions 660 to facilitate phone-related processes and functions; electronic messaging instructions 662 to facilitate electronic-messaging related processes and functions; web browsing instructions 664 to facilitate web browsing-related processes and functions; media processing instructions 666 to facilitate media processing-related processes and functions; GPS/Navigation instructions 668 to facilitate GPS and navigation-related processes and instructions; camera instructions 670 to facilitate camera-related processes and functions; and/or other messaging instructions 672 to facilitate processes and functions, as described in reference to
Each of the above identified instructions and applications can correspond to a set of instructions for performing one or more functions described above. These instructions need not be implemented as separate software programs, procedures or modules. The memory 650 can include additional instructions or fewer instructions. Furthermore, various functions of the multi-touch capable device 400 may be implemented in hardware and/or in software, including in one or more signal processing and/or application specific integrated circuits.
The features described can be implemented in digital electronic circuitry, or in computer hardware, firmware, software, or in combinations of them. The features can be implemented in a computer program product tangibly embodied in an information carrier, e.g., in a machine-readable storage device or in a propagated signal, for execution by a programmable processor; and method steps can be performed by a programmable processor executing a program of instructions to perform functions of the described implementations by operating on input data and generating output.
The described features can be implemented advantageously in one or more computer programs that are executable on a programmable system including at least one programmable processor coupled to receive data and instructions from, and to transmit data and instructions to, a data storage system, at least one input device, and at least one output device. A computer program is a set of instructions that can be used, directly or indirectly, in a computer to perform a certain activity or bring about a certain result. A computer program can be written in any form of programming language (e.g., Objective-C, Java), including compiled or interpreted languages, and it can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, or other unit suitable for use in a computing environment.
Suitable processors for the execution of a program of instructions include, by way of example, both general and special purpose microprocessors, and the sole processor or one of multiple processors or cores, of any kind of computer. Generally, a processor will receive instructions and data from a read-only memory or a random access memory or both. The essential elements of a computer are a processor for executing instructions and one or more memories for storing instructions and data. Generally, a computer will also include, or be operatively coupled to communicate with, one or more mass storage devices for storing data files; such devices include magnetic disks, such as internal hard disks and removable disks; magneto-optical disks; and optical disks. Storage devices suitable for tangibly embodying computer program instructions and data include all forms of non-volatile memory, including by way of example semiconductor memory devices, such as EPROM, EEPROM, and flash memory devices; magnetic disks such as internal hard disks and removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks. The processor and the memory can be supplemented by, or incorporated in, ASICs (application-specific integrated circuits).
To provide for interaction with a user, the features can be implemented on a computer having a display device such as a CRT (cathode ray tube) or LCD (liquid crystal display) monitor for displaying information to the user and a keyboard and a pointing device such as a mouse or a trackball by which the user can provide input to the computer.
The features can be implemented in a computer system that includes a back-end component, such as a data server, or that includes a middleware component, such as an application server or an Internet server, or that includes a front-end component, such as a client computer having a graphical user interface or an Internet browser, or any combination of them. The components of the system can be connected by any form or medium of digital data communication such as a communication network. Examples of communication networks include, e.g., a LAN, a WAN, and the computers and networks forming the Internet.
The computer system can include clients and servers. A client and server are generally remote from each other and typically interact through a network. The relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other.
A number of implementations have been described. Nevertheless, it will be understood that various modifications may be made. For example, elements of one or more implementations may be combined, deleted, modified, or supplemented to form further implementations. As yet another example, the logic flows depicted in the figures do not require the particular order shown, or sequential order, to achieve desirable results. In addition, other steps may be provided, or steps may be eliminated, from the described flows, and other components may be added to, or removed from, the described systems. Accordingly, other implementations are within the scope of the following claims.
This application is a continuation of U.S. patent application Ser. No. 12/042,299, filed Mar. 4, 2008, entitled “Touch Event Model Programming Interface” which is herein incorporated by reference in its entirety. The subject matter of this application is related to application Ser. No. 12/042,237, for “Touch Event Processing for Web Pages,” filed Mar. 4, 2008, and application Ser. No. 12/042,067, for “Touch Event Model for Web Pages,” filed Mar. 4, 2008, the contents of which are herein incorporated by reference.
Number | Name | Date | Kind |
---|---|---|---|
4455452 | Schuyler | Jun 1984 | A |
5252951 | Tannenbaum et al. | Oct 1993 | A |
5488204 | Mead et al. | Jan 1996 | A |
5513309 | Meier et al. | Apr 1996 | A |
5534893 | Hansen, Jr. et al. | Jul 1996 | A |
5566337 | Szymanski et al. | Oct 1996 | A |
5589856 | Stein et al. | Dec 1996 | A |
5627567 | Davidson | May 1997 | A |
5627959 | Brown et al. | May 1997 | A |
5686940 | Kuga | Nov 1997 | A |
5708460 | Young et al. | Jan 1998 | A |
5745116 | Pisutha-Arnond | Apr 1998 | A |
5818455 | Stone et al. | Oct 1998 | A |
5864636 | Chisaka | Jan 1999 | A |
5880411 | Gillespie et al. | Mar 1999 | A |
5903902 | Orr et al. | May 1999 | A |
5917477 | Lee | Jun 1999 | A |
6028602 | Weidenfeller et al. | Feb 2000 | A |
6035343 | Tsushima et al. | Mar 2000 | A |
6188391 | Seely et al. | Feb 2001 | B1 |
6259436 | Moon et al. | Jul 2001 | B1 |
6323846 | Westerman et al. | Nov 2001 | B1 |
6369821 | Merrill et al. | Apr 2002 | B2 |
6446083 | Leight et al. | Sep 2002 | B1 |
6486890 | Harada et al. | Nov 2002 | B1 |
6486896 | Ubillos | Nov 2002 | B1 |
6570557 | Westerman et al. | May 2003 | B1 |
6570594 | Wagner | May 2003 | B1 |
6590595 | Wagner et al. | Jul 2003 | B1 |
6636242 | Bowman-Amuah | Oct 2003 | B2 |
6639584 | Li | Oct 2003 | B1 |
6664989 | Snyder et al. | Dec 2003 | B1 |
6677932 | Westerman | Jan 2004 | B1 |
6677965 | Ullmann et al. | Jan 2004 | B1 |
6714936 | Nevin, III | Mar 2004 | B1 |
6735583 | Bjarnestam et al. | May 2004 | B1 |
6741996 | Brechner et al. | May 2004 | B1 |
6765557 | Segal et al. | Jul 2004 | B1 |
6778992 | Searle et al. | Aug 2004 | B1 |
6831631 | Chuang | Dec 2004 | B2 |
6839721 | Schwols | Jan 2005 | B2 |
6903927 | Anlauff | Jun 2005 | B2 |
6907927 | Zheng et al. | Jun 2005 | B2 |
6957392 | Simister et al. | Oct 2005 | B2 |
6958749 | Matsushita et al. | Oct 2005 | B1 |
6963937 | Kamper et al. | Nov 2005 | B1 |
6985137 | Kaikuranta | Jan 2006 | B2 |
6985178 | Morita et al. | Jan 2006 | B1 |
7009626 | Anwar | Mar 2006 | B2 |
7013435 | Gallo et al. | Mar 2006 | B2 |
7023427 | Kraus et al. | Apr 2006 | B2 |
7084859 | Pryor | Aug 2006 | B1 |
7088374 | David et al. | Aug 2006 | B2 |
7117453 | Drucker et al. | Oct 2006 | B2 |
7152210 | Van Den Hoven et al. | Dec 2006 | B1 |
7173623 | Calkins et al. | Feb 2007 | B2 |
7337412 | Guido et al. | Feb 2008 | B2 |
7346850 | Swartz et al. | Mar 2008 | B2 |
7487447 | Jerger | Feb 2009 | B1 |
7499027 | Brigham, II et al. | Mar 2009 | B2 |
7561159 | Abel et al. | Jul 2009 | B2 |
7564448 | Yi | Jul 2009 | B2 |
7576732 | Lii | Aug 2009 | B2 |
7614008 | Ording | Nov 2009 | B2 |
7653883 | Hotelling et al. | Jan 2010 | B2 |
7663607 | Hotelling et al. | Feb 2010 | B2 |
7673255 | Schechter et al. | Mar 2010 | B2 |
7750893 | Hashimoto et al. | Jul 2010 | B2 |
7843427 | Ording et al. | Nov 2010 | B2 |
7844915 | Platzer et al. | Nov 2010 | B2 |
7864037 | Miller | Jan 2011 | B2 |
7872652 | Platzer et al. | Jan 2011 | B2 |
7884915 | Park | Feb 2011 | B2 |
7900156 | Andre et al. | Mar 2011 | B2 |
7903115 | Platzer et al. | Mar 2011 | B2 |
7917584 | Arthursson | Mar 2011 | B2 |
7925996 | Hofmeister et al. | Apr 2011 | B2 |
7941760 | Kocienda et al. | May 2011 | B2 |
7966578 | Tolmasky et al. | Jun 2011 | B2 |
8051406 | Knight et al. | Nov 2011 | B2 |
8091045 | Christie et al. | Jan 2012 | B2 |
8112299 | Kim et al. | Feb 2012 | B2 |
8115744 | Kong et al. | Feb 2012 | B2 |
8135171 | No et al. | Mar 2012 | B2 |
8140570 | Ingrassia et al. | Mar 2012 | B2 |
8171432 | Matas et al. | May 2012 | B2 |
8174502 | Bolsinga et al. | May 2012 | B2 |
8214768 | Boule et al. | Jul 2012 | B2 |
8239784 | Hotelling et al. | Aug 2012 | B2 |
8253695 | Ganatra et al. | Aug 2012 | B2 |
8285499 | Moore et al. | Oct 2012 | B2 |
8289289 | Rimon et al. | Oct 2012 | B2 |
8291344 | Chaudhri | Oct 2012 | B2 |
8296332 | Boley et al. | Oct 2012 | B2 |
8310459 | Nurmi | Nov 2012 | B2 |
8314775 | Westerman et al. | Nov 2012 | B2 |
8489783 | Wilson | Jul 2013 | B2 |
8560975 | Beaver et al. | Oct 2013 | B2 |
20010011998 | Agata et al. | Aug 2001 | A1 |
20010012001 | Rekimoto et al. | Aug 2001 | A1 |
20010045949 | Chithambaram et al. | Nov 2001 | A1 |
20020015024 | Westerman et al. | Feb 2002 | A1 |
20020191029 | Gillespie et al. | Dec 2002 | A1 |
20020194589 | Cristofalo et al. | Dec 2002 | A1 |
20030071850 | Geidl | Apr 2003 | A1 |
20030071858 | Morohoshi | Apr 2003 | A1 |
20030080946 | Chuang | May 2003 | A1 |
20030095096 | Robbin et al. | May 2003 | A1 |
20030122787 | Zimmerman et al. | Jul 2003 | A1 |
20030132959 | Simister et al. | Jul 2003 | A1 |
20030146941 | Bailey et al. | Aug 2003 | A1 |
20030160832 | Ridgley et al. | Aug 2003 | A1 |
20030174149 | Fujisaki et al. | Sep 2003 | A1 |
20030197689 | May | Oct 2003 | A1 |
20030222917 | Trantow | Dec 2003 | A1 |
20040001627 | Simmons et al. | Jan 2004 | A1 |
20040021676 | Chen et al. | Feb 2004 | A1 |
20040021698 | Baldwin et al. | Feb 2004 | A1 |
20040027398 | Jaeger | Feb 2004 | A1 |
20040039474 | Kontani | Feb 2004 | A1 |
20040095387 | Demsey et al. | May 2004 | A1 |
20040100479 | Nakano et al. | May 2004 | A1 |
20040125136 | Wallenius | Jul 2004 | A1 |
20040135817 | Daughtery et al. | Jul 2004 | A1 |
20040160419 | Padgitt | Aug 2004 | A1 |
20040210847 | Berson et al. | Oct 2004 | A1 |
20040215643 | Brechner et al. | Oct 2004 | A1 |
20040222992 | Calkins et al. | Nov 2004 | A1 |
20040224638 | Fadell et al. | Nov 2004 | A1 |
20050005241 | Hunleth et al. | Jan 2005 | A1 |
20050008343 | Frohlich et al. | Jan 2005 | A1 |
20050017957 | Yi | Jan 2005 | A1 |
20050024341 | Gillespie et al. | Feb 2005 | A1 |
20050027666 | Beck, Jr. et al. | Feb 2005 | A1 |
20050057524 | Hill et al. | Mar 2005 | A1 |
20050088443 | Blanco et al. | Apr 2005 | A1 |
20050162402 | Watanachote | Jul 2005 | A1 |
20050179648 | Barabe et al. | Aug 2005 | A1 |
20050183035 | Ringel et al. | Aug 2005 | A1 |
20050193015 | Logston et al. | Sep 2005 | A1 |
20050210419 | Kela et al. | Sep 2005 | A1 |
20050268247 | Baneth | Dec 2005 | A1 |
20060010400 | Dehlin et al. | Jan 2006 | A1 |
20060026521 | Hotelling et al. | Feb 2006 | A1 |
20060026535 | Hotelling et al. | Feb 2006 | A1 |
20060026536 | Hotelling et al. | Feb 2006 | A1 |
20060026676 | O'Donoghue | Feb 2006 | A1 |
20060028455 | Hinckley et al. | Feb 2006 | A1 |
20060031786 | Hillis et al. | Feb 2006 | A1 |
20060036955 | Baudisch et al. | Feb 2006 | A1 |
20060038796 | Hinckley et al. | Feb 2006 | A1 |
20060066588 | Lyon et al. | Mar 2006 | A1 |
20060097991 | Hotelling et al. | May 2006 | A1 |
20060112335 | Hofmeister et al. | May 2006 | A1 |
20060123353 | Matthews et al. | Jun 2006 | A1 |
20060125799 | Hillis et al. | Jun 2006 | A1 |
20060125803 | Westerman et al. | Jun 2006 | A1 |
20060136833 | Dettinger et al. | Jun 2006 | A1 |
20060161871 | Hotelling et al. | Jul 2006 | A1 |
20060190833 | SanGiovanni et al. | Aug 2006 | A1 |
20060197753 | Hotelling | Sep 2006 | A1 |
20060236263 | Bathiche et al. | Oct 2006 | A1 |
20060242602 | Schechter et al. | Oct 2006 | A1 |
20060242607 | Hudson | Oct 2006 | A1 |
20060279548 | Geaghan | Dec 2006 | A1 |
20060284792 | Foxlin | Dec 2006 | A1 |
20070013697 | Gilboa | Jan 2007 | A1 |
20070046643 | Hillis et al. | Mar 2007 | A1 |
20070050469 | Gupta et al. | Mar 2007 | A1 |
20070055967 | Poff et al. | Mar 2007 | A1 |
20070061126 | Russo et al. | Mar 2007 | A1 |
20070064004 | Bonner et al. | Mar 2007 | A1 |
20070075965 | Huppi et al. | Apr 2007 | A1 |
20070081726 | Westerman et al. | Apr 2007 | A1 |
20070132789 | Ording et al. | Jun 2007 | A1 |
20070152976 | Townsend et al. | Jul 2007 | A1 |
20070152984 | Ording et al. | Jul 2007 | A1 |
20070174257 | Howard | Jul 2007 | A1 |
20070176903 | Dahlin et al. | Aug 2007 | A1 |
20070185876 | Mendis et al. | Aug 2007 | A1 |
20070198926 | Joguet et al. | Aug 2007 | A1 |
20070214462 | Boillot | Sep 2007 | A1 |
20070242056 | Engelhardt et al. | Oct 2007 | A1 |
20070247435 | Benko et al. | Oct 2007 | A1 |
20070247442 | Andre et al. | Oct 2007 | A1 |
20070252821 | Hollemans et al. | Nov 2007 | A1 |
20070262964 | Zotov et al. | Nov 2007 | A1 |
20070277124 | Shin et al. | Nov 2007 | A1 |
20070288856 | Butlin et al. | Dec 2007 | A1 |
20070291009 | Wright et al. | Dec 2007 | A1 |
20080001923 | Hall et al. | Jan 2008 | A1 |
20080005703 | Radivojevic et al. | Jan 2008 | A1 |
20080012835 | Rimon et al. | Jan 2008 | A1 |
20080016096 | Wilding et al. | Jan 2008 | A1 |
20080028327 | Hirota et al. | Jan 2008 | A1 |
20080034029 | Fang et al. | Feb 2008 | A1 |
20080036743 | Westerman et al. | Feb 2008 | A1 |
20080043020 | Snow et al. | Feb 2008 | A1 |
20080048978 | Trent, Jr. et al. | Feb 2008 | A1 |
20080094356 | Ording et al. | Apr 2008 | A1 |
20080094368 | Ording et al. | Apr 2008 | A1 |
20080114614 | Mahesh et al. | May 2008 | A1 |
20080120576 | Kariathungal et al. | May 2008 | A1 |
20080158191 | Yang et al. | Jul 2008 | A1 |
20080162751 | Wilson | Jul 2008 | A1 |
20080165132 | Weiss et al. | Jul 2008 | A1 |
20080165136 | Christie et al. | Jul 2008 | A1 |
20080165141 | Christie et al. | Jul 2008 | A1 |
20080165160 | Kocienda et al. | Jul 2008 | A1 |
20080168395 | Ording et al. | Jul 2008 | A1 |
20080168402 | Blumenberg | Jul 2008 | A1 |
20080168405 | Tolmasky et al. | Jul 2008 | A1 |
20080172633 | Jeon et al. | Jul 2008 | A1 |
20080207130 | Kunii | Aug 2008 | A1 |
20080218489 | Park et al. | Sep 2008 | A1 |
20080231610 | Hotelling et al. | Sep 2008 | A1 |
20090049388 | Taib et al. | Feb 2009 | A1 |
20090051671 | Konstas | Feb 2009 | A1 |
20090058830 | Herz et al. | Mar 2009 | A1 |
20090207140 | Hansson | Aug 2009 | A1 |
20090211891 | Lai et al. | Aug 2009 | A1 |
20090225037 | Williamson et al. | Sep 2009 | A1 |
20090225038 | Bolsinga et al. | Sep 2009 | A1 |
20090225039 | Williamson et al. | Sep 2009 | A1 |
20090228828 | Beatty et al. | Sep 2009 | A1 |
20090228901 | Beaver et al. | Sep 2009 | A1 |
20090231281 | Whytock et al. | Sep 2009 | A1 |
20090251434 | Rimon et al. | Oct 2009 | A1 |
20090259969 | Pallakoff | Oct 2009 | A1 |
20090262087 | Kim | Oct 2009 | A1 |
20090273571 | Bowens | Nov 2009 | A1 |
20090282332 | Porat | Nov 2009 | A1 |
20090284479 | Dennis et al. | Nov 2009 | A1 |
20090309847 | Russell et al. | Dec 2009 | A1 |
20090322687 | Duncan et al. | Dec 2009 | A1 |
20090322699 | Hansson | Dec 2009 | A1 |
20090322700 | D'Souza et al. | Dec 2009 | A1 |
20100013676 | Do et al. | Jan 2010 | A1 |
20100020025 | Lemort et al. | Jan 2010 | A1 |
20100020221 | Tupman et al. | Jan 2010 | A1 |
20100177053 | Sato | Jan 2010 | A2 |
20100030612 | Kim et al. | Feb 2010 | A1 |
20100046850 | Ho et al. | Feb 2010 | A1 |
20100085323 | Bogue | Apr 2010 | A1 |
20100107116 | Rieman et al. | Apr 2010 | A1 |
20100146458 | Wadekar | Jun 2010 | A1 |
20100149122 | Lin | Jun 2010 | A1 |
20100156804 | Young | Jun 2010 | A1 |
20100182248 | Chun | Jul 2010 | A1 |
20100235118 | Moore et al. | Sep 2010 | A1 |
20100245267 | Min et al. | Sep 2010 | A1 |
20100267449 | Gagner et al. | Oct 2010 | A1 |
20100281435 | Bangalore et al. | Nov 2010 | A1 |
20100283739 | Zhang et al. | Nov 2010 | A1 |
20100299594 | Zalewski et al. | Nov 2010 | A1 |
20100325575 | Platzer et al. | Dec 2010 | A1 |
20110037714 | Seo et al. | Feb 2011 | A1 |
20110047459 | Van Der Westhuizen | Feb 2011 | A1 |
20110069021 | Hill | Mar 2011 | A1 |
20110090257 | Ko et al. | Apr 2011 | A1 |
20110102336 | Seok et al. | May 2011 | A1 |
20110115745 | Cabrera Cordon et al. | May 2011 | A1 |
20110167391 | Momeyer et al. | Jul 2011 | A1 |
20110179380 | Shaffer et al. | Jul 2011 | A1 |
20110179386 | Shaffer et al. | Jul 2011 | A1 |
20110179387 | Shaffer et al. | Jul 2011 | A1 |
20110252306 | Williamson et al. | Oct 2011 | A1 |
20110252307 | Williamson et al. | Oct 2011 | A1 |
20110252368 | Anzures et al. | Oct 2011 | A1 |
20110291951 | Tong | Dec 2011 | A1 |
20110295596 | Hung et al. | Dec 2011 | A1 |
20110310046 | Beaver et al. | Dec 2011 | A1 |
20110310047 | Moore et al. | Dec 2011 | A1 |
20110314430 | Blumenberg | Dec 2011 | A1 |
20110321125 | Kyohgoku et al. | Dec 2011 | A1 |
20120023509 | Blumenberg | Jan 2012 | A1 |
20120278725 | Gordon et al. | Nov 2012 | A1 |
20130009986 | Shah et al. | Jan 2013 | A1 |
20130016039 | Moore et al. | Jan 2013 | A1 |
20130069899 | Beaver et al. | Mar 2013 | A1 |
Number | Date | Country |
---|---|---|
1841284 | Oct 2006 | CN |
1 517 228 | Mar 2005 | EP |
2 141 576 | Jan 2010 | EP |
2 184 673 | May 2010 | EP |
2 390 766 | Nov 2011 | EP |
2 319 591 | May 1998 | GB |
2 351 639 | Jan 2001 | GB |
2 404 547 | Jul 2003 | GB |
05 298002 | Nov 1993 | JP |
2000 222130 | Aug 2000 | JP |
2001 290585 | Oct 2001 | JP |
2003 296024 | Oct 2003 | JP |
2005 056286 | Mar 2005 | JP |
2005 082086 | Mar 2005 | JP |
2005 242669 | Sep 2005 | JP |
2005 322088 | Nov 2005 | JP |
2006 102275 | Apr 2006 | JP |
2008 146165 | Jun 2008 | JP |
2008 312153 | Dec 2008 | JP |
2012 014299 | Jan 2012 | JP |
WO 0038042 | Jun 2000 | WO |
WO 0208881 | Jan 2002 | WO |
WO 0208881 | Jan 2002 | WO |
WO 0213176 | Jan 2002 | WO |
WO 0213176 | Feb 2002 | WO |
WO 2006020304 | Feb 2006 | WO |
WO 2006020305 | Feb 2006 | WO |
WO 2006067711 | Jun 2006 | WO |
WO 2006094308 | Sep 2006 | WO |
WO 2006128248 | Dec 2006 | WO |
WO 2007037806 | Apr 2007 | WO |
WO 2007067856 | Jun 2007 | WO |
WO 2007079425 | Jul 2007 | WO |
WO 2007089766 | Aug 2007 | WO |
WO 2008020446 | Feb 2008 | WO |
WO 2008030779 | Mar 2008 | WO |
WO 2008030879 | Mar 2008 | WO |
WO 2008030880 | Mar 2008 | WO |
WO 2008085846 | Jul 2008 | WO |
WO 2008085848 | Jul 2008 | WO |
WO 2008085855 | Jul 2008 | WO |
WO 2008085871 | Jul 2008 | WO |
WO 2008085877 | Jul 2008 | WO |
WO 2008148021 | Dec 2008 | WO |
WO 2009018314 | Feb 2009 | WO |
WO 2009111189 | Sep 2009 | WO |
WO 2009111458 | Sep 2009 | WO |
WO 2009111460 | Sep 2009 | WO |
WO 2009111469 | Sep 2009 | WO |
Entry |
---|
Anonymous, “Firegestures: Firefox Extension,” Internet Article, Oct. 27, 2009, 2 pages, http://xuldev.org/firegestures/. |
Anonymous, “Firegestures: Changelog,” Internet Article, Oct. 28, 2009, 8 pages, http://xuldev.org/firegestures/changelog.php. |
Anonymous, “Firegestures Version History,” Internet Article, Oct. 28, 2009, 6 pages, http://addons.mozilla.org/en-US/firefox/addons/version/6366. |
Chartier, D., “Apple releases iOS 4.3 beta for developers,” Macworld.com, Jan. 12, 2011, http://www.macworld.com/article/1157114/ios—4—3.html, 7 pages. |
Holzner, “Built-in JavaScript Objects,” JavaScript Complete, 1998, McGraw/Hill, New York, pp. 71-79. |
KennyTM, “UlGestureRecognizer,” from iPhone Development Wiki, Oct. 31, 2009, 3 pages, http://iphonedevwiki.net/index.php?title=UlGestureRecognizer&oldid=319http://iphonedevwiki.net/index.php?title=UlGestureRecognizer&action=history. |
Masui et al., “Elastic Graphical Interfaces for Precise Data Manipulation,” ACM Conference on Human Factors in Computing Systems (CHI '95), Apr. 1995, Conference Companion, ACM press, pp. 143-144. |
Pixley, “Document Object Model (DOM) Level 2 Events Specifications Version 1.0,” W3C Recommendation, 50 pages, Nov. 13, 2000. |
Räihä, L., “Delegation: Dynamic Specialization,” Proceeding of the conference on TRI-Ada '94, pp. 172-179. |
Rogers, M., “It's for You! An iPhone Development Primer for the Busy College Professor,” Journal of Computing Sciences in Colleges, vol. 25, No. 1, Oct. 1, 2009, pp. 94-101. |
Invitation to Pay Additional Fees dated Jul. 13, 2010, received in International Application No. PCT/US2010/027118, which corresponds to U.S. Appl. No. 12/566,660, 7 pages (Moore). |
International Search Report and Written Opinion dated Oct. 5, 2010, received in International Application No. PCT/US2010/027118, which corresponds to U.S. Appl. No. 12/566,660, 19 pages (Moore). |
International Preliminary Report on Patentability dated Sep. 20, 2011, received in International Application No. PCT/US2010/027118, which corresponds to U.S. Appl. No. 12/566,660, 10 pages (Moore). |
European Search Report dated Dec. 7, 2011, received in European Patent Application No. 11184186.2, which corresponds to U.S. Appl. No. 12/566,660, 6 pages (Moore). |
International Search Report and Written Opinion dated May 20, 2011, received in International Application No. PCT/US2011/022516, which corresponds to U.S. Appl. No. 12/789,695, 16 pages (Moore). |
International Search Report and Written Opinion dated Dec. 13, 2011, received in International Patent Application No. PCT/US2011/039583, which corresponds to U.S. Appl. No. 12/892,848, 12 pages (Dale). |
Invitation to Pay Additional Fees dated Mar. 12, 2012, received in International Application No. PCT/US2011/065859, which corresponds to U.S. Appl. No. 13/077,925, 10 pages (Chaudhri). |
International Search Report dated Apr. 16, 2009, received in International Application No. PCT/US2009/034772, which corresponds to U.S. Appl. No. 12/042,318, 3 pages (Platzer). |
European Search Report dated Apr. 21, 2009, received in European Application No. 09154313.2, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Platzer). |
European Search Report dated Nov. 23, 2011, received in European Patent Application No. 11184167.2, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Beaver). |
European Search Report dated Nov. 24, 2011, received in European Patent Application No. 11184169.8, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Beaver). |
European Search Report dated Nov. 18, 2011, received in European Patent Application No. 11184170.6, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Beaver). |
European Search Report dated Nov. 18, 2011, received in European Patent Application No. 11184172.2, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Beaver). |
European Search Report dated Nov. 30, 2011, received in European Patent Application No. 11184409.8, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Beaver). |
International Search Report and Written Opinion dated Jul. 3, 2009, received in International Application No. PCT/US2009/035856, which corresponds to U.S. Appl. No. 12/042,067. |
International Preliminary Report on Patentability dated Sep. 16, 2010, received in International Application No. PCT/US2009/035856, which corresponds to U.S. Appl. No. 12/042,067. |
International Search Report and Written Opinion dated Nov. 11, 2009, received in International Application No. PCT/US2009/035874, which corresponds to U.S. Appl. No. 12/042,299. |
International Preliminary Report on Patentability dated Sep. 16, 2010, received in International Application No. PCT/US2009/035874, which corresponds to U.S. Appl. No. 12/042,299. |
European Search Report dated Jan. 13, 2012, received in European Patent Application No. 11184226.6, which corresponds to U.S. Appl. No. 12/042,299, 7 pages (Williamson). |
European Search Report dated Jan. 13, 2012, received in European Patent Application No. 11184224.1, which corresponds to U.S. Appl. No. 12/042,299, 7 pages (Williamson). |
Office Action dated Dec. 9, 2011, received in U.S. Appl. No. 12/566,660, 14 pages (Moore). |
Office Action dated Feb. 16, 2011, received in U.S. Appl. No. 12/042,318, 26 pages (Beaver). |
Final Office Action dated Sep. 15, 2011, received in U.S. Appl. No. 12/042,318, 46 pages (Beaver). |
Office Action dated Feb. 25, 2011, received in Australian Patent Application No. 2009200493, which corresponds to U.S. Appl. No. 12/042,318, 3 pages(Beaver). |
Office Action dated Aug. 9, 2011, received in Australian Patent Application No. 2009200493, which corresponds to U.S. Appl. No. 12/042,318, 2 pages (Beaver). |
Office Action dated Feb. 22, 2012, received in Australian Patent Application No. 2011205170, which corresponds to U.S. Appl. No. 12/042,318, 3 pages (Beaver). |
Office Action dated Dec. 13, 2011, received in Australian Patent Application No. 2011101154, which corresponds to U.S. Appl. No. 12/042,318, 4 pages (Beaver). |
Office Action dated Dec. 13, 2011, received in Australian Patent Application No. 2011101157, which corresponds to U.S. Appl. No. 12/042,318, 4 pages (Beaver). |
Office Action dated Dec. 13, 2011, received in Australian Patent Application No. 2011101156, which corresponds to U.S. Appl. No. 12/042,318, 3 pages (Beaver). |
Office Action dated Dec. 13, 2011, received in Australian Patent Application No. 2011101155, which corresponds to U.S. Appl. No. 12/042,318, 3 pages (Beaver). |
Grant for Invention Patent dated Mar. 22, 2011, received in Chinese Patent Application No. ZL200910118596.4, which corresponds to U.S. Appl. No. 12/042,318, 3 pages (Beaver). |
Office Action dated Mar. 2, 2011, received in European Patent Application No. 11150786.9, which corresponds to U.S. Appl. No. 12/042,318, 5 pages (Beaver). |
Office Action dated Aug. 26, 2011, received in Japanese Patent Application No. 2009-080377, which corresponds to U.S. Appl. No. 12/042,318, 2 pages (Beaver). |
Office Action dated Jan. 18, 2011, received in U.S. Appl. No. 12/042,067, 14 pages (Williamson). |
Final Office Action dated Jul. 28, 2011, received in U.S. Appl. No. 12/042,067, 18 pages (Williamson). |
Office Action dated Oct. 19, 2011, received in Chinese Patent Application No. 200980000014.0, which corresponds to U.S. Appl. No. 12/042,067, 15 pages (Williamson). |
Office Action dated Oct. 19, 2010, received in German Patent Application No. 11 2009 000 001.0, which corresponds to U.S. Appl. No. 12/042,067, 5 pages (Williamson). |
Office Action dated Oct. 15, 2010, received in European Patent Application No. 09 700 006.1, which corresponds to U.S. Appl. No. 12/042,067, 4 pages (Williamson). |
Office Action dated Oct. 24, 2011, received in Japanese Patent Application No. 2010-502356, which corresponds to U.S. Appl. No. 12/042,067, 2 pages (Williamson). |
Office Action dated Jan. 4, 2011, received in U.S. Appl. No. 12/042,299, 9 pages (Williamson). |
Final Office Action dated Jul. 8, 2011, received in U.S. Appl. No. 12/042,299, 13 pages (Williamson). |
Office Action dated Oct. 26, 2011, received in Chinese Patent Application No. 200980000013.6, which corresponds to U.S. Appl. No. 12/042,299, 11 pages (Williamson). |
Office Action dated Aug. 10, 2010, received in German Patent Application No. 11 2009 000 003.7, which corresponds to U.S. Appl. No. 12/042,299, 3 pages (Williamson). |
Office Action dated Nov. 26, 2010, received in European Patent Application No. 09 700 007.9, which corresponds to U.S. Appl. No. 12/402,299, 5 pages (Williamson). |
Office Action dated Aug. 15, 2011, received in Japanese Patent Application No. 2010 502358, which corresponds to U.S. Appl. No. 12/042,299, 2 pages (Williamson). |
Decision to Grant dated Mar. 23, 2012, received in Japanese Patent Application No. 2010-502358, which corresponds to U.S. Appl. No. 12/042,299, 5 pages (Williamson). |
Office Action dated Sep. 14, 2011, received in U.S. Appl. No. 12/042,237, 8 pages (Bolsinga). |
Notice of Allowance dated Mar. 6, 2012, received in U.S. Appl. No. 12/042,237, 16 pages (Bolsinga). |
Office Action dated Jul. 14, 2011, received in Chinese Patent Application No. 200980000015.5, which corresponds to U.S. Appl. No. 12/042,237, 8 pages (Bolsinga). |
Office Action dated Feb. 22, 2012, received in Chinese Patent Application No. 200980000015.5, which corresponds to U.S. Appl. No. 12/042,237, 9 pages (Bolsinga). |
Office Action dated Jan. 16, 2012, received in Japanese Patent Application No. 2010-502357, which corresponds to U.S. Appl. No. 12/042,237, 2 pages (Bolsinga). |
Notice of Allowance dated May 23, 2012, received in U.S. Appl. No. 13/221,830, 8 pages (Moore). |
Office Action dated Apr. 1, 2009, received in U.S. Appl. No. 11/620,709 (Platzer). |
Final Office Action dated Nov. 13, 2009, received in U.S. Appl. No. 11/620,709 (Platzer). |
Office Action dated Jun. 9, 2010, received in U.S. Appl. No. 11/620,709 (Platzer). |
Office Action dated Jul. 8, 2009, received in U.S. Appl. No. 11/620,717 (Platzer). |
Office Action dated Dec. 29, 2009, received in U.S. Appl. No. 11/620,717 (Platzer). |
Notice of Allowance dated Jul. 20, 2010, received in U.S. Appl. No. 11/620,717 (Platzer). |
Office Action dated Apr. 1, 2009, received in U.S. Appl. No. 11/620,723 (Platzer). |
Final Office Action dated Nov. 17, 2009, received in U.S. Appl. No. 11/620,723 (Platzer). |
Office Action dated Jun. 8, 2010, received in U.S. Appl. No. 11/620,723 (Platzer). |
European Search Report dated Jul. 9, 2012, received in European Patent Application No. 12156395.1, which corresponds to U.S. Appl. No. 12/042,318, 8 pages (Beaver). |
Notice of Allowance dated Jul. 26, 2012, received in U.S. Appl. No. 12/566,660, 9 pages (Moore). |
Certificate of Examination dated May. 7, 2012, received in Australian Patent No. 2011101154, which corresponds to U.S. Appl. No. 12/042,318, 1 page (Beaver). |
Certificate of Examination dated May 8, 2012, received in Australian Patent No. 2011101157, which corresponds to U.S. Appl. No. 12/042,318, 1 page (Beaver). |
Certificate of Examination dated May 8, 2012, received in Austrailian Patent No. 2011101156, which corresponds to U.S. Appl. No. 12/042,318, 1 page (Beaver). |
Certificate of Examination dated May 8, 2012, received in Austrailian Patent No. 2011101155, which corresponds to U.S. Appl. No. 12/042,318, 1 page (Beaver). |
Decision to Grant dated Jul. 27, 2012, received in Japanese Patent Application No. 2009080377, which corresponds to U.S. Appl. No. 12/042,318, 4 pages (Beaver). |
Office Action dated Jun. 13, 2012, received in Chinese Patent Application No. 200980000014.0, which corresponds to U.S. Appl. No. 12/042,067, 6 pages (Williamson). |
Office Action dated Jun. 6, 2012, received in Chinese Patent Application No. 200980000013.6, which corresponds to U.S. Appl. No. 12/042,299,7 pages (Williamson). |
Office Action dated Jun. 20, 2012, received in U.S. Appl. No. 12/869,182, 18 pages (Platzer). |
Office Action dated Jul. 24, 2012, received in U.S. Appl. No. 13/221,837, 25 pages (Blumenberg). |
Final Office Action dated Jul. 9, 2012, received in U.S. Appl. No. 13/251,121, 30 pages (Blumenberg). |
Final Office Action dated Jun. 20, 2012, received in U.S. Appl. No. 13/251,146, 28 pages (Blumenberg). |
Final Office Action dated Jul. 5, 2012, received in U.S. Appl. No. 13/251,150, 36 pages (Blumenberg). |
Final Office Action dated Jun. 20, 2012, received in U.S. Appl. No. 13/251,152, 24 pages (Blumenberg). |
Office Action dated Jun. 6, 2012, received in Chinese Patent Application No. 200880001855.9, which corresponds to U.S. Appl. No. 11/620,715, (Platzer). |
Office Action dated Jun. 18, 2012, received in U.S. Appl. No. 13/464,800, 10 pages (Bolsinga). |
Allen, J., “Override the GNU C library—painlessly,” ibm.com, Apr. 2002, 4 pages. |
Anonymous, “Firegestures,” Internet Article, Oct. 27, 2009, 2 pages, http://xuldev.org/firegestures/. |
Masui et al., “Elastic Graphical Interfaces for Precise Data Manipulation,” ACM Conference Human Factors in Computing Systems (CHI '96), Apr. 1995, Conference Companion, ACM press, pp. 143-144. |
Pixley, Document Object Model (DOM) Level 2 Events Specifications Version 1.0,' W3C Recommendation, pp. 1-47, Nov. 13, 2000. |
Räihä, L. “Delegation: Dynamic Specialization,” Proceeding of the conference on TRI-ADA '94, pp. 172-179. |
International Preliminary Report on Patentability dated Sep. 20, 2011, received in International Application No. PCT/US2010/027118, which corresponds to U.S. Appl. No. 12/666,660, 10 pages (Moore). |
International Search Report and Written Opinion dated May 20, 2011, received in International Application No. PCT/US2011/022516, which corresponds to U.S. Appl. No. 12/789,695, 6 pages (Moore). |
International Search Report and Written Opinion dated Jun. 1, 2012, received in International Application No. PCT/US2011/065859, which corresponds to U.S. Appl. No. 13/077,925, 22 pages (Shaffer). |
European Search Report dated Nov. 30, 2011, received in European Patent Application No. 11184169.8, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Beaver). |
International Search Report and Written Opinion dated Jul. 3, 2009, received in International Application No. PCT/US2009/035856, which corresponds to U.S. Appl. No. 12/042,067, 15 pages (Williamson). |
International Preliminary Report on Patentability dated Sep. 16, 2010, received in International Application No. PCT/US2009/035856, which corresponds to U.S. Appl. No. 12/042,067, 8 pages (Williamson). |
International Search Report and Written Opinion dated Nov. 11, 2009, received in International Application No. PCT/US2009/035874, which corresponds to U.S. Appl. No. 12/042,299, 7 pages (Williamson). |
International Preliminary Report on Patentability dated Sep. 16, 2010, received in International Application No. PCT/US2009/035874, which corresponds to U.S. Appl. No. 12/042,299, 8 pages (Williamson). |
International Search Report and Written Opinion dated Jul. 31, 2008, received in International Application No. PCT/US2008/000058, which corresponds to U.S. Appl. No. 11/620,709 (Platzer). |
International Preliminary Report on Patentability dated Jul. 7, 2009, received in International Application No. PCT/US2008/000058, which corresponds to U.S. Appl. No. 11/620,709 (Platzer). |
International Search Report and Written Opinion dated Apr. 22, 2008, received in International Application No. PCT/US2008/000060, which corresponds to U.S. Appl. No. 11/620,727 (Blumenberg). |
International Preliminary Report on Patentability dated Jul. 7, 2009, received in International Application No. PCT/US2008/000060, which corresponds to U.S. Appl. No. 11/820,727 (Blumenberg). |
International Search Report and Written Opinion dated May 2, 2008, received in International Application No. PCT/US2008/000069, which corresponds to U.S. Appl. No. 11/620,715 (Platzer). |
International Preliminary Report on Patentability dated Jul. 7, 2009, received in International Application No. PCT/US2008/000069, which corresponds to U.S. Appl. No. 11/620,715 (Platzer). |
International Search Report and Written Opinion dated Jun. 4, 2008, received in International Application No. PCT/US2008/000089, which corresponds to U.S. Appl. No. 11/620,717 (Platzer) |
International Preliminary Report on Patentability dated Jul. 7, 2009, received in International Application No. PCT/US2008/000089, which corresponds to U.S. Appl. No. 11/620,717 (Platzer). |
International Search Report and Written Opinion dated Jun. 3, 2008, received in International Application No. PCT/US2008/000103, which corresponds to U.S. Appl. No. 11/620,723 (Platzer). |
International Preliminary Report on Patentability dated Jul. 7, 2009, received in International Application No. PCT/US2008/000103, which corresponds to U.S. Appl. No. 11/620,723 (Platzer). |
Notice of Allowance dated May 24, 2012, received in U.S. Appl. No. 12/566,660, 10 pages (Moore). |
Final Office Action dated Sep. 15, 2011, received in U.S. Appl. No. 12/042,318 (Beaver). |
Office Action dated Feb. 25, 2011, received in Australian Patent Application No. 2009200493, which corresponds to U.S. Appl. No. 12/042,318 (Beaver). |
Grant for Invention Patent dated Mar. 22, 2011, received in Chinese Patent Application No. ZL2009101185964, which corresponds to U.S. Appl. No. 12/042,318 (Beaver). |
Office Action dated Mar. 2, 2011, received in European Patent Application No. 11150786.9, which corresponds to U.S. Appl. No. 12/042,318 (Beaver). |
Office Action dated Jan. 18, 2011, received in U.S. Appl. No. 12/042,067 (Williamson). |
Final Office Action dated Jul. 28, 2011, received in U.S. Appl. No. 12/042,067 (Williamson). |
Office Action dated Oct. 19, 2011, received in Chinese Patent Application No. 200980000014.0, which corresponds to U.S. Appl. No. 12/042,067, 15 pages. |
Office Action dated Oct. 19, 2010, received in German Patent Application No. 11 2009 000 001.0, which corresponds to U.S. Appl. No. 12/042,067 (Williamson). |
Office Action dated Oct. 15, 2010, received in European Patent Application No. 09 700 006.1, which corresponds to U.S. Appl. No. 12/042,067 (Williamson). |
Office Action dated Jan. 4, 2011, received in U.S. Appl. No. 12/042,299 (Williamson). |
Final Office Action dated Jul. 8, 2011, received in U.S. Appl. No. 12/042,299 (Williamson). |
Office Action dated May 3, 2012, received in U.S. Appl. No. 12/042,299, 14 pages (Williamson). |
Office Action dated Oct. 25, 2011, received in Chinese Patent Application No. 200980000013.6, which corresponds to U.S. Appl. No. 12/042,299, 11 pages (Williamson). |
Office Action dated Aug. 10, 2010, received in German Patent Application No. 11 2009 000 003.7, which corresponds to U.S. Appl. No. 12/042,299 (Williamson). |
Office Action dated Nov. 26, 2010, received in European Patent Application No. 09 700 007.9, which corresponds to U.S. Appl. No. 12/402,299 (Williamson). |
Notice of Allowance dated May 23, 2012, received in U.S. Appl. No. 13/221,830, 8 pages. |
Final Office Action dated Mar. 12, 2012, received in U.S. Appl. No. 11/620,727, 21 pages (Blumenberg). |
Office Action dated Apr. 1, 2009, received in U.S. Appl. No. 11/620,709. |
Final Office Action dated Nov. 13, 2009, received in U.S. Appl. No. 11/620,709. |
Office Action dated Jun. 9, 2010, received in U.S. Appl. No. 11/620,709. |
Office Action dated Jul. 8, 2009, received in U.S. Appl. No. 11/620,717. |
Office Action dated Dec. 29, 2009, received in U.S. Appl. No. 11/620,717. |
Notice of Allowance dated Jul. 20, 2010, received in U.S. Appl. No. 11/620,717. |
Office Action dated Apr. 1, 2009 received in U.S. Appl. No. 11/620,723. |
Final Office Action dated Nov. 17, 2009, received in U.S. Appl. No. 11/620,723. |
Office Action dated Jun. 8, 2010, received in U.S. Appl. No. 11/620,723. |
Apple, “Safari Web Content Guide for iPhone,” Apple Inc., Feb. 5, 2005, 96 pages. |
Chen, T., “The Web is Everywhere,” IEEE Communications Magazine, Feb. 5, 2008, 1 page. |
Search Report dated Jun. 2012, received in Dutch Patent Application No. 2007993, which corresponds to U.S. Appl. No. 13/077,925, 6 pages (Shaffer). |
Patent Examination Report No. 1 dated Oct. 17, 2012, received in Austraiian Patent Application No. 2010226120, which corresponds to U.S. Appl. No. 12/566,660, 3 pages. |
Notice of Alowance dated Nov. 2, 2012, received in Canadian Patent Application No. 2755443, which corresponds to U.S. Appl. No. 12/566,660, 1 page (Moore). |
Office Action dated Oct. 22, 2012, received in Chinese Patent Application No. 201110063183.8, which corresponds to U.S. Appl. No. 12/789,695, 8 pages (Shaffer). |
Office Action dated Oct. 9, 2012, received in U.S. Appl. No. 12/892,851, 22 pages (Dale). |
Office Action dated Oct. 19, 2012 received in Chinese Patent Application No. 201120580018.5, which corresponds to U.S. Appl. No. 13/077,925, 4 pages (Shaffer). |
Office Action dated Sep. 3, 2012, received in Austrailian Patent Application No. 2011265335, which corresponds to U.S. Appl. No. 12/042,318, 2 pages (Beaver). |
Notice of Acceptance dated Nov. 8, 2012, received in Austraiian Patent Application No. 2011265335, which corresponds to U.S. Appl. No. 12/042,318, 3 pages (Beaver). |
Decision to Grant dated Jul. 26, 2012, received in European Patent Application No. 11150786.9, which corresponds to U.S. Appl. No. 12/042,318, 1 pages (Beaver). |
Office Action dated Sep. 26, 2012, received in German Patent Application No. 11 2009 000 001.0, which corresponds to U.S. Appl. No. 12/042,067, 5 pages (Williamson). |
Office Action dated Oct. 19, 2012, received in German Patent Application No. 11 2009 000 003.7, which corresponds to U.S. Appl. No. 12/042,299, 5 pages (Williamson). |
Office Action dated Sep. 12, 2012, received in European Patent Application No. 11184226.6, which corresponds to U.S. Appl. No. 12/402,299, 5 pages (Williamson). |
Office Action dated Sep. 12, 2012, received in European Patent Application No. 11184224.1, which corresponds to U.S. Appl. No. 12/402,299, 4 pages (Williamson). |
Office Action dated Sep. 12, 2012, received in European Patent Application No. 11184223.3, which corresponds to U.S. Appl. No. 12/402,299, 4 pages (Williamson). |
Office Action dated Sep. 12, 2012, received in European Patent Application No. 11184222.5, which corresponds to U.S. Appl. No. 12/402,299, 4 pages (Williamson). |
Office Action dated Nov. 26, 2012, received in U.S. Appl. No. 13/163,626, 29 pages (Williamson). |
Office Acton dated Sep. 11, 2012, received in Chinese Patent Application No. 200980000015.5, which corresponds to U.S. Appl. No. 12/042,237, 9 pages (Bolsinga). |
Office Action dated Sep. 26, 2012, received in German Patent Application No. 11 2009 000 002.9, which corresponds to U.S. Appl. No. 12/042,237, 5 pages (Bolsinga). |
Office Action dated Nov. 11, 2010, received in Chinese Patent Application No. 200880001827.7, which corresponds to U.S. Appl. No. 11/620,717, 6 pages (Platzer). |
Office Action dated Jan. 29, 2012, received in Chinese Patent Application No. 2008800018227, which corresponds to U.S. Appl. No. 11/620,717, 5 pages (Platzer). |
Office Action dated Aug. 15, 2012, received in U.S. Appl. No. 11/620,727, 19 pages (Blumenberg). |
Office Action dated Nov. 5, 2012, received in U.S. Appl. No. 13/221,836, 31 pages (Blumenberg). |
Office Action dated Aug. 29, 2012, received in U.S. Appl. No. 11/620,715. 20 pages (Platzer). |
Office Action dated Oct. 30, 2012, received in European Patent Application No. 08 712 946.6, which corresponds to U.S. Appl. No. 11/620,715. 20 pages (Platzer). |
Notice of Allowance dated Nov. 13, 2012; received in U.S. Appl. No. 13/464,800, 20 pages (Bolsinga). |
Pogue, D., “Windows Vista for Starters: The Missing Manual,” Safari Books Online, Jan. 25, 2007, 18 pages. |
Office Action dated Mar. 4, 2013, received in U.S. Appl. No. 12/789,695, 29 pages (Shaffer). |
Office Action dated Jan. 21, 2013, received in Chinese Patent Application No. 201110148738.9, which corresponds to U.S. Appl. No. 12/042,318, 17 pages (Beaver). |
Certificate of Grant dated Nov. 30, 2012, received in Hong Kong Patent Application No. 11110416.2, which corresponds to U.S. Appl. No. 12/042,318, 1 page (Beaver). |
Decision to Grant dated Nov. 27, 2012, received in Chinese Patent Application No. 200980000014.0, which corresponds to U.S. Appl. No. 12/042,067, 1 page (Williamson). |
Notice of Allowance dated Dec. 12, 2012, received in U.S. Appl. No. 12/042,299, 12 pages (Williamson). |
Office Action dated Dec. 5, 2012, received in Chinese Patent Application No. 200980000013.6, which corresponds to U.S. Appl. No. 12/042,299, 7 pages (Williamson). |
Office Action dated Jan. 3, 2013, received in U.S. Appl. No. 13/077,931, 24 pages (Shaffer). |
Notice of Allowance dated Dec. 3, 2012, received in U.S. Appl. No. 13/221,830, 17 pages (Moore). |
Notice of Allowance dated Dec. 12, 2012, received in U.S. Appl. No. 12/869,182, 8 pages (Platzer). |
Final Office Action dated Feb. 14, 2013, received in U.S. Appl. No. 13/221,837, 17 (Blumenberg). |
Final Office Action dated Mar. 1, 2013, received in U.S. Appl. No. 11/620,715, 25 pages (Platzer). |
Office Action dated Nov. 5, 2012, received in Chinese Patent Application No. 200880001855.9, which corresponds to U.S. Appl. No. 11/620,715, 22 pages (Platzer). |
Notice of Allowance dated Dec. 19, 2012, received in U.S. Appl. No. 13/464,800, 11 pages (Bolsinga). |
Office Action dated Mar. 5, 2013, received in U.S. Appl. No. 13/670,378, 40 pages (Beaver). |
Brown et al., “Distributed active objects,” Computer Networks and ISDN Systems, North Holland Publishing Amsterdam, NL, vol. 28, No. 11, May 1996, pp. 1037-1052. |
W3C, “Document Object Model (DOM) Level 2 Events Specification, Version 1,” W3C Recommendation, Nov. 13, 2000, 48 pages. |
Wikibooks, “Java Programming/Applets/Event Listeners,” May 1, 2007, http://en.wikibooks.org/w/index.php?title=Java—Programming/Applets/Event—Listeners&oldid=849558, 6 pages. |
International Preliminary Report on Patentability dated Dec. 27, 2012, received in International Patent Application No. PCT/US2011/039583, which corresponds to U.S. Appl. No. 12/892,848, 10 pages (Dale). |
European Search Report dated Feb. 28, 2013, received in European Patent Application No. 12188748,3, which corresponds to U.S. Appl. No. 12/042,067, 8 pages (Williamson). |
Office Action dated Mar. 14, 2013, received in U.S. Appl. No. 12/042,067, 27 pages (Williamson). |
Summons to oral proceedings dated Mar. 7, 2013, received in European Patent Application No. 09700006.1, which corresponds to U.S. Appl. No. 12/042,067, 5 pages (Williamson). |
Office Action dated Mar. 20, 2013, received in U.S. Appl. No. 13/163,626, 10 pages (Williamson). |
Summons to oral proceedings dated Mar. 27, 2013, received in European Patent Application No. 09700008.7, which correspondsto U.S. Appl. No. 12/042,237, 4 pages (Bolsinga). |
Final Office Action dated Mar. 7, 2013, received in U.S. Appl. No. 11/620,727, 32 pages (Blumenberg). |
Office Action dated Apr. 11, 2013, received in U.S. Appl. No. 13/251,146, 35 pages (Blumenberg). |
Office Action dated Mar. 7, 2013, received in Chinese Patent Application No. 200880001855.9, which corresconds to U.S. Appl. No. 11/620,715, (Platzer). |
International Preliminary Report on Patentability dated Jul. 4, 2013, received in International Patent Application No. PCT/US2011/065859, which corresponds to U.S. Appl. No. 13/077,925, 18 pages (Shaffer). |
Office Action dated Jun. 19, 2013, received in European Patent Application No. 10 712 825.8, which corresponds to U.S. Appl. No. 12/566,660, 5 pages (Moore). |
Office Action dated Jun. 28, 2013, received in Australian Patent Application No. 2011209720, which corresponds to U.S. Appl. No. 12/789,695, 4 pages (Shaffer). |
Office Action dated Aug. 26, 2013, received in Chinese Patent Application No. 201110063183.8, which corresponds to U.S. Appl. No. 12/789,695, (Shaffer). |
Office Action dated Jul. 26, 2013, received in European Patent Application No. 11 152 015.1, which corresponds to US. Appl. No. 12/789,695, 6 pages (Shaffer). |
Office Action dated Aug. 14, 2013, received in Australian Patent Application No. 2011268047, which corresponds to U.S. Appl. No. 12/892,848, 2 pages (Dale). |
Office Action dated Aug. 22, 2013, received in European Patent Application No. 11 727 371,4, which corresponds to U.S. Appl. No. 12/892,848, 6 pages (Dale). |
Final Office Action dated Jul. 19, 2013, received in U.S. Appl. No. 12/892,851, 21 pages (Dale). |
Notice of Grant dated Jul. 26, 2013, received in Chinese Patent Application No. 201120580018.5, which corresponds to U.S. Appl. No. 13/077,925, 7 pages (Shaffer). |
Notice of Acceptance dated Jul. 3, 2013, received in Australian Patent Application No. 2011205170, which corresponds to U.S. Appl. No. 12/042,318, 2 pages (Beaver). |
Office Action dated Aug. 5, 2013, received in Chinese Patent Application No. 201110148738.9, which corresponds to U.S. Appl. No. 12/042,318, 6 pages (Beaver). |
Notice of Allowance dated Sep. 27, 2013, received in U.S. Appl. No. 12/042,067, 16 pages (Williamson). |
Office Action dated Jul. 3, 2013, received in Chinese Patent Application No. 200980000013.6, which corresponds to U.S. Appl. No. 12/042,299, 6 pages (Williamson). |
Final Office Action dated Sep. 9, 2013, received in U.S. Appl. No. 13/077,931, 30 pages (Shaffer). |
Final Office Action dated Sep. 23, 2013, received in U.S. Appl. No. 13/251,121, 28 pages (Blumenberg). |
Office Action dated Oct. 9, 2012, received in U.S. Appl. No. 13/084,472, 15 pages (Crumly). |
Final Office Action dated Jun. 20, 2013, received in U.S. Appl. No. 13/084,472, 20 pages (Crumly). |
Notice of Allowance dated Jul. 24, 2013, received in U.S. Appl. No. 13/670,378, 20 days (Beaver). |
Buxton, W. et al., “Multi-Touch Systems that I Have Known and Loved,” Jan. 12, 2007, 14 pages, http://wwww.billbuxton.com/multitouchOverview.html. |
Han, J., “Jeff Han demos his breakthrough touchsoreen,” TED Ideas worth spreading, Feb. 25, 2006, http://www.ted.com/talks/jeff—han—demos—his—breakthrough—touchscreen.html. |
Jazzmutant, “Lemur v1.3 Documentation Addendum,” Mar. 22, 2005, http://www.juzzmutant.com/support—download.php, 3 pages. |
Jazzmutant, “Lemur v1.3 Examples package: CursorModes.xml,” Jan. 31, 2006, http://www.juzzmutant.com/support—download.php, 4 pages. |
Jazzmutant “Lemur v1.3 Examples package: LightStepSeq.xml,” Jan. 31, 2006, http://www.juzzmutant.com/support—download.php, 5 pages. |
Jazzmutant Sas et al., “The Lemur Owner's Manual,” Oct. 31, 2005, http://www.juzzmuant.com/support—download.php, 108 pages. |
Jazzmutant, “Support,” Apr. 21, 2006, http://web.archive.org/web/20060421144624/http://www.jazzmutant.com/support—download.php, 2 pages. |
Justice Floyd, “UK Royal Court of Justice: [2012] EWHC 1789 (Pat)—Extracts,” Jul. 4, 2013, http://www.judiciary.gov.uk/Resources/JCO/Documents/Judgements/htc-v-apple-judgment.pdf, 26 pages. |
Microsoft, “Microsoft Windows Software Development Kit-Update for Windows Vista,” Mar. 22, 2007, http://www.microsoft.com/en-us/download/details.aspx?displayang=en&id=23719, 26 pages. |
Microsoft, “Window Styles-Microsoft Windows SDK-Screenshot,” Mar. 22, 2007, 2 pages. |
Petzold, C., Programming Microsoft Windows with C#, Jan. 18, 2002, 5 pages. |
YouTube, “A Lemurized Formula,” 4:07 minute video uploaded to YouTube by Sph9000 on Dec. 12, 2007, http://youtube.com/watch?v=sHAMyQak-LM, 1 page. |
Office Action dated Jun. 3, 2013, received in Japanese Patent Application No. 2012500844, which corresponds to U.S. Appl. No. 12/566,660, 5 pages (Moore). |
Notice of Allowance dated May 29, 2013, received in Korean Patent Application No. 10-2011-7024288, which corresponds to U.S. Appl. No. 12/566,660, 2 pages (Moore). |
Notice of Allowance dated May 15, 2013, received in U.S. Appl. No. 12/892,848, 37 pages (Dale). |
Notice of Allowance dated Jun. 27, 2013, received in U.S. Appl. No. 13/077,925, 29 pages (Shaffer). |
Office Action dated Apr. 22, 2013, received in Chinese Patent Application No. 201120580918.5, which corresponds to U.S. Appl. No. 13/077,925, 4 pages (Shaffer). |
Summons to oral proceedings dated May 15, 2013, received in European Patent Application No. 09154313.2 which corresponds to U.S. Appl. No. 12/042,318, 30 pages (Beaver). |
Notice of Allowance dated Jun. 13, 2013, received in U.S. Appl. No. 13/077,927, 29 pages (Shaffer). |
Final Office Action dated May 15, 2013, received in U.S. Appl. No. 13/221,836, 27 pages (Blumenberg). |
Office Action dated Jun. 7, 2013, received in U.S. Appl. No. 13/215,150, 43 pages (Blumenberg). |
Office Action dated Apr. 23. 2013, received in U.S. Appl. No. 13/251,152, 29 pages (Blumenberg). |
Office Action dated Jun. 26, 2013, received in U.S. Appl. No. 13/867,950, 21 pages (Platzer). |
Flanagan, D., “JavaScript,” 5th Edition, O'Reilly Japan, Jan. 31, 2008, pp. 405-437, (English translation provided). |
Office Action dated Oct. 31, 2013, received in Chinese Patent Application No. 201080020598.0, which corresponds to U.S. Appl. No. 12/566,660, 2 pages (Moore). |
Office Action dated Nov. 18, 2013, received in Japanese Patent Application No. 2013 515382, which corresponds to U.S. Appl. No. 12/892,848, 37 pages (Dale). |
Office Action dated Dec. 5, 2013, received in Korean Patent Application No. 2012 7029618, which corresponds to U.S. Appl. No. 12/892,848, 4 pages (Dale). |
Notice of Allowance dated Dec. 16, 2013, received in U.S. Appl. No. 12/042,318, 51 pages (Beaver). |
Notice of Allowance dated Dec. 6, 2013, received in U.S. Appl. No. 12/042,067, 12 pages (Williamson). |
Final Office Action dated Dec. 11, 2013, received in U.S. Appl. No. 13/251,150, 47 pages (Blumenberg). |
Office Action dated Dec. 6, 2013, received in U.S. Appl. No. 13/054,472, 42 pages (Crumly). |
Notice of Allowance dated Jan. 15, 2014, received in U.S. Appl. No. 13/620,390, 28 pages (Moore). |
Flanagan, D., “JaveScript,” 5th Edition, O'Reilly Japan, Jan. 31, 2008, pp. 405-437, (No English translation provided). |
Office Action dated Oct. 24, 2013, received in U.S. Appl. No. 12/789,695, 24 pages (Shaffer). |
Decision to Grant dated Nov. 1, 2013, received in Japanese Patent Application No. 2012 186775, which corresponds to U.S. Appl. No. 12/042,318, 3 pages (Beaver). |
Notification of Grant dated Nov. 6, 2013, received in Chinese Patent Application No. 200980000013.6, which corresponds to U.S. Appl. No. 12/042,299, 2 pages (Williamson). |
Summons to attend oral proceedings dated Oct. 30, 2013, received in European Patent Application No. 09700007.9, which corresponds to U.S. Appl. No. 12/042,299, 5 pages (Williamson). |
Summons to attend oral proceedings dated Oct. 30, 2013, received in European Patent Application No. 11184226.6, which corresponds to U.S. Appl. No. 12/042,299, 5 pages (Williamson). |
Summons to attend oral proceedings dated Oct. 30, 2013, received in European Patent Application No. 11184224.1, which corresponds to U.S. Appl. No. 12/042,299, 5 pages (Williamson). |
Summons to attend oral proceedings dated Oct. 30, 2013, received in European Patent Application No. 11184223.3, which corresponds to U.S. Appl. No. 12/042,299, 5 pages (Williamson). |
Summons to attend oral proceedings dated Oct. 30, 2013, received in European Patent Application No. 11184222.5, which corresponds to U.S. Appl. No. 12/042,299, 5 pages (Williamson). |
Office Action dated Sep. 6, 2013, received in Japanese Patent Application No. 2012 088747, which corresponds to U.S. Appl. No. 12/042,299, 4 pages (Williamson). |
Office Action dated Oct. 24, 2013, received in U.S. Appl. No. 13/163,626, 16 pages (Williamson). |
Office Action dated Sep. 2, 2013, received in Japanese Patent Application No. 2010 502357, which corresponds to U.S. Appl. No. 12/042,237, 11 pages (Bolsinga). |
Office Action dated Sep. 24, 2013 received in Japanese Patent Application No. 2012 218235 which corresponds to U.S. Appl. No. 12/042,237, 6 pages (Bolsinga). |
Office Action dated Jul. 2, 2013, received in Chinese Patent Application No. 200880001827.7, which corresponds to U.S. Appl. No. 11/620,717, 7 pages (Platzer). |
Office Action dated Nov. 26, 2012, received in European Patent Application No. 08 712 964.9, which corresponds to U.S. Appl. No. 11/620,717, 6 pages (Platzer). |
Office Action dated Oct. 30, 2013, received in U.S. Appl. No. 13/221,836, 31 pages (Blumenberg). |
Final Office Acton dated Oct. 2, 2013, received in U.S. Appl. No. 13/251,146, 24 pages (Blumenberg). |
Final Office Action dated Oct. 18, 2013, received in U.S. Appl. No. 13/251,152, 38 pages (Blumenberg). |
Ex parte reexamination communication transmittal form, dated Jul. 26, 2013, received in Reexamnation No. 90/012,332, 61 pages. |
Notice of Allowance dated Oct. 22, 2013, received in U.S. Appl. No. 13/867,950, 12 pages (Platzer). |
Number | Date | Country | |
---|---|---|---|
20110252306 A1 | Oct 2011 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 12042299 | Mar 2008 | US |
Child | 13163624 | US |