author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Fri, 19 Feb 2010 23:40:16 +0200 | |
branch | RCL_3 |
changeset 4 | 3b1da2848fc7 |
parent 0 | 1918ee327afb |
permissions | -rw-r--r-- |
0 | 1 |
name = "eval"; |
2 |
||
3 |
group = "running"; |
|
4 |
||
5 |
shortDescription = "Evaluate program"; |
|
6 |
||
7 |
longDescription = ""; |
|
8 |
||
9 |
argumentTypes = [ "script" ]; |
|
10 |
||
11 |
function execute() { |
|
12 |
if (arguments.length == 0) { |
|
13 |
message("Missing argument (program)."); |
|
14 |
return; |
|
15 |
} |
|
16 |
setEvaluateAction(0); |
|
17 |
scheduleEvaluate(getCurrentFrameIndex(), arguments[0], "console input (" + Date() + ")"); |
|
18 |
}; |
|
19 |
||
20 |
function handleResponse(resp, id) { |
|
21 |
} |