Changeset 877


Ignore:
Timestamp:
02/11/14 01:27:13 (10 years ago)
Author:
ngw8
Message:

Updating the design of the Exploratory Search overlays, along with a few related fixes.

Added the FontAwesome font (used for the ES Back/Forward/Home buttons). Copying and pasting the symbol characters from http://fortawesome.github.io/Font-Awesome/cheatsheet/ to an Expeditee text item with "family: fontawesome" set is the easiest way to use it.

Added image-based buttons with icons for the main Exploratory Search actions. The label part of the buttons are still Expeditee text, but I wasn't able to simply use FontAwesome text items for the icon part, as this meant hovering over a button gave two distinct clickable regions (even when the text and the icon were positioned at the same coord, unless the icon item was loaded to the frame's list of items after the label), which seemed like it might be confusing to the user. Instead the icons are just part of the bitmaps, so it's a little harder to change the icon (setting the icon as a layer mask on the base button image in GIMP or Photoshop is the best way).

Changed the JFXBrowser initialization code so that the initial URL (grabbed from the text item source) is passed through the navigate() method, so search queries or URLs without a protocol can be used as the intial value.

Modified ExploratorySearchActions so that the startBrowserSession() action can be called from items that aren't text (needed so that it could be used on the image buttons). Also changed it so that the widget itself isn't created when the action is run, just its source text item, since the widget gets created automatically when the new frame is opened (and creating it in the action causes some issues with loading the initial page).

With the updated overlays, you'll need to re-copy the resources folder across to your local .expeditee folder.
I haven't changed the positioning of the @ao and @old tags in the ES stuff, so that might need to be adjusted.

Location:
trunk/src/org/expeditee
Files:
7 added
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/actions/ExploratorySearchActions.java

    r876 r877  
    77import org.expeditee.gui.FrameMouseActions;
    88import org.expeditee.gui.FreeItems;
    9 import org.expeditee.gui.MessageBay;
    109import org.expeditee.items.Item;
    1110import org.expeditee.items.Text;
    12 import org.expeditee.items.widgets.InteractiveWidget;
    13 import org.expeditee.items.widgets.JfxBrowser;
    1411import org.expeditee.settings.exploratorysearch.ExploratorySearchSettings;
    1512import org.expeditee.settings.network.NetworkSettings;
     
    2320        /**
    2421         * Adds a text item to the cursor which is linked to a new frame with the web browser active overlay and a JavaFX browser.
    25          * @param text The text item attached to the cursor.
     22         * @param caller The item that the action is called from
    2623         */
    27         public static void startBrowserSession(Text text) {
     24        public static void startBrowserSession(Item caller) {
    2825                try {
    29                         if (!(text instanceof Text)) {
    30                                 MessageBay.errorMessage("Must be a text item.");
    31                                 return;
     26                        String url;
     27                       
     28                        Text urlItem = FreeItems.getTextAttachedToCursor();
     29                       
     30                        // If there is a text item attached to the cursor, use it as the URL to load
     31                        if (urlItem != null) {
     32                                url = urlItem.getText();
     33                               
     34                                // Remove the item, since the link to the browser session will added to the cursor
     35                                urlItem.delete();
     36                        } else {
     37                                // Otherwise use the home page specified in the settings
     38                                url = NetworkSettings.HomePage.get();
    3239                        }
    3340                       
    34                         if(text.getLink() != null) {                                            // text item can't already have a link
    35                                 MessageBay.errorMessage("Text item already has link.");
    36                                 return;
    37                         }
    38                        
    39                         String url = "";
    40                        
    41                         // If no text with url is passed to action create a new text item
    42                         if(!FreeItems.textOnlyAttachedToCursor()) {
    43                                 url = NetworkSettings.HomePage.get();                   // use home page specified by settings
    44                                 text = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(),
    45                                                 "Web Browser Session", null);
    46                                 text.setParent(DisplayIO.getCurrentFrame());
    47                                 FrameMouseActions.pickup(text);
    48                         } else {
    49                                 url = text.getText();                                                   // get url from text attached to cursor if possible
    50                         }
    51                        
    52                         // Set text to session id. TODO: set session id.
    53                         text.setText("Web Browser Session");
     41                        Item linkToBrowserSession = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), "Web Browser Session", null);
     42                        linkToBrowserSession.setParent(DisplayIO.getCurrentFrame());
     43                        FrameMouseActions.pickup(linkToBrowserSession);
    5444                       
    5545                        // Create new frame
    56                         Frame frame = FrameIO.CreateNewFrame(text);
    57                         text.setLink("" + frame.getNumber());                           // link this text item to new frame
     46                        Frame frame = FrameIO.CreateNewFrame(linkToBrowserSession);
     47                       
     48                        // link this text item to new frame
     49                        linkToBrowserSession.setLink("" + frame.getNumber());
    5850                       
    5951                        // Remove everything from new frame
     
    7668                        // Start Browser in fullscreen or default, depending on settings
    7769                        if(ExploratorySearchSettings.BrowserFullScreen.get()) {
    78                                 wt = frame.addText(0 + lm, 70 + tm, "@iw: org.expeditee.items.widgets.JfxBrowser "
     70                                wt = frame.addText(144 + lm, 0 + tm, "@iw: org.expeditee.items.widgets.JfxBrowser "
    7971                                                + ("--anchorLeft " + lm + " --anchorRight " + rm + " --anchorTop " + (tm + ExploratorySearchSettings.BROWSER_VERT_OFFSET) + " --anchorBottom " + bm + " ")
    8072                                                + (Browser._theBrowser.getContentPane().getWidth() - lm - rm) + " "
     
    8274                                System.err.println(wt.getText());
    8375                        } else {
    84                                 wt = frame.addText(0 + lm, 70 + tm, "@iw: org.expeditee.items.widgets.JfxBrowser " +
     76                                wt = frame.addText(144 + lm, 0 + tm, "@iw: org.expeditee.items.widgets.JfxBrowser " +
    8577                                                (ExploratorySearchSettings.BrowserDefaultWidth.get() - lm - rm) + " " +
    8678                                                (ExploratorySearchSettings.BrowserDefaultHeight.get() - tm - bm) + " : " + url, null);
    8779                        }
    88                        
    89                         // Create widget via text annotation
    90                         InteractiveWidget.createWidget(wt);
    9180                       
    9281                        FrameIO.SaveFrame(frame);                                                       // save frame to disk
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/0.exp

    r617 r877  
    1 V 1
     1V 3
    22U csl14A
    33D 12Dec2013[10:13]
    4 M csl14A
    5 d 12Dec2013[10:13]
     4M Nathaniel
     5d 06Feb2014[22:28]
    66Z
    77
     
    1313o csl14A
    1414v S
     15f tr18
     16t -1.0
     17b 0.0
     18m 0.0
    1519w 886
     20h -1.0
    1621
    1722Z
     
    2126Z
    2227
    23 ActiveTime:00:00:00
     28ActiveTime:00:00:04
    2429DarkTime:00:00:00
     3028:09:461 475 186 Rd
     3128:09:485 475 186 Md
     3228:10:030 586 131 kRight
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/1.exp

    r810 r877  
    1 V 140
    2 U csl14A
    3 D 12Dec2013[10:13]
    4 M csl14A
    5 d 03Feb2014[12:15]
     1V 24
     2U Nathaniel
     3D 06Feb2014[17:16]
     4M nathaniel
     5d 11Feb2014[00:40]
    66Z
    77
    8 S P 55
    9 s 12Dec2013[10:14.00]
    10 d 100 0 0 100
    11 R 0.0
    12 N 0.0
    13 P 0 0
    14 Q 0
    15 o csl14A
    16 v S
    17 h 2.0
    18 l 63 64
    19 c 36 37 38 39
    20 
    21 S P 56
    22 s 12Dec2013[10:14.00]
    23 d 100 0 0 100
    24 R 140.0
    25 N 0.0
    26 P 140 0
    27 Q 0
    28 o csl14A
    29 j 50.0 0.3 0.75
    30 v S
    31 h 2.0
    32 l 63 65
    33 c 36 40 41 42 43 942 1665
    34 
    35 S T 50
    36 s 12Dec2013[10:14.00]
     8S T 11
     9s 10Feb2014[21:29.12]
    3710d 0 0 0 100
    38 R -2.0
    39 N -41.0
    40 P 0 30
     11P 2 27
    4112T Exploratory
    4213T Search
    4314Q 0
    44 o csl14A
     15R 0.0
     16N 6.0
     17o nathaniel
    4518v S
    46 f Roboto Condensed_r25
    47 t -1.0
    48 b 0.0
     19f Roboto Condensed_r20
     20t -23.0
     21b -10.0
    4922m 0.0
    50 w 140
     23w 135
    5124k C
    5225h -1.0
    5326
    54 S P 59
    55 s 12Dec2013[10:14.00]
    56 d 100 0 0 100
    57 R 140.0
    58 N 70.0
    59 P 140 70
     27S T 24
     28s 10Feb2014[21:29.35]
     29d 50 50 50 100
     30P 167 45
     31T @ao: base
     32F 4
    6033Q 0
    61 o csl14A
     34o nathaniel
    6235v S
    63 h 2.0
    64 l 67
    65 c 41 42 44 45
    66 
    67 S P 60
    68 s 12Dec2013[10:14.00]
    69 d 100 0 0 100
    70 R 0.0
    71 N 70.0
    72 P 0 70
    73 Q 0
    74 o csl14A
    75 v S
    76 h 2.0
    77 l 67
    78 c 38 48
    79 
    80 S T 51
    81 s 12Dec2013[10:14.00]
    82 R 7.0
    83 N 72.0
    84 P 20 100
    85 T Go Browsing
    86 X startBrowserSession
    87 Q 0
    88 o csl14A
    89 v S
    90 f Roboto Condensed_r18
     36f DejaVu Sans Light_r9
    9137t -1.0
    9238b 0.0
     
    9440h -1.0
    9541
    96 S T 52
    97 s 12Dec2013[10:14.00]
    98 R 7.0
    99 N 102.0
    100 P 20 130
    101 T New Mindmap
    102 X startMindmapSession
     42S T 78
     43s 10Feb2014[21:33.55]
     44P 7 65
     45T @i: iconbutton_plus.png 127
     46X startbrowsersession
     47x F
    10348Q 0
    104 o csl14A
     49R 5.0
     50N 65.0
     51o nathaniel
     52n F
    10553v S
    106 f Roboto Condensed_r18
     54f tr18
    10755t -1.0
    10856b 0.0
    10957m 0.0
    110 h -1.0
     58h 0.0
    11159
    112 S P 945
    113 s 12Dec2013[10:14.00]
    114 d 100 0 0 100
    115 R 0.0
    116 N 500.0
    117 P 0 500
    118 Q 0
    119 o csl14A
    120 v S
    121 h 2.0
    122 l 943
    123 c 39 49
    124 
    125 S P 944
    126 s 12Dec2013[10:14.00]
    127 d 100 0 0 100
    128 R 140.0
    129 N 500.0
    130 P 140 500
    131 Q 0
    132 o csl14A
    133 v S
    134 h 2.0
    135 l 943
    136 c 43 942 46 941
    137 
    138 S T 955
    139 s 17Jan2014[16:36.40]
    140 d 50 50 50 100
    141 R 50.0
    142 N 486.0
    143 P 52 518
    144 T @i: home.png 36
    145 X GoToHome
     60S T 14
     61s 10Feb2014[21:29.12]
     62P 11 84
     63T Web Browser
     64X startbrowsersession
    14665x F
    14766Q 0
    148 o csl14A
     67R 9.0
     68N 68.0
     69o nathaniel
     70n F
    14971v S
    150 f Roboto Condensed_r18
     72f Roboto Condensed_r15
    15173t -1.0
    15274b 0.0
    15375m 0.0
    154 w 974
     76w 116
     77k R
    15578h -1.0
    15679
    157 S T 494
    158 s 18Dec2013[15:20.05]
    159 d 50 50 50 100
    160 R 11.0
    161 N 490.0
    162 P 13 522
    163 T @i: leftArrow.png 32
    164 X Back
     80S T 116
     81s 10Feb2014[21:35.24]
     82P 7 95
     83T @i: iconbutton_plus.png 127
     84X startmindmapsession
    16585x F
    16686Q 0
    167 o csl14A
     87R 5.0
     88N 95.0
     89o nathaniel
     90n F
    16891v S
    169 f Roboto Condensed_r18
     92f tr18
    17093t -1.0
    17194b 0.0
    17295m 0.0
    173 h -1.0
     96h 0.0
    17497
    175 S T 531
    176 s 18Dec2013[15:20.05]
    177 d 50 50 50 100
    178 R 94.0
    179 N 490.0
    180 P 96 522
    181 T @i: rightArrow.png 32
    182 X Forward
     98S T 17
     99s 10Feb2014[21:29.12]
     100P 11 114
     101T MindMap
     102X startmindmapsession
    183103x F
    184104Q 0
    185 o csl14A
     105R 9.0
     106N 98.0
     107o nathaniel
     108n F
    186109v S
    187 f Roboto Condensed_r18
     110f Roboto Condensed_r15
    188111t -1.0
    189112b 0.0
    190113m 0.0
     114w 116
     115k R
    191116h -1.0
    192 
    193 S T 460
    194 s 13Dec2013[14:33.39]
    195 R 41.0
    196 N 537.0
    197 P 43 575
    198 T HELP
    199 F Documentation1
    200 x F
    201 Q 0
    202 o csl14A
    203 n F
    204 v S
    205 f Roboto Condensed_r25
    206 t -1.0
    207 b 0.0
    208 m 0.0
    209 h -1.0
    210 
    211 S P 1666
    212 s 18Dec2013[15:26.35]
    213 d 100 0 0 100
    214 R 0.0
    215 N 590.0
    216 P 0 590
    217 Q 0
    218 o csl14A
    219 v S
    220 h 2.0
    221 l 901
    222 
    223 S P 899
    224 s 18Dec2013[15:26.35]
    225 d 100 0 0 100
    226 R 140.0
    227 N 590.0
    228 P 140 590
    229 Q 0
    230 o csl14A
    231 v S
    232 h 2.0
    233 l 901
    234 c 1665 1664
    235 
    236 S T 947
    237 s 18Dec2013[15:47.27]
    238 d 50 50 50 100
    239 R 38.0
    240 N 582.0
    241 P 40 646
    242 T @i: es.png 64
    243 x F
    244 Q 0
    245 o csl14A
    246 v S
    247 f Roboto Condensed_r18
    248 t -1.0
    249 b 0.0
    250 m 0.0
    251 h -1.0
    252 
    253 S P 57
    254 s 12Dec2013[10:14.00]
    255 d 100 0 0 100
    256 R 140.0
    257 I -11.0
    258 P 140 882
    259 Q 0
    260 o csl14A
    261 j 14.0 0.3 0.75
    262 v S
    263 h 2.0
    264 l 65 66
    265 c 40 44 45 46 941 1664 47
    266 
    267 S P 58
    268 s 12Dec2013[10:14.00]
    269 d 100 0 0 100
    270 R 0.0
    271 I -11.0
    272 P 0 882
    273 Q 0
    274 o csl14A
    275 j 50.0 0.3 0.75
    276 v S
    277 h 2.0
    278 l 64 66
    279 c 37 48 49 47
    280 
    281 S P 1734
    282 s 30Jan2014[11:37.01]
    283 d 100 0 0 100
    284 P 1242 8026
    285 Q 0
    286 o csl14A
    287 j 14.0 0.3 0.75
    288 v S
    289 h 2.0
    290 l 1750
    291 c 1778
    292 
    293 S P 1735
    294 s 30Jan2014[11:37.01]
    295 d 100 0 0 100
    296 P 1102 8026
    297 Q 0
    298 o csl14A
    299 j 50.0 0.3 0.75
    300 v S
    301 h 2.0
    302 l 1750
    303 c 1778
    304117
    305118Z
    306119
    307 L 63 1
    308 s 56 55
    309 
    310 L 64 1
    311 s 55 58
    312 
    313 L 65 1
    314 s 57 56
    315 
    316 L 67 1
    317 s 60 59
    318 
    319 L 943 1
    320 s 945 944
    321 
    322 L 901 1
    323 s 1666 899
    324 
    325 L 66 1
    326 s 58 57
    327 
    328 L 1750 1
    329 s 1735 1734
     120Z
    330121
    331122Z
    332123
    333 C 36 3
    334 s 56 55
    335 
    336 C 37 2
    337 s 55 58
    338 
    339 C 38 2
    340 s 60 55
    341 
    342 C 39 2
    343 s 945 55
    344 
    345 C 40 2
    346 s 57 56
    347 
    348 C 41 2
    349 s 59 56
    350 
    351 C 42 2
    352 s 59 56
    353 
    354 C 43 2
    355 s 944 56
    356 
    357 C 942 2
    358 s 944 56
    359 
    360 C 1665 2
    361 s 899 56
    362 
    363 C 44 2
    364 s 59 57
    365 
    366 C 45 2
    367 s 59 57
    368 
    369 C 48 2
    370 s 60 58
    371 
    372 C 49 2
    373 s 945 58
    374 
    375 C 46 2
    376 s 944 57
    377 
    378 C 941 2
    379 s 944 57
    380 
    381 C 1664 2
    382 s 899 57
    383 
    384 C 47 3
    385 s 58 57
    386 
    387 C 1778 3
    388 s 1735 1734
    389 
    390 Z
    391 
    392 ActiveTime:01:07:21
    393 DarkTime:00:20:24
    394 15:26:102 884 700 kF9
    395 15:26:613 884 700 kF9
    396 15:27:088 884 700 Ld
    397 15:27:159 884 700 Lu
     124ActiveTime:00:07:29
     125DarkTime:00:00:00
     12640:44:669 109 111 Rd
     12740:44:695 109 111 Ld
     12840:45:178 389 242 Md
     12940:45:300 389 242 Mu
     13040:46:448 618 336 Rd
     13140:49:586 122 97 Md
     13240:49:745 122 97 Mu
     13340:50:563 498 308 Rd
     13440:50:578 498 308 Md
     13540:51:656 350 317 Ld
     13640:51:721 350 317 Lu
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/2.exp

    r810 r877  
    1 V 139
     1V 212
    22U csl14A
    33D 12Dec2013[10:14]
    4 M csl14A
    5 d 03Feb2014[12:15]
     4M nathaniel
     5d 11Feb2014[00:41]
    66Z
    7 
    8 S P 1332
    9 s 12Dec2013[10:14.45]
    10 d 100 0 0 100
    11 R 0.0
    12 N 0.0
    13 P 0 0
    14 Q 0
    15 o csl14A
    16 v S
    17 h 2.0
    18 l 1337 1338
    19 c 96 139 249 252
    20 
    21 S P 1333
    22 s 12Dec2013[10:14.45]
    23 d 100 0 0 100
    24 H -11.0
    25 N 0.0
    26 P 1679 0
    27 Q 0
    28 o csl14A
    29 v S
    30 h 2.0
    31 l 1337 1368
    32 c 249 97 140 250
    33 
    34 S P 1334
    35 s 12Dec2013[10:14.45]
    36 d 100 0 0 100
    37 R 140.0
    38 N 0.0
    39 P 140 0
    40 Q 0
    41 o csl14A
    42 v S
    43 h 2.0
    44 l 1369
    45 c 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    46 
    47 S P 1335
    48 s 12Dec2013[10:14.45]
    49 d 100 0 0 100
    50 R 484.0
    51 N 0.0
    52 P 484 0
    53 Q 0
    54 o csl14A
    55 v S
    56 h 2.0
    57 l 1370
    58 c 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
    59 
    60 S P 1336
    61 s 12Dec2013[10:14.45]
    62 d 100 0 0 100
    63 R 765.0
    64 N 0.0
    65 P 765 0
    66 Q 0
    67 o csl14A
    68 v S
    69 h 2.0
    70 l 1371
    71 c 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    72 
    73 S T 1341
    74 s 12Dec2013[10:14.45]
    75 R 498.0
    76 N -8.0
    77 P 500 20
    78 T Actions:
    79 Q 0
    80 o csl14A
    81 v S
    82 f Roboto Condensed_r18
    83 t -1.0
    84 b 0.0
    85 m 0.0
    86 h -1.0
    87 
    88 S T 1342
    89 s 12Dec2013[10:14.45]
    90 R 148.0
    91 N -8.0
    92 P 150 20
    93 T Commands:
    94 Q 0
    95 o csl14A
    96 v S
    97 f Roboto Condensed_r18
    98 t -1.0
    99 b 0.0
    100 m 0.0
    101 h -1.0
    102 
    103 S T 1343
    104 s 12Dec2013[10:14.45]
    105 d 0 0 0 100
    106 R 358.0
    107 N -1.0
    108 P 360 21
    109 T [drop onto browser]
    110 Q 0
    111 o csl14A
    112 v S
    113 f Roboto Condensed_r13
    114 t -1.0
    115 b 0.0
    116 m 0.0
    117 h -1.0
    118 
    119 S P 1346
    120 s 12Dec2013[10:14.45]
    121 d 100 0 0 100
    122 R 236.0
    123 N 25.0
    124 P 236 25
    125 e 100 59 100 100
    126 Q 0
    127 o csl14A
    128 v S
    129 h 2.0
    130 l 1350
    131 
    132 S P 1347
    133 s 12Dec2013[10:14.45]
    134 d 100 0 0 100
    135 R 150.0
    136 N 25.0
    137 P 150 25
    138 e 100 59 100 100
    139 Q 0
    140 o csl14A
    141 v S
    142 h 2.0
    143 l 1350
    144 
    145 S P 1348
    146 s 12Dec2013[10:14.45]
    147 d 100 0 0 100
    148 R 500.0
    149 N 25.0
    150 P 500 25
    151 e 100 59 100 100
    152 Q 0
    153 o csl14A
    154 v S
    155 h 2.0
    156 l 1351
    157 
    158 S P 1349
    159 s 12Dec2013[10:14.45]
    160 d 100 0 0 100
    161 R 560.0
    162 N 25.0
    163 P 560 25
    164 e 100 59 100 100
    165 Q 0
    166 o csl14A
    167 v S
    168 h 2.0
    169 l 1351
    170 
    171 S T 1420
    172 s 17Jan2014[16:55.39]
    173 d 50 50 50 100
    174 H 45.0
    175 N -6.0
    176 P 1510 26
    177 T @i: home.png 36
    178 X GoToHome
    179 x F
    180 Q 0
    181 o csl14A
    182 v S
    183 f Roboto Condensed_r18
    184 t -1.0
    185 b 0.0
    186 m 0.0
    187 w 974
    188 h -1.0
    1897
    1908S T 1478
    1919s 18Dec2013[15:23.27]
    19210d 50 50 50 100
    193 H -37.0
    194 N -3.0
    195 P 1557 29
     11P 1925 -3
    19612T @i: rightArrow.png 32
    19713X Forward
    19814x F
    19915Q 0
     16H -37.0
     17N -3.0
    20018o csl14A
    20119v S
     
    20624h -1.0
    20725
    208 S T 1412
    209 s 18Dec2013[15:23.27]
     26S T 1903
     27s 11Feb2014[00:05.31]
    21028d 50 50 50 100
    211 H 60.0
    212 N -3.0
    213 P 1469 29
    214 T @i: leftArrow.png 32
    215 X Back
     29P 166 22
     30T @ao: base
     31F 4
     32Q 0
     33o nathaniel
     34v S
     35f DejaVu Sans Light_r9
     36t -1.0
     37b 0.0
     38m 0.0
     39h -1.0
     40
     41S T 1496
     42s 10Feb2014[21:44.02]
     43d 0 0 0 100
     44P 2 27
     45T Web Browser
     46Q 0
     47R 0.0
     48N 6.0
     49o nathaniel
     50v S
     51f Roboto Condensed_r20
     52t -23.0
     53b -10.0
     54m 0.0
     55w 135
     56k C
     57h -1.0
     58
     59S T 1680
     60s 10Feb2014[22:04.30]
     61d 50 50 50 100
     62P 7 40
     63T @i: iconbutton_plus.png 127
     64X startbrowser
    21665x F
    21766Q 0
    218 o csl14A
    219 v S
    220 f Roboto Condensed_r18
    221 t -1.0
    222 b 0.0
    223 m 0.0
    224 h -1.0
    225 
    226 S T 1354
    227 s 12Dec2013[10:14.45]
    228 d 0 0 0 100
    229 R -2.0
    230 N -41.0
    231 P 0 30
    232 T Web
    233 T Browser
    234 Q 0
    235 o csl14A
    236 v S
    237 f Roboto Condensed_r25
    238 t -1.0
    239 b 0.0
    240 m 0.0
    241 w 140
    242 k C
     67R 5.0
     68N 40.0
     69o nathaniel
     70v S
     71f DejaVu Sans Light_r18
     72t -1.0
     73b 0.0
     74m 0.0
    24375h -1.0
    24476
    24577S T 1355
    24678s 12Dec2013[10:14.45]
    247 R 489.0
    248 N -9.0
    249 P 502 41
    250 T Give me a
    251 T new browser
     79P 11 59
     80T Add Browser
    25281X startbrowser
    253 Q 0
    254 o csl14A
    255 v S
    256 f Roboto Condensed_r17
    257 t -1.0
    258 b 0.0
    259 m 0.0
     82x F
     83Q 0
     84R 9.0
     85N 43.0
     86o nathaniel
     87n F
     88v S
     89f Roboto Condensed_r15
     90t -1.0
     91b 0.0
     92m 0.0
     93w 116
     94k R
    26095h -1.0
    26196
    26297S T 1356
    26398s 12Dec2013[10:14.45]
    264 R 597.0
    265 N -9.0
    266 P 610 41
     99G 100 100 100 100
     100P 12 89
    267101T Drop url here to get
    268102T link to new browser
    269 X startBrowserNewFrame
    270 Q 0
    271 o csl14A
    272 v S
    273 f Roboto Condensed_r17
    274 t -1.0
    275 b 0.0
    276 m 0.0
    277 h -1.0
    278 
    279 S T 1357
    280 s 12Dec2013[10:14.45]
    281 R 238.0
    282 N 17.0
    283 P 240 43
    284 T www.example.com
    285 Q 0
    286 o csl14A
     103X startbrowsernewframe
     104x F
     105Q 0
     106R 10.0
     107N 73.0
     108o nathaniel
     109v S
     110f Roboto Condensed_r15
     111t -1.0
     112b 0.0
     113m 0.0
     114w 117
     115k C
     116h -1.0
     117
     118S T 1535
     119s 10Feb2014[21:56.26]
     120d 100 100 100 100
     121G 73 73 73 100
     122P 5 147
     123T Commands:
     124Q 0
     125R 3.0
     126N 130.0
     127o nathaniel
    287128v S
    288129f Roboto Condensed_r16
     
    290131b 0.0
    291132m 0.0
    292 h -1.0
    293 
    294 S T 1358
    295 s 18Dec2013[15:23.32]
    296 H 10.0
    297 N 17.0
    298 P 1609 55
    299 T HELP
    300 F Documentation1
    301 Q 0
    302 o csl14A
    303 n F
    304 v S
    305 f Roboto Condensed_r25
    306 t -1.0
    307 b 0.0
    308 m 0.0
     133w 130
     134k C
     135h -1.0
     136
     137S T 1712
     138s 10Feb2014[22:37.57]
     139d 53 53 53 100
     140P 5 171
     141T drop onto the browser :
     142Q 0
     143R 3.0
     144N 158.0
     145o nathaniel
     146v S
     147f Roboto Condensed_r12
     148t -1.0
     149b 0.0
     150m 0.0
     151w 130
     152k C
    309153h -1.0
    310154
    311155S T 1360
    312156s 12Dec2013[10:14.45]
    313 R 230.0
    314 N 37.0
    315 P 232 63
     157P 80 196
    316158T forward
    317159Q 0
    318 o csl14A
    319 v S
    320 f Roboto Condensed_r16
     160R 78.0
     161N 180.0
     162o nathaniel
     163v S
     164f Roboto Condensed_r15
     165t -1.0
     166b 0.0
     167m 0.0
     168w 50
     169k R
     170h -1.0
     171
     172S T 1359
     173s 12Dec2013[10:14.45]
     174P 10 196
     175T back
     176Q 0
     177R 8.0
     178N 180.0
     179o nathaniel
     180v S
     181f Roboto Condensed_r15
    321182t -1.0
    322183b 0.0
     
    326187S T 1361
    327188s 12Dec2013[10:14.45]
    328 R 310.0
    329 N 37.0
    330 P 312 63
     189P 10 222
    331190T refresh
    332191Q 0
    333 o csl14A
    334 v S
    335 f Roboto Condensed_r16
     192R 8.0
     193N 206.0
     194o nathaniel
     195v S
     196f Roboto Condensed_r15
    336197t -1.0
    337198b 0.0
     
    341202S T 1362
    342203s 13Dec2013[15:28.40]
    343 R 386.0
    344 N 37.0
    345 P 388 63
     204P 80 222
    346205T convert
    347206Q 0
    348 o csl14A
     207R 78.0
     208N 206.0
     209o nathaniel
     210v S
     211f Roboto Condensed_r15
     212t -1.0
     213b 0.0
     214m 0.0
     215w 50
     216k R
     217h -1.0
     218
     219S T 1805
     220s 10Feb2014[23:44.45]
     221P 10 248
     222T www.example.com
     223Q 0
     224R 8.0
     225N 232.0
     226o nathaniel
     227v S
     228f Roboto Condensed_r15
     229t -1.0
     230b 0.0
     231m 0.0
     232w 120
     233k C
     234h -1.0
     235
     236S T 1870
     237s 10Feb2014[23:48.05]
     238d 100 100 100 100
     239G 73 73 73 100
     240P 5 285
     241T Scratch Space:
     242Q 0
     243R 3.0
     244N 268.0
     245o nathaniel
    349246v S
    350247f Roboto Condensed_r16
     
    352249b 0.0
    353250m 0.0
    354 h -1.0
    355 
    356 S T 1359
    357 s 12Dec2013[10:14.45]
    358 R 164.0
    359 N 37.0
    360 P 166 63
    361 T back
    362 Q 0
    363 o csl14A
    364 v S
    365 f Roboto Condensed_r16
    366 t -1.0
    367 b 0.0
    368 m 0.0
    369 h -1.0
    370 
    371 S P 1363
    372 s 12Dec2013[10:14.45]
    373 d 100 0 0 100
    374 R 0.0
    375 N 70.0
    376 P 0 70
    377 Q 0
    378 o csl14A
    379 v S
    380 h 2.0
    381 l 1338 1372
    382 c 252 137 247 251
    383 
    384 S P 1364
    385 s 12Dec2013[10:14.45]
    386 d 100 0 0 100
    387 H -11.0
    388 N 70.0
    389 P 1679 70
    390 Q 0
    391 o csl14A
    392 j 50.0 0.3 0.75
    393 v S
    394 h 2.0
    395 l 1368 1372
    396 c 250 251 138 248
    397 
    398 S P 1365
    399 s 12Dec2013[10:14.45]
    400 d 100 0 0 100
    401 R 140.0
    402 N 70.0
    403 P 140 70
    404 Q 0
    405 o csl14A
    406 v S
    407 h 2.0
    408 l 1369
    409 c 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
    410 
    411 S P 1366
    412 s 12Dec2013[10:14.45]
    413 d 100 0 0 100
    414 R 484.0
    415 N 70.0
    416 P 484 70
    417 Q 0
    418 o csl14A
    419 v S
    420 h 2.0
    421 l 1370
    422 c 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    423 
    424 S P 1367
    425 s 12Dec2013[10:14.45]
    426 d 100 0 0 100
    427 R 765.0
    428 N 70.0
    429 P 765 70
    430 Q 0
    431 o csl14A
    432 v S
    433 h 2.0
    434 l 1371
    435 c 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
     251w 130
     252k C
     253h -1.0
     254
     255S P 1896
     256s 10Feb2014[23:49.05]
     257d 90 90 90 100
     258P 9 298
     259e 100 100 100 100
     260Q 0
     261R 9.0
     262N 298.0
     263o nathaniel
     264v S
     265h 1.0
     266l 1899 1900
     267c 1891 1893
     268
     269S P 1895
     270s 10Feb2014[23:49.05]
     271d 90 90 90 100
     272P 132 298
     273e 100 100 100 100
     274Q 0
     275R 132.0
     276N 298.0
     277o nathaniel
     278v S
     279h 1.0
     280l 1899 1902
     281c 1891 1894
     282
     283S P 1897
     284s 10Feb2014[23:49.05]
     285d 90 90 90 100
     286P 9 889
     287e 100 100 100 100
     288Q 0
     289R 9.0
     290I 74.0
     291o nathaniel
     292v S
     293h 1.0
     294l 1900 1901
     295c 1893 1892
     296
     297S P 1898
     298s 10Feb2014[23:49.05]
     299d 90 90 90 100
     300P 132 889
     301e 100 100 100 100
     302Q 0
     303R 132.0
     304I 74.0
     305o nathaniel
     306v S
     307h 1.0
     308l 1902 1901
     309c 1894 1892
    436310
    437311Z
    438312
    439 L 1337 1
    440 s 1333 1332
    441 
    442 L 1338 1
    443 s 1332 1363
    444 
    445 L 1368 1
    446 s 1364 1333
    447 
    448 L 1369 1
    449 s 1365 1334
    450 
    451 L 1370 1
    452 s 1366 1335
    453 
    454 L 1371 1
    455 s 1367 1336
    456 
    457 L 1350 1
    458 s 1347 1346
    459 
    460 L 1351 1
    461 s 1348 1349
    462 
    463 L 1372 1
    464 s 1363 1364
     313L 1899 1
     314s 1895 1896
     315
     316L 1900 1
     317s 1896 1897
     318
     319L 1902 1
     320s 1898 1895
     321
     322L 1901 1
     323s 1897 1898
    465324
    466325Z
    467326
    468 C 96 3
    469 s 1335 1332
    470 
    471 C 139 3
    472 s 1334 1332
    473 
    474 C 249 3
    475 s 1333 1332
    476 
    477 C 252 2
    478 s 1332 1363
    479 
    480 C 97 3
    481 s 1335 1333
    482 
    483 C 140 3
    484 s 1334 1333
    485 
    486 C 250 2
    487 s 1364 1333
    488 
    489 C 141 2
    490 s 1334 1365
    491 
    492 C 142 2
    493 s 1334 1365
    494 
    495 C 143 2
    496 s 1334 1365
    497 
    498 C 144 2
    499 s 1334 1365
    500 
    501 C 145 2
    502 s 1334 1365
    503 
    504 C 146 2
    505 s 1334 1365
    506 
    507 C 147 2
    508 s 1334 1365
    509 
    510 C 148 2
    511 s 1334 1365
    512 
    513 C 149 2
    514 s 1334 1365
    515 
    516 C 150 2
    517 s 1334 1365
    518 
    519 C 151 2
    520 s 1334 1365
    521 
    522 C 152 2
    523 s 1334 1365
    524 
    525 C 153 2
    526 s 1334 1365
    527 
    528 C 154 2
    529 s 1334 1365
    530 
    531 C 155 2
    532 s 1334 1365
    533 
    534 C 156 2
    535 s 1334 1365
    536 
    537 C 157 2
    538 s 1334 1365
    539 
    540 C 158 2
    541 s 1334 1365
    542 
    543 C 159 2
    544 s 1334 1365
    545 
    546 C 160 2
    547 s 1334 1365
    548 
    549 C 161 2
    550 s 1334 1365
    551 
    552 C 162 2
    553 s 1334 1365
    554 
    555 C 163 2
    556 s 1334 1365
    557 
    558 C 164 2
    559 s 1334 1365
    560 
    561 C 165 2
    562 s 1334 1365
    563 
    564 C 166 2
    565 s 1334 1365
    566 
    567 C 167 2
    568 s 1334 1365
    569 
    570 C 168 2
    571 s 1334 1365
    572 
    573 C 169 2
    574 s 1334 1365
    575 
    576 C 170 2
    577 s 1334 1365
    578 
    579 C 171 2
    580 s 1334 1365
    581 
    582 C 172 2
    583 s 1334 1365
    584 
    585 C 173 2
    586 s 1334 1365
    587 
    588 C 174 2
    589 s 1334 1365
    590 
    591 C 175 2
    592 s 1334 1365
    593 
    594 C 176 2
    595 s 1334 1365
    596 
    597 C 177 2
    598 s 1334 1365
    599 
    600 C 178 2
    601 s 1334 1365
    602 
    603 C 179 2
    604 s 1334 1365
    605 
    606 C 180 2
    607 s 1334 1365
    608 
    609 C 181 2
    610 s 1334 1365
    611 
    612 C 182 2
    613 s 1334 1365
    614 
    615 C 183 2
    616 s 1334 1365
    617 
    618 C 184 2
    619 s 1334 1365
    620 
    621 C 185 2
    622 s 1334 1365
    623 
    624 C 186 2
    625 s 1334 1365
    626 
    627 C 187 2
    628 s 1334 1365
    629 
    630 C 188 2
    631 s 1334 1365
    632 
    633 C 189 2
    634 s 1334 1365
    635 
    636 C 190 2
    637 s 1334 1365
    638 
    639 C 191 2
    640 s 1334 1365
    641 
    642 C 192 2
    643 s 1334 1365
    644 
    645 C 193 2
    646 s 1334 1365
    647 
    648 C 194 2
    649 s 1334 1365
    650 
    651 C 195 2
    652 s 1334 1365
    653 
    654 C 196 2
    655 s 1334 1365
    656 
    657 C 197 2
    658 s 1334 1365
    659 
    660 C 198 2
    661 s 1334 1365
    662 
    663 C 199 2
    664 s 1334 1365
    665 
    666 C 200 2
    667 s 1334 1365
    668 
    669 C 201 2
    670 s 1334 1365
    671 
    672 C 202 2
    673 s 1334 1365
    674 
    675 C 203 2
    676 s 1334 1365
    677 
    678 C 204 2
    679 s 1334 1365
    680 
    681 C 205 2
    682 s 1334 1365
    683 
    684 C 206 2
    685 s 1334 1365
    686 
    687 C 207 2
    688 s 1334 1365
    689 
    690 C 208 2
    691 s 1334 1365
    692 
    693 C 209 2
    694 s 1334 1365
    695 
    696 C 210 2
    697 s 1334 1365
    698 
    699 C 211 2
    700 s 1334 1365
    701 
    702 C 212 2
    703 s 1334 1365
    704 
    705 C 213 2
    706 s 1334 1365
    707 
    708 C 214 2
    709 s 1334 1365
    710 
    711 C 215 2
    712 s 1334 1365
    713 
    714 C 216 2
    715 s 1334 1365
    716 
    717 C 217 2
    718 s 1334 1365
    719 
    720 C 218 2
    721 s 1334 1365
    722 
    723 C 219 2
    724 s 1334 1365
    725 
    726 C 220 2
    727 s 1334 1365
    728 
    729 C 221 2
    730 s 1334 1365
    731 
    732 C 222 2
    733 s 1334 1365
    734 
    735 C 223 2
    736 s 1334 1365
    737 
    738 C 224 2
    739 s 1334 1365
    740 
    741 C 225 2
    742 s 1334 1365
    743 
    744 C 226 2
    745 s 1334 1365
    746 
    747 C 227 2
    748 s 1334 1365
    749 
    750 C 228 2
    751 s 1334 1365
    752 
    753 C 229 2
    754 s 1334 1365
    755 
    756 C 230 2
    757 s 1334 1365
    758 
    759 C 231 2
    760 s 1334 1365
    761 
    762 C 232 2
    763 s 1334 1365
    764 
    765 C 233 2
    766 s 1334 1365
    767 
    768 C 234 2
    769 s 1334 1365
    770 
    771 C 235 2
    772 s 1334 1365
    773 
    774 C 236 2
    775 s 1334 1365
    776 
    777 C 237 2
    778 s 1334 1365
    779 
    780 C 238 2
    781 s 1334 1365
    782 
    783 C 239 2
    784 s 1334 1365
    785 
    786 C 240 2
    787 s 1334 1365
    788 
    789 C 241 2
    790 s 1334 1365
    791 
    792 C 242 2
    793 s 1334 1365
    794 
    795 C 243 2
    796 s 1334 1365
    797 
    798 C 244 2
    799 s 1334 1365
    800 
    801 C 245 2
    802 s 1334 1365
    803 
    804 C 246 2
    805 s 1334 1365
    806 
    807 C 98 2
    808 s 1335 1366
    809 
    810 C 99 2
    811 s 1335 1366
    812 
    813 C 100 2
    814 s 1335 1366
    815 
    816 C 101 2
    817 s 1335 1366
    818 
    819 C 102 2
    820 s 1335 1366
    821 
    822 C 103 2
    823 s 1335 1366
    824 
    825 C 104 2
    826 s 1335 1366
    827 
    828 C 105 2
    829 s 1335 1366
    830 
    831 C 106 2
    832 s 1335 1366
    833 
    834 C 107 2
    835 s 1335 1366
    836 
    837 C 108 2
    838 s 1335 1366
    839 
    840 C 109 2
    841 s 1335 1366
    842 
    843 C 110 2
    844 s 1335 1366
    845 
    846 C 111 2
    847 s 1335 1366
    848 
    849 C 112 2
    850 s 1335 1366
    851 
    852 C 113 2
    853 s 1335 1366
    854 
    855 C 114 2
    856 s 1335 1366
    857 
    858 C 115 2
    859 s 1335 1366
    860 
    861 C 116 2
    862 s 1335 1366
    863 
    864 C 117 2
    865 s 1335 1366
    866 
    867 C 118 2
    868 s 1335 1366
    869 
    870 C 119 2
    871 s 1335 1366
    872 
    873 C 120 2
    874 s 1335 1366
    875 
    876 C 121 2
    877 s 1335 1366
    878 
    879 C 122 2
    880 s 1335 1366
    881 
    882 C 123 2
    883 s 1335 1366
    884 
    885 C 124 2
    886 s 1335 1366
    887 
    888 C 125 2
    889 s 1335 1366
    890 
    891 C 126 2
    892 s 1335 1366
    893 
    894 C 127 2
    895 s 1335 1366
    896 
    897 C 128 2
    898 s 1335 1366
    899 
    900 C 129 2
    901 s 1335 1366
    902 
    903 C 130 2
    904 s 1335 1366
    905 
    906 C 131 2
    907 s 1335 1366
    908 
    909 C 132 2
    910 s 1335 1366
    911 
    912 C 133 2
    913 s 1335 1366
    914 
    915 C 134 2
    916 s 1335 1366
    917 
    918 C 135 2
    919 s 1335 1366
    920 
    921 C 136 2
    922 s 1335 1366
    923 
    924 C 57 2
    925 s 1336 1367
    926 
    927 C 58 2
    928 s 1336 1367
    929 
    930 C 59 2
    931 s 1336 1367
    932 
    933 C 60 2
    934 s 1336 1367
    935 
    936 C 61 2
    937 s 1336 1367
    938 
    939 C 62 2
    940 s 1336 1367
    941 
    942 C 63 2
    943 s 1336 1367
    944 
    945 C 64 2
    946 s 1336 1367
    947 
    948 C 65 2
    949 s 1336 1367
    950 
    951 C 66 2
    952 s 1336 1367
    953 
    954 C 67 2
    955 s 1336 1367
    956 
    957 C 68 2
    958 s 1336 1367
    959 
    960 C 69 2
    961 s 1336 1367
    962 
    963 C 70 2
    964 s 1336 1367
    965 
    966 C 71 2
    967 s 1336 1367
    968 
    969 C 72 2
    970 s 1336 1367
    971 
    972 C 73 2
    973 s 1336 1367
    974 
    975 C 74 2
    976 s 1336 1367
    977 
    978 C 75 2
    979 s 1336 1367
    980 
    981 C 76 2
    982 s 1336 1367
    983 
    984 C 77 2
    985 s 1336 1367
    986 
    987 C 78 2
    988 s 1336 1367
    989 
    990 C 79 2
    991 s 1336 1367
    992 
    993 C 80 2
    994 s 1336 1367
    995 
    996 C 81 2
    997 s 1336 1367
    998 
    999 C 82 2
    1000 s 1336 1367
    1001 
    1002 C 83 2
    1003 s 1336 1367
    1004 
    1005 C 84 2
    1006 s 1336 1367
    1007 
    1008 C 85 2
    1009 s 1336 1367
    1010 
    1011 C 86 2
    1012 s 1336 1367
    1013 
    1014 C 87 2
    1015 s 1336 1367
    1016 
    1017 C 88 2
    1018 s 1336 1367
    1019 
    1020 C 89 2
    1021 s 1336 1367
    1022 
    1023 C 90 2
    1024 s 1336 1367
    1025 
    1026 C 91 2
    1027 s 1336 1367
    1028 
    1029 C 92 2
    1030 s 1336 1367
    1031 
    1032 C 93 2
    1033 s 1336 1367
    1034 
    1035 C 94 2
    1036 s 1336 1367
    1037 
    1038 C 95 2
    1039 s 1336 1367
    1040 
    1041 C 137 3
    1042 s 1366 1363
    1043 
    1044 C 247 3
    1045 s 1365 1363
    1046 
    1047 C 251 3
    1048 s 1363 1364
    1049 
    1050 C 138 3
    1051 s 1366 1364
    1052 
    1053 C 248 3
    1054 s 1365 1364
     327C 1891 3
     328s 1895 1896
     329
     330C 1893 2
     331s 1896 1897
     332
     333C 1894 2
     334s 1898 1895
     335
     336C 1892 3
     337s 1897 1898
    1055338
    1056339Z
    1057340
    1058 ActiveTime:01:24:45
    1059 DarkTime:00:10:14
    1060 15:29:560 900 588 Ld
    1061 15:29:607 900 588 Lu
     341ActiveTime:01:47:59
     342DarkTime:01:16:04
     34341:33:841 100 52 Rd
     34441:33:849 100 52 Ld
     34541:34:401 423 191 Md
     34641:34:544 430 199 Mu
     34741:35:921 602 294 Rd
     34841:38:406 88 41 Md
     34941:38:601 88 41 Mu
     35041:40:957 581 308 Rd
     35141:42:752 101 42 Md
     35241:42:906 101 42 Mu
     35341:44:368 515 301 Rd
     35441:44:378 515 301 Md
     35541:46:207 107 92 Ld
     35641:46:241 107 92 Rd
     35741:47:381 349 178 Md
     35841:47:383 349 178 Rd
     35941:52:712 509 438 kRight
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/3.exp

    r810 r877  
    1 V 107
     1V 177
    22U csl14A
    33D 12Dec2013[10:15]
    4 M csl14A
    5 d 03Feb2014[12:15]
     4M nathaniel
     5d 11Feb2014[00:42]
    66Z
    77
    8 S P 94
    9 s 12Dec2013[10:15.14]
    10 d 100 0 0 100
    11 H -11.0
    12 N 0.0
    13 P 1679 0
    14 Q 0
    15 o csl14A
     8S P 673
     9s 06Feb2014[22:05.01]
     10d 90 90 90 100
     11P -41 -20
     12e 95 95 95 100
     13Q 0
     14N -20.0
     15o Nathaniel
    1616v S
    1717h 2.0
    18 l 106 107
    19 c 67 68 70
    20 
    21 S P 95
    22 s 12Dec2013[10:15.14]
    23 d 100 0 0 100
     18l 674 675
     19c 40 42
     20
     21S P 672
     22s 06Feb2014[22:05.01]
     23d 90 90 90 100
     24P 140 -20
     25e 95 95 95 100
     26Q 0
     27R 140.0
     28N -20.0
     29o Nathaniel
     30j 50.0 0.3 0.75
     31v S
     32h 2.0
     33l 674 697
     34c 40 41
     35
     36S T 1438
     37s 11Feb2014[00:05.44]
     38d 50 50 50 100
     39P 162 20
     40T @ao: base
     41F 4
     42Q 0
     43o nathaniel
     44v S
     45f DejaVu Sans Light_r9
     46t -1.0
     47b 0.0
     48m 0.0
     49h -1.0
     50
     51S T 676
     52s 06Feb2014[22:05.01]
     53d 0 0 0 100
     54P 2 27
     55T Mindmap
     56Q 0
    2457R 0.0
    25 N 0.0
    26 P 0 0
    27 Q 0
    28 o csl14A
     58N 6.0
     59o Nathaniel
     60v S
     61f Roboto Condensed_r20
     62t -1.0
     63b 0.0
     64m 0.0
     65w 135
     66k C
     67h -1.0
     68
     69S T 1433
     70s 06Feb2014[22:05.01]
     71P 7 40
     72T @i: iconbutton_plus.png 127
     73F PlatonicForms1
     74X getItemsFromChildFrame
     75x F
     76Q 0
     77R 5.0
     78N 40.0
     79o Nathaniel
     80n F
     81v S
     82f tr18
     83t -1.0
     84b 0.0
     85m 0.0
     86h 0.0
     87
     88S T 947
     89s 06Feb2014[22:09.56]
     90P 11 59
     91T Square
     92F PlatonicForms1
     93X getItemsFromChildFrame
     94x F
     95Q 0
     96R 9.0
     97N 43.0
     98o Nathaniel
     99n F
     100v S
     101f Roboto Condensed_r15
     102t -1.0
     103b 0.0
     104m 0.0
     105w 116
     106k R
     107h -1.0
     108
     109S T 1432
     110s 06Feb2014[22:09.56]
     111P 7 70
     112T @i: iconbutton_plus.png 127
     113F PlatonicForms2
     114X getItemsFromChildFrame
     115x F
     116Q 0
     117R 5.0
     118N 70.0
     119o Nathaniel
     120n F
     121v S
     122f tr18
     123t -1.0
     124b 0.0
     125m 0.0
     126h 0.0
     127
     128S T 680
     129s 06Feb2014[22:05.01]
     130P 11 89
     131T Arrow
     132F PlatonicForms2
     133X getItemsFromChildFrame
     134x F
     135Q 0
     136R 9.0
     137N 73.0
     138o Nathaniel
     139n F
     140v S
     141f Roboto Condensed_r15
     142t -1.0
     143b 0.0
     144m 0.0
     145w 116
     146k R
     147h -1.0
     148
     149S T 1434
     150s 06Feb2014[22:05.01]
     151P 7 100
     152T @i: iconbutton_plus.png 127
     153F PlatonicForms3
     154X getItemsFromChildFrame
     155x F
     156Q 0
     157R 5.0
     158N 100.0
     159o Nathaniel
     160n F
     161v S
     162f tr18
     163t -1.0
     164b 0.0
     165m 0.0
     166h 0.0
     167
     168S T 684
     169s 06Feb2014[22:05.01]
     170P 11 119
     171T Circle
     172F PlatonicForms3
     173X getItemsFromChildFrame
     174x F
     175Q 0
     176R 9.0
     177N 103.0
     178o Nathaniel
     179n F
     180v S
     181f Roboto Condensed_r15
     182t -1.0
     183b 0.0
     184m 0.0
     185w 116
     186k R
     187h -1.0
     188
     189S T 1435
     190s 06Feb2014[22:11.53]
     191P 7 130
     192T @i: iconbutton_plus.png 127
     193F PlatonicForms4
     194X getItemsFromChildFrame
     195x F
     196Q 0
     197R 5.0
     198N 130.0
     199o Nathaniel
     200n F
     201v S
     202f tr18
     203t -1.0
     204b 0.0
     205m 0.0
     206h 0.0
     207
     208S T 1117
     209s 06Feb2014[22:11.53]
     210P 11 149
     211T Hexagon
     212F PlatonicForms4
     213X getItemsFromChildFrame
     214x F
     215Q 0
     216R 9.0
     217N 133.0
     218o Nathaniel
     219n F
     220v S
     221f Roboto Condensed_r15
     222t -1.0
     223b 0.0
     224m 0.0
     225w 116
     226k R
     227h -1.0
     228
     229S P 695
     230s 06Feb2014[22:05.01]
     231d 90 90 90 100
     232P -41 651
     233e 95 95 95 100
     234Q 0
     235I -30.0
     236o Nathaniel
     237j 50.0 0.3 0.75
    29238v S
    30239h 2.0
    31 l 106 108
    32 c 67 71 73
    33 
    34 S P 100
    35 s 12Dec2013[10:15.14]
    36 d 100 0 0 100
    37 R 765.0
    38 N 0.0
    39 P 765 0
    40 Q 0
    41 o csl14A
     240l 675 698
     241c 42 43
     242
     243S P 696
     244s 06Feb2014[22:05.01]
     245d 90 90 90 100
     246P 140 651
     247e 95 95 95 100
     248Q 0
     249R 140.0
     250I -30.0
     251o Nathaniel
     252j 14.000001 0.3 0.75
    42253v S
    43254h 2.0
    44 l 111
    45 c 70 73
    46 
    47 S P 412
    48 s 13Dec2013[15:36.16]
    49 d 100 0 0 100
    50 R 140.0
    51 N 0.0
    52 P 140 0
    53 Q 0
    54 o csl14A
    55 v S
    56 h 2.0
    57 l 414
    58 
    59 S T 671
    60 s 17Jan2014[17:01.47]
    61 d 50 50 50 100
    62 H 45.0
    63 N -6.0
    64 P 1510 26
    65 T @i: home.png 36
    66 X GoToHome
    67 x F
    68 Q 0
    69 o csl14A
    70 v S
    71 f Roboto Condensed_r18
    72 t -1.0
    73 b 0.0
    74 m 0.0
    75 w 974
    76 h -1.0
    77 
    78 S T 624
    79 s 15Jan2014[16:54.30]
    80 d 50 50 50 100
    81 H 60.0
    82 N -3.0
    83 P 1469 29
    84 T @i: leftArrow.png 32
    85 X Back
    86 x F
    87 Q 0
    88 o csl14A
    89 v S
    90 f Roboto Condensed_r18
    91 t -1.0
    92 b 0.0
    93 m 0.0
    94 h -1.0
    95 
    96 S T 622
    97 s 15Jan2014[16:54.30]
    98 d 50 50 50 100
    99 H -37.0
    100 N -3.0
    101 P 1557 29
    102 T @i: rightArrow.png 32
    103 X Forward
    104 x F
    105 Q 0
    106 o csl14A
    107 v S
    108 f Roboto Condensed_r18
    109 t -1.0
    110 b 0.0
    111 m 0.0
    112 h -1.0
    113 
    114 S T 88
    115 s 12Dec2013[10:15.14]
    116 R -2.0
    117 N 7.0
    118 P 0 45
    119 T Mindmap
    120 Q 0
    121 o csl14A
    122 v S
    123 f Roboto Condensed_r25
    124 t -1.0
    125 b 0.0
    126 m 0.0
    127 w 140
    128 k C
    129 h -1.0
    130 
    131 S T 438
    132 s 18Dec2013[12:21.59]
    133 R 587.0
    134 N 17.0
    135 P 600 45
    136 T Get Hexagon
    137 F PlatonicForms4
    138 X getItemsFromChildFrame
    139 Q 0
    140 o csl14A
    141 v S
    142 f Roboto Condensed_r18
    143 t -1.0
    144 b 0.0
    145 m 0.0
    146 h -1.0
    147 
    148 S T 83
    149 s 12Dec2013[10:15.14]
    150 R 322.0
    151 N 17.0
    152 P 335 45
    153 T Get Arrow
    154 F PlatonicForms2
    155 X getItemsFromChildFrame
    156 Q 0
    157 o csl14A
    158 v S
    159 f Roboto Condensed_r18
    160 t -1.0
    161 b 0.0
    162 m 0.0
    163 h -1.0
    164 
    165 S T 292
    166 s 12Dec2013[10:15.14]
    167 R 177.0
    168 N 17.0
    169 P 190 45
    170 T Get Square
    171 F PlatonicForms1
    172 X getItemsFromChildFrame
    173 Q 0
    174 o csl14A
    175 v S
    176 f Roboto Condensed_r18
    177 t -1.0
    178 b 0.0
    179 m 0.0
    180 h -1.0
    181 
    182 S T 516
    183 s 12Dec2013[10:15.14]
    184 R 462.0
    185 N 17.0
    186 P 475 45
    187 T Get Circle
    188 F PlatonicForms3
    189 X getItemsFromChildFrame
    190 Q 0
    191 o csl14A
    192 v S
    193 f Roboto Condensed_r18
    194 t -1.0
    195 b 0.0
    196 m 0.0
    197 h -1.0
    198 
    199 S T 625
    200 s 15Jan2014[16:54.30]
    201 H 10.0
    202 N 17.0
    203 P 1609 55
    204 T HELP
    205 F Documentation1
    206 Q 0
    207 o csl14A
    208 n F
    209 v S
    210 f Roboto Condensed_r25
    211 t -1.0
    212 b 0.0
    213 m 0.0
    214 h -1.0
    215 
    216 S P 96
    217 s 12Dec2013[10:15.14]
    218 d 100 0 0 100
    219 R 0.0
    220 N 70.0
    221 P 0 70
    222 Q 0
    223 o csl14A
    224 v S
    225 h 2.0
    226 l 108 109
    227 c 71 75 76
    228 
    229 S P 97
    230 s 12Dec2013[10:15.14]
    231 d 100 0 0 100
    232 H -11.0
    233 N 70.0
    234 P 1679 70
    235 Q 0
    236 o csl14A
    237 j 50.0 0.3 0.75
    238 v S
    239 h 2.0
    240 l 107 109
    241 c 68 75 78
    242 
    243 S P 101
    244 s 12Dec2013[10:15.14]
    245 d 100 0 0 100
    246 R 765.0
    247 N 70.0
    248 P 765 70
    249 Q 0
    250 o csl14A
    251 v S
    252 h 2.0
    253 l 111
    254 c 76 78
    255 
    256 S P 413
    257 s 13Dec2013[15:36.16]
    258 d 100 0 0 100
    259 R 140.0
    260 N 70.0
    261 P 140 70
    262 Q 0
    263 o csl14A
    264 v S
    265 h 2.0
    266 l 414
     255l 697 698
     256c 41 43
    267257
    268258Z
    269259
    270 L 106 1
    271 s 94 95
    272 
    273 L 107 1
    274 s 97 94
    275 
    276 L 108 1
    277 s 95 96
    278 
    279 L 111 1
    280 s 101 100
    281 
    282 L 414 1
    283 s 413 412
    284 
    285 L 109 1
    286 s 96 97
     260L 674 1
     261s 672 673
     262
     263L 675 1
     264s 673 695
     265
     266L 697 1
     267s 696 672
     268
     269L 698 1
     270s 695 696
    287271
    288272Z
    289273
    290 C 67 3
    291 s 94 95
    292 
    293 C 68 2
    294 s 97 94
    295 
    296 C 70 3
    297 s 100 94
    298 
    299 C 71 2
    300 s 95 96
    301 
    302 C 73 3
    303 s 100 95
    304 
    305 C 75 3
    306 s 96 97
    307 
    308 C 76 3
    309 s 101 96
    310 
    311 C 78 3
    312 s 101 97
     274C 40 3
     275s 672 673
     276
     277C 42 2
     278s 673 695
     279
     280C 41 2
     281s 696 672
     282
     283C 43 3
     284s 695 696
    313285
    314286Z
    315287
    316 ActiveTime:00:43:27
    317 DarkTime:00:09:04
    318 15:31:936 1625 42 Ld
    319 15:31:983 1625 42 Lu
     288ActiveTime:01:22:01
     289DarkTime:00:11:36
     29041:53:711 117 41 Rd
     29141:53:726 117 41 Ld
     29241:56:481 284 117 Rd
     29341:56:669 284 117 Md
     29441:58:056 124 42 Ld
     29541:58:156 124 42 Lu
     29641:59:069 637 190 Rd
     29741:59:070 637 190 Md
     29842:00:592 117 53 Ld
     29942:00:595 117 53 Rd
     30042:00:987 458 249 Md
     30142:01:117 458 249 Mu
     30242:02:987 628 345 Rd
     30342:05:055 114 41 Md
     30442:05:208 114 41 Mu
     30542:06:481 119 41 Rd
     30642:06:488 119 41 Ld
     30742:07:387 222 100 Rd
     30842:07:410 222 100 Md
     30942:07:957 511 313 Md
     31042:07:963 511 313 Rd
     31142:09:581 126 71 Rd
     31242:09:585 126 71 Ld
     31342:11:193 299 141 Md
     31442:11:307 299 141 Mu
     31542:12:136 474 234 kBackspace
     31642:12:792 459 239 k2
     31742:13:184 468 239 Rd
     31842:15:681 125 72 Md
     31942:15:824 125 72 Mu
     32042:16:382 366 183 Rd
     32142:16:391 366 183 Md
     32242:17:777 126 72 Rd
     32342:17:794 126 72 Ld
     32442:18:598 295 115 Rd
     32542:18:616 295 115 Md
     32642:19:839 126 102 Rd
     32742:19:868 126 102 Ld
     32842:20:630 301 135 Rd
     32942:20:658 301 135 Md
     33042:21:928 114 130 Ld
     33142:21:965 114 130 Rd
     33242:22:803 305 146 Rd
     33342:22:827 305 146 Md
     33442:24:060 114 148 Ld
     33542:24:064 114 148 Rd
     33642:24:711 283 167 Rd
     33742:24:720 283 167 Md
     33842:25:394 114 116 Ld
     33942:25:406 114 116 Rd
     34042:26:113 260 126 Rd
     34142:26:116 260 126 Md
     34242:27:832 112 92 Ld
     34342:27:837 112 92 Rd
     34442:28:638 298 124 Rd
     34542:28:680 298 124 Md
     34642:30:008 444 253 kWindows
     34742:31:615 305 312 kWindows
     34842:31:663 305 312 kShift
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/frame.inf

    r617 r877  
    1 overlayset3
     1overlayset4
  • trunk/src/org/expeditee/items/widgets/JfxBrowser.java

    r854 r877  
    571571                        });
    572572
    573                         this._webEngine.load(url);
     573                        this.navigate(url);
    574574                } catch (Exception e) {
    575575                        e.printStackTrace();
Note: See TracChangeset for help on using the changeset viewer.