Changes between Version 1 and Version 2 of LINKS_ACTIONS_SHOWING_R0


Ignore:
Timestamp:
02/20/09 08:18:56 (16 years ago)
Author:
sriggins
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LINKS_ACTIONS_SHOWING_R0

    v1 v2  
    44 
    55= Analysis = 
    6 ^(Give as much as possible of the needed information for designing and implementing the task in the following sections.)^ 
    76 
    87== Overview == 
    9 ^(Provide a brief overview of the whole task in its first revision. Stick to the current revision of the task, but keep an eye to the whole task progress, and stay alert for possible smells.)^ 
     8 
     9Implement actions that control the visible state of frames.  These actions include: 
     10 
     11 * Show frame - Sets the visible of a frame to true 
     12 * Hide frame - Sets the visible of a frame to false 
     13 * Toggle frame - Inverts the visibility of a frame 
     14 * Show in Front - Sets the visible of a frame to true and sets the Z-Order to 1 
     15 * Toggle in Front - Hides the frame if visible, otherwise shows the frame and sets the Z-Order to 1 
     16 
    1017 
    1118== Task requirements == 
    12 ^(List the necessary requirements that the task must fulfill.)^ 
     19 
     20 * Implement the actions listed in the overview 
    1321 
    1422== Task result == 
     
    1624 
    1725== Implementation idea == 
    18 ^(Provide some rough implementation idea(s).)^ 
     26 
     27 * The targets of these actions can only be frames 
     28 * Make sure the actions use the change system so that the effects of these actions are temporary 
     29 * See the actions common task for how to implement actions 
    1930 
    2031== Related == 
    21 ^(Add links to related tasks that could be useful or helpful.)^ 
     32 
     33 * [wiki:LINKS_ACTIONS_COMMON_R0] 
    2234 
    2335== How to demo == 
    24 ^(Provide instructions for demonstration of the task.)^ 
     36 
     37 Demo the actions by creating actions and triggering them 
    2538 
    2639= Design =