Ignore:
Timestamp:
05/26/08 09:11:05 (16 years ago)
Author:
ra33
Message:

Added @b and @v...
Also changed @f... so that images can be displayed with transparent backgrounds.
Did a bunch of refactoring in the process to remove duplicated code and simplify managing @i, @f and @b.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        88testdummyaudio
        99tests_apollos
         10*.txt
  • trunk/src/org/expeditee/actions/Simple.java

    r74 r78  
    191191                        if (nextFrame == null)
    192192                                continue;
    193                         Text frameTitle = nextFrame.getTitle();
     193                        Item frameTitle = nextFrame.getTitle();
    194194                        if (frameTitle == null)
    195195                                continue;
    196196                        // Run the frames with the RunFrame action on the title
    197                         Text title = frameTitle.copy();
     197                        Item title = frameTitle.copy();
    198198                        List<String> actions = title.getAction();
    199199                        if (actions == null || title.isAnnotation())
     
    410410         *             when errors occur in running the procedure.
    411411         */
    412         private static Status Call(String[] tokens, Text code, Context context)
     412        private static Status Call(String[] tokens, Item code, Context context)
    413413                        throws Exception {
    414414                // Check that the call statement is linked
     
    602602                                Boolean found = false;
    603603                                Text attributeItem = null;
    604                                 Text valueItem = null;
     604                                Item valueItem = null;
    605605                                // Begin the search
    606606                                for (Text text : targetFrame.getBodyTextItems(true)) {
     
    855855                                        String value = "";
    856856                                        Text attributeItem = null;
    857                                         Text valueItem = null;
     857                                        Item valueItem = null;
    858858                                        // Begin the search
    859859                                        for (Text text : targetFrame.getBodyTextItems(true)) {
     
    14241424                        String s = context.getPrimitives().getStringValue(stringVar);
    14251425                        Frame frame = DisplayIO.getCurrentFrame();
    1426                         Text item = frame.createNewText(s);
     1426                        Item item = frame.createNewText(s);
    14271427                        item
    14281428                                        .setPosition(FrameMouseActions.MouseX,
Note: See TracChangeset for help on using the changeset viewer.