SlideShare a Scribd company logo
1 of 11
Practical Activities/Week06/lab08-1.png
Practical Activities/Week06/lab08-8.png
Practical Activities/Week06/lab08-3.png
Practical Activities/Week06/sit363.css
body {
background-color: #FFFFFF;
color: #000000;
font-family: verdana, veneva, helvetica, sans-serif;
font-size: 10pt;
margin: 20px;
}
h2 {
color: #3333cc;
font-size: 130%;
font-weight: bold;
text-align: center;
}
h3 {
color:#006699;
font-size: 120%;
}
h4 {
color:#9900ff;
font-size: 110%;
}
p {
text-align: left;
margin-left: 15px;
padding-left: 0px;
}
.brand {
color:#000000;
font-size: 120%;
text-align: center;
}
.yellow_box {
margin-left: 60px;
margin-right: 60px;
padding: 4px;
border: 1px solid #000000;
background-color: #FFFFE0;
}
.green_box {
margin-left: 60px;
margin-right: 60px;
padding: 4px;
border: 1px solid #000000;
background-color: #E0FFE0;
}
.blue_box {
margin-left: 60px;
margin-right: 60px;
padding: 4px;
border: 1px solid #000000;
background-color: #E0E0FF;
}
.red_box {
margin-left: 60px;
margin-right: 60px;
padding: 4px;
border: 1px solid #000000;
background-color: #FFE0E0;
}
strong.big {
font-size: 120%;
}
.red_bold {
color: #F00;
font-weight: bold;
}
.greencode {
font-family: "Courier New", Courier, monospace;
color: #009F00;
font-size: 11pt;
}
.bluecode {
font-family: "Courier New", Courier, monospace;
color: #0000FF;
font-size: 11pt;
}
.blackcode {
font-family: "Courier New", Courier, monospace;
color: #000000;
font-size: 11pt;
}
Practical Activities/Week06/lab08-7.png
Practical Activities/Week06/lab08-9.png
Practical Activities/Week06/lab08-5.swf
Practical Activities/Week06/lab08-6.png
Practical Activities/Week06/lab08-5.png
Practical Activities/Week06/lab08-10.png
Practical Activities/Week06/lab08-2.png
Practical Activities/Week06/lab08-4.png
Practical Activities/Week06/sit363-lab06.html
SIT363: Authoring of Interactive Media
SIT363: Authoring of Interactive Media
Week Five Lab: Building InteractionAims
At the completion of this session you should be able to:use
multi-layers and multi-frames to create a Tab interactionuse
Actionscript to change the colour of symbols
Our goal in this lab is to create the Flash tabbed interface
shown below. Spend a few minutes playing with the interface
and working out what each component does. You can change the
colour of display background using the first tab. On the second
tab you can select between no symbol, a square or a circle
symbol. As well as selecting a symbol, you should also be able
to change the colour of the symbol.
Task 1:
Create the Shape picker / colour change outcome as presented
above, by following the steps below.
Step 1 - Frame 1
In the first stage you will need to setup your project. You will
need 5 layers. I labelled mine (top to bottom): Scripts, Toolsets,
Tabs, Workspace and Background as shown below.
Build the Flash presentation over three frames. Frame 1 will set
up the symbols. Frame 2 will host Tab 1 and Frame 2 will host
Tab 2.
Work only in Frame 1 for the moment. In the Background
Layer, set the colour for the Stage. I have used a pale blue
colour. In the Workspace Layer, create three shapes. The white
square is placed on the stage with a black border. Convert this
shape into a Movie Clip symbol. I used the name "Workspace"
for this symbol. Now create two other shapes off-stage. I have
positioned these to the left of the stage but they can be created
anywhere. Make the shapes about the same size and create them
with no border. Your Workspace Layer should now look like the
one below:
You will need to give each of the symbols an instance name. I
have used myDisplay, mySquare, and myCircle for my
names.Step 2 - Frame 2
Frame 2 hosts Tab 1. The Tabs are created by combining a
number of rectangle shapes together. Don't worry about the
Shape Tab button yet. Just concentrate on getting your Base Tab
looking right. When you are done, convert the whole Base Tab
to a symbol.
Create a button object to make the Shape tab. You can give this
object any animation properties that you like. I have given the
Over frame a green border, and changed the shading lines in the
down frame. Position the Shape tab button so that it looks like
the next tab to be selected as shown below:
The Toolset Layer in Frame 2 holds the colour selector object.
Add some text and an instance of the Color Selector
Component. Give the Color Selector an instance name. The
complete Frame 2 will look like the image shown below:
Step 3 - Frame 3
Frame 3 is developed in almost the same way that we developed
Frame 2. The are some obvious differences which you can
identify by looking at the sample. The main difference is the
Toolset layer for this frame. The Toolset consists of three
button objects: a text button ("Name"), a square button and an
circle button. I have not created any animation effects with
these buttons. Also on this layer is a square, unfilled box shape
that has been converted to a symbol. This symbol is positioned
over the "None" button initially.
Step 4 - Actionscript Frame 2
Frame 1 has no Actionscript associated with it. We want the
presentation to flow directly into Frame 1. We could have buildt
the presentation with Frame 1 and Frame 2 combined. However,
I have separated them here just so you can see how the
development process works.
The Actionscript in Frame 2 needs to set up the presentation and
then activate the two interaction elements on this frame: the
Shape tab button and the Color Selector object.
The Actionscript for this frame should be familiar to you. There
are no suprises here. You need to create an event listener and an
event handler for each of the interaction elements:
This script shows how you can modify the colour of symbols.
First you need to create a variable that creates an instance of a
colorTransform class. It is defined by initializing it to the
colorTransform object that is part of the Stage (the "this"
object). Once created the color is changed to the selected
colour. Lastly, the colorTransform is applied to the myDisplay
object.Step 5 - Actionscript Frame 3
The script for Frame 3 is a bit more complex. There are five
interactive elements in this frame: the Base tab button, the
"None" button, the Square button, the Circle button, and the
Colour Selector object. Create an event listener for each object.
The Base tab button and the Colour Selector object have simple
actions as you can see below. With the colour selection, the
principles are the same as shown above. We need to change the
colour of both the square and the circle so that when the user
changes the shape, the colour will match what has been
selected.
The most complex interactions are those related to selecting the
shape to view. These interactions need to swap the shape
symbols and to move the yellow selection box as well. The
position of each box is hardcoded into the functions. Note that a
negative value means that the object is off-stage. Also note how
the shapes are centred within the workspace.
Task 2:
Once you have this presentation working, modify the set of
shapes so that you can also include a triangle symbol in your
selections.
Challenge Task:
Based on the Tasks above create a Flash presentation that
includes three tabs. Each tab should display one of the
interactions (different one on each tab) that you have
constructed in previous weeks.
_____________________________________________________
_____________
Reflection Questions:
Please use the Reflection link below to complete the following
reflections questions and submit them to your Portfolio.
Practical Lab 5 Reflection Questions:What did I learn in this
weekโ€™s activities?Write a Short statement about what you have
learnt in this week's practical class.
Which part of this weeks task did I find most challenging?which
section of the task did you find the most challenging?
Practical ActivitiesWeek06lab08-1.pngPractical Activities.docx

More Related Content

Similar to Practical ActivitiesWeek06lab08-1.pngPractical Activities.docx

Photoshop basics
Photoshop basicsPhotoshop basics
Photoshop basicscristy nazareno
ย 
UI Review - TexPlanner
UI Review - TexPlannerUI Review - TexPlanner
UI Review - TexPlannerVinay Mohanty
ย 
Lesson 1 second quarter Office 2007 format
Lesson 1 second quarter Office 2007 formatLesson 1 second quarter Office 2007 format
Lesson 1 second quarter Office 2007 formatCel Mallari
ย 
Pop Art Technique
Pop Art TechniquePop Art Technique
Pop Art Techniquesullivanlaura
ย 
Quick Step by Step Flash Tutorial
Quick Step by Step Flash TutorialQuick Step by Step Flash Tutorial
Quick Step by Step Flash TutorialSu Yuen Chin
ย 
Presentation 1
Presentation 1Presentation 1
Presentation 1Marsavi
ย 
Adobe Photoshop Toolbox definition term
Adobe Photoshop Toolbox definition termAdobe Photoshop Toolbox definition term
Adobe Photoshop Toolbox definition termAllan Roloma
ย 
3 d effect
3 d effect3 d effect
3 d effectsyncmaster92
ย 
Insert + design
Insert + designInsert + design
Insert + designrimshailyas1
ย 
Paths, Masks And Blend Modes
Paths, Masks And Blend ModesPaths, Masks And Blend Modes
Paths, Masks And Blend ModesShan
ย 
Photoshop pdf
Photoshop pdfPhotoshop pdf
Photoshop pdfKim B
ย 
Adobe Photoshop CS6 tutorial 2013
Adobe Photoshop CS6 tutorial 2013Adobe Photoshop CS6 tutorial 2013
Adobe Photoshop CS6 tutorial 2013Jessie Doan
ย 
What is Web Designing by Zakaria
What is Web Designing by ZakariaWhat is Web Designing by Zakaria
What is Web Designing by ZakariaZakaria Abada
ย 
Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula kulachihansraj
ย 
Task 3
Task 3Task 3
Task 3Lkowusu
ย 
adobe Photoshop
adobe Photoshop adobe Photoshop
adobe Photoshop FariK1
ย 
Photoshop cs tutorial
Photoshop cs tutorialPhotoshop cs tutorial
Photoshop cs tutorialFurqan Alley
ย 

Similar to Practical ActivitiesWeek06lab08-1.pngPractical Activities.docx (20)

Photoshop basics
Photoshop basicsPhotoshop basics
Photoshop basics
ย 
UI Review - TexPlanner
UI Review - TexPlannerUI Review - TexPlanner
UI Review - TexPlanner
ย 
Lesson 1 second quarter Office 2007 format
Lesson 1 second quarter Office 2007 formatLesson 1 second quarter Office 2007 format
Lesson 1 second quarter Office 2007 format
ย 
Pop Art Technique
Pop Art TechniquePop Art Technique
Pop Art Technique
ย 
Quick Step by Step Flash Tutorial
Quick Step by Step Flash TutorialQuick Step by Step Flash Tutorial
Quick Step by Step Flash Tutorial
ย 
Presentation 1
Presentation 1Presentation 1
Presentation 1
ย 
Adobe Photoshop Toolbox definition term
Adobe Photoshop Toolbox definition termAdobe Photoshop Toolbox definition term
Adobe Photoshop Toolbox definition term
ย 
Flash
FlashFlash
Flash
ย 
3 d effect
3 d effect3 d effect
3 d effect
ย 
Insert + design
Insert + designInsert + design
Insert + design
ย 
Presentation1
Presentation1Presentation1
Presentation1
ย 
Paths, Masks And Blend Modes
Paths, Masks And Blend ModesPaths, Masks And Blend Modes
Paths, Masks And Blend Modes
ย 
Photoshop pdf
Photoshop pdfPhotoshop pdf
Photoshop pdf
ย 
Adobe Photoshop CS6 tutorial 2013
Adobe Photoshop CS6 tutorial 2013Adobe Photoshop CS6 tutorial 2013
Adobe Photoshop CS6 tutorial 2013
ย 
What is Web Designing by Zakaria
What is Web Designing by ZakariaWhat is Web Designing by Zakaria
What is Web Designing by Zakaria
ย 
Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula
ย 
Task 3
Task 3Task 3
Task 3
ย 
Nota photoshop
Nota photoshopNota photoshop
Nota photoshop
ย 
adobe Photoshop
adobe Photoshop adobe Photoshop
adobe Photoshop
ย 
Photoshop cs tutorial
Photoshop cs tutorialPhotoshop cs tutorial
Photoshop cs tutorial
ย 

More from ChantellPantoja184

Problem 1Problem 2.docx
Problem 1Problem 2.docxProblem 1Problem 2.docx
Problem 1Problem 2.docxChantellPantoja184
ย 
Problem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docxProblem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docxChantellPantoja184
ย 
Problem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docxProblem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docxChantellPantoja184
ย 
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docxProblem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docxChantellPantoja184
ย 
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docxProblem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docxChantellPantoja184
ย 
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docxProblem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docxChantellPantoja184
ย 
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docxProblem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docxChantellPantoja184
ย 
Problem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docxProblem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docxChantellPantoja184
ย 
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docxProblem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docxChantellPantoja184
ย 
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docxProblem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docxChantellPantoja184
ย 
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docxPROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docxChantellPantoja184
ย 
Problem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docxProblem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docxChantellPantoja184
ย 
Problem 12-9AYour answer is partially correct. ย Try again..docx
Problem 12-9AYour answer is partially correct. ย Try again..docxProblem 12-9AYour answer is partially correct. ย Try again..docx
Problem 12-9AYour answer is partially correct. ย Try again..docxChantellPantoja184
ย 
Problem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docxProblem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docxChantellPantoja184
ย 
Problem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docxProblem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docxChantellPantoja184
ย 
Problem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docxProblem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docxChantellPantoja184
ย 
Problem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docxProblem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docxChantellPantoja184
ย 
Probation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docxProbation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docxChantellPantoja184
ย 
Problem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docxProblem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docxChantellPantoja184
ย 
Probe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docxProbe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docxChantellPantoja184
ย 

More from ChantellPantoja184 (20)

Problem 1Problem 2.docx
Problem 1Problem 2.docxProblem 1Problem 2.docx
Problem 1Problem 2.docx
ย 
Problem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docxProblem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docx
ย 
Problem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docxProblem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docx
ย 
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docxProblem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
ย 
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docxProblem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
ย 
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docxProblem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
ย 
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docxProblem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
ย 
Problem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docxProblem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docx
ย 
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docxProblem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
ย 
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docxProblem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
ย 
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docxPROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
ย 
Problem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docxProblem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholdersโ€™ equity accounts of Ashley Corpo.docx
ย 
Problem 12-9AYour answer is partially correct. ย Try again..docx
Problem 12-9AYour answer is partially correct. ย Try again..docxProblem 12-9AYour answer is partially correct. ย Try again..docx
Problem 12-9AYour answer is partially correct. ย Try again..docx
ย 
Problem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docxProblem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docx
ย 
Problem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docxProblem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docx
ย 
Problem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docxProblem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docx
ย 
Problem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docxProblem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docx
ย 
Probation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docxProbation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docx
ย 
Problem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docxProblem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docx
ย 
Probe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docxProbe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docx
ย 

Recently uploaded

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
ย 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
ย 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
ย 
เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,
เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,
เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,Virag Sontakke
ย 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
ย 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
ย 
โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
ย 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
ย 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
ย 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
ย 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
ย 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
ย 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
ย 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
ย 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
ย 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
ย 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)Dr. Mazin Mohamed alkathiri
ย 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
ย 

Recently uploaded (20)

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
ย 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
ย 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
ย 
เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,
เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,
เคญเคพเคฐเคค-เคฐเฅ‹เคฎ เคตเฅเคฏเคพเคชเคพเคฐ.pptx, Indo-Roman Trade,
ย 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
ย 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
ย 
โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
โ€œOh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
ย 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
ย 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
ย 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)โ€”โ€”โ€”โ€”IMP.OF KSHARA ...
ย 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
ย 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
ย 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
ย 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ย 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
ย 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
ย 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
ย 
Model Call Girl in Bikash Puri Delhi reach out to us at ๐Ÿ”9953056974๐Ÿ”
Model Call Girl in Bikash Puri  Delhi reach out to us at ๐Ÿ”9953056974๐Ÿ”Model Call Girl in Bikash Puri  Delhi reach out to us at ๐Ÿ”9953056974๐Ÿ”
Model Call Girl in Bikash Puri Delhi reach out to us at ๐Ÿ”9953056974๐Ÿ”
ย 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
ย 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
ย 

Practical ActivitiesWeek06lab08-1.pngPractical Activities.docx

  • 1. Practical Activities/Week06/lab08-1.png Practical Activities/Week06/lab08-8.png Practical Activities/Week06/lab08-3.png Practical Activities/Week06/sit363.css body { background-color: #FFFFFF; color: #000000; font-family: verdana, veneva, helvetica, sans-serif; font-size: 10pt; margin: 20px; } h2 { color: #3333cc; font-size: 130%; font-weight: bold; text-align: center;
  • 2. } h3 { color:#006699; font-size: 120%; } h4 { color:#9900ff; font-size: 110%; } p { text-align: left; margin-left: 15px; padding-left: 0px; }
  • 3. .brand { color:#000000; font-size: 120%; text-align: center; } .yellow_box { margin-left: 60px; margin-right: 60px; padding: 4px; border: 1px solid #000000; background-color: #FFFFE0; } .green_box { margin-left: 60px; margin-right: 60px; padding: 4px;
  • 4. border: 1px solid #000000; background-color: #E0FFE0; } .blue_box { margin-left: 60px; margin-right: 60px; padding: 4px; border: 1px solid #000000; background-color: #E0E0FF; } .red_box { margin-left: 60px; margin-right: 60px; padding: 4px; border: 1px solid #000000; background-color: #FFE0E0;
  • 5. } strong.big { font-size: 120%; } .red_bold { color: #F00; font-weight: bold; } .greencode { font-family: "Courier New", Courier, monospace; color: #009F00; font-size: 11pt; } .bluecode {
  • 6. font-family: "Courier New", Courier, monospace; color: #0000FF; font-size: 11pt; } .blackcode { font-family: "Courier New", Courier, monospace; color: #000000; font-size: 11pt; } Practical Activities/Week06/lab08-7.png Practical Activities/Week06/lab08-9.png Practical Activities/Week06/lab08-5.swf Practical Activities/Week06/lab08-6.png Practical Activities/Week06/lab08-5.png
  • 7. Practical Activities/Week06/lab08-10.png Practical Activities/Week06/lab08-2.png Practical Activities/Week06/lab08-4.png Practical Activities/Week06/sit363-lab06.html SIT363: Authoring of Interactive Media SIT363: Authoring of Interactive Media Week Five Lab: Building InteractionAims At the completion of this session you should be able to:use multi-layers and multi-frames to create a Tab interactionuse Actionscript to change the colour of symbols Our goal in this lab is to create the Flash tabbed interface shown below. Spend a few minutes playing with the interface and working out what each component does. You can change the colour of display background using the first tab. On the second tab you can select between no symbol, a square or a circle symbol. As well as selecting a symbol, you should also be able to change the colour of the symbol. Task 1: Create the Shape picker / colour change outcome as presented above, by following the steps below. Step 1 - Frame 1 In the first stage you will need to setup your project. You will need 5 layers. I labelled mine (top to bottom): Scripts, Toolsets, Tabs, Workspace and Background as shown below. Build the Flash presentation over three frames. Frame 1 will set up the symbols. Frame 2 will host Tab 1 and Frame 2 will host
  • 8. Tab 2. Work only in Frame 1 for the moment. In the Background Layer, set the colour for the Stage. I have used a pale blue colour. In the Workspace Layer, create three shapes. The white square is placed on the stage with a black border. Convert this shape into a Movie Clip symbol. I used the name "Workspace" for this symbol. Now create two other shapes off-stage. I have positioned these to the left of the stage but they can be created anywhere. Make the shapes about the same size and create them with no border. Your Workspace Layer should now look like the one below: You will need to give each of the symbols an instance name. I have used myDisplay, mySquare, and myCircle for my names.Step 2 - Frame 2 Frame 2 hosts Tab 1. The Tabs are created by combining a number of rectangle shapes together. Don't worry about the Shape Tab button yet. Just concentrate on getting your Base Tab looking right. When you are done, convert the whole Base Tab to a symbol. Create a button object to make the Shape tab. You can give this object any animation properties that you like. I have given the Over frame a green border, and changed the shading lines in the down frame. Position the Shape tab button so that it looks like the next tab to be selected as shown below: The Toolset Layer in Frame 2 holds the colour selector object. Add some text and an instance of the Color Selector Component. Give the Color Selector an instance name. The complete Frame 2 will look like the image shown below: Step 3 - Frame 3 Frame 3 is developed in almost the same way that we developed Frame 2. The are some obvious differences which you can identify by looking at the sample. The main difference is the Toolset layer for this frame. The Toolset consists of three
  • 9. button objects: a text button ("Name"), a square button and an circle button. I have not created any animation effects with these buttons. Also on this layer is a square, unfilled box shape that has been converted to a symbol. This symbol is positioned over the "None" button initially. Step 4 - Actionscript Frame 2 Frame 1 has no Actionscript associated with it. We want the presentation to flow directly into Frame 1. We could have buildt the presentation with Frame 1 and Frame 2 combined. However, I have separated them here just so you can see how the development process works. The Actionscript in Frame 2 needs to set up the presentation and then activate the two interaction elements on this frame: the Shape tab button and the Color Selector object. The Actionscript for this frame should be familiar to you. There are no suprises here. You need to create an event listener and an event handler for each of the interaction elements: This script shows how you can modify the colour of symbols. First you need to create a variable that creates an instance of a colorTransform class. It is defined by initializing it to the colorTransform object that is part of the Stage (the "this" object). Once created the color is changed to the selected colour. Lastly, the colorTransform is applied to the myDisplay object.Step 5 - Actionscript Frame 3 The script for Frame 3 is a bit more complex. There are five interactive elements in this frame: the Base tab button, the "None" button, the Square button, the Circle button, and the Colour Selector object. Create an event listener for each object. The Base tab button and the Colour Selector object have simple actions as you can see below. With the colour selection, the principles are the same as shown above. We need to change the colour of both the square and the circle so that when the user changes the shape, the colour will match what has been selected.
  • 10. The most complex interactions are those related to selecting the shape to view. These interactions need to swap the shape symbols and to move the yellow selection box as well. The position of each box is hardcoded into the functions. Note that a negative value means that the object is off-stage. Also note how the shapes are centred within the workspace. Task 2: Once you have this presentation working, modify the set of shapes so that you can also include a triangle symbol in your selections. Challenge Task: Based on the Tasks above create a Flash presentation that includes three tabs. Each tab should display one of the interactions (different one on each tab) that you have constructed in previous weeks. _____________________________________________________ _____________ Reflection Questions: Please use the Reflection link below to complete the following reflections questions and submit them to your Portfolio. Practical Lab 5 Reflection Questions:What did I learn in this weekโ€™s activities?Write a Short statement about what you have learnt in this week's practical class. Which part of this weeks task did I find most challenging?which section of the task did you find the most challenging?