Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: chrome/browser/cocoa/applescript/examples/tab_manipulation.applescript

Issue 3180006: Cleaned up the SDEF... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 -- Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 -- Use of this source code is governed by a BSD-style license that can be
3 -- found in the LICENSE file.
4
5 -- Contains some common tab manipulation commands.
6 tell application "Chromium"
7 tell window 1 to make new tab with properties {URL:"http://google.com"}
8 -- create a new tab and navigate to a particular URL.
9
10 set var to active tab index of window 1
11 set active tab index of window 1 to (var - 1) -- Select the previous tab.
12
13 set var to active tab index of window 1
14 set active tab index of window 1 to (var + 1) -- Select the next tab.
15
16 get title of tab 1 of window 1 -- Get the URL that the user can see.
17
18 get loading of tab 1 of window 1 -- Check if a tab is loading.
19
20 -- Common edit/manipulation commands.
21 tell tab 1 of window 1
22 undo
23
24 redo
25
26 cut selection -- Cut a piece of text and place it on the system clipboard.
27
28 copy selection -- Copy a piece of text and place it on the system clipboard .
29
30 paste selection -- Paste a text from the system clipboard.
31
32 select all
33 end tell
34
35 -- Common navigation commands.
36 tell tab 1 of window 1
37 go back
38
39 go forward
40
41 reload
42
43 stop
44 end tell
45 end tell
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698