-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathImages.tid
41 lines (30 loc) · 1.02 KB
/
Images.tid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
caption: Images
title: $:/plugins/inmysocks/SnapSVG/Images
Select Image:
<$select tiddler='$:/state/Images' field='selected_surface'>
<option value=''>
--
</option>
<$list filter='[all[tiddlers+system+shadows]type[SVG Image]]'>
<option value=<<currentTiddler>>>
<$view field='title'/>
</option>
</$list>
</$select>
<$checkbox tiddler={{$:/state/Images!!selected_surface}} field='play' checked='true' unchecked='false'>
Animate
</$checkbox>
<$reveal type='match' state='$:/state/Images!!selected_surface' text=''>
Select an image.
</$reveal>
<$reveal type='nomatch' state='$:/state/Images!!selected_surface' text=''>
Height: <$edit-text tiddler={{$:/state/Images!!selected_surface}} field='height'/>
Width: <$edit-text tiddler={{$:/state/Images!!selected_surface}} field='width'/>
Contained Elements:
<$list filter='[type[SVG Element]]'>
<$checkbox tag={{$:/state/Images!!selected_surface}}>
<$view field='object_name'/>
</$checkbox>
(<$link to=<<currentTiddler>>>Edit</$link>)<br>
</$list>
</$reveal>