Write a function that responds to a click anywhere on the
page by displaying an alert dialog. Display the event name
if the user held Shift during the mouse click. Display the
element name that triggered the event if the user held Ctrl
during the mouse click.
Answer Posted / ravindrakumar karanki
we need to create a Alert Window class. If write in trace it
won't display in Alert dialog. It will display only on
output window.
use following code
package com.whatever {
//Imports
import flash.display.Shape;
import flash.display.Sprite;
import flash.geom.Rectangle;
import flash.events.MouseEvent;
//Class
public class AlertWindow extends Sprite {
//Vars
protected var box:Shape;
protected var yesBtn:Sprite;
//Constructor
public function AlertWindow (obj:Rectangle):void {
//Initialise
box = new Shape()
yesBtn = new Sprite()
addChild(box)
addChild(yesBtn)
//Render
with (box.graphics) {
lineStyle(1)
beginFill(0, 0.4)
drawRect(obj.x, obj.y, obj.width, obj.height)
endFill()
}
with (yesBtn.graphics) {
lineStyle(1, 0x00FF00)
beginFill(0x00FF00, 0.4)
drawRect(obj.x+obj.width-100,
obj.y,obj.height-40, 80, 20)
endFill()
}
//Events
yesBtn.addEventListener(MouseEvent.CLICK,
yesClickHandler, false, 0, true)
yesBtn.addEventListener(MouseEvent.MOUSE_OVER,
yesOverHandler, false, 0, true)
}
//Handlers
protected function yesClickHandler($):void {}
protected function yesOverHandler($):void {}
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what appears in the output window after executing this actionscript on the first frame of a movie? : Adobe flash
which of the following is not a result of exporting a movie for a debug build? : Adobe flash
when does the accessibility . Isactive () method return true? : Adobe flash
Differentiate between as2 and as3.
which is an advantage of selecting a flash player version in publish settings before beginning a project? : Adobe flash
you have a video project that would best be served by using full screen mode. This needs to be done from within the browser, since you are not able to use a projector. Which publish settings should you use? : Adobe flash
you want to skin flash cs3 components. What should you do? : Adobe flash
Do you know what is the difference between an array and vector?
Explain what are the differences between javascript and actionscript?
which of the following is not an effective means of developing applications that are easy to debug? : Adobe flash
Do you know what are the different primitive data types used in actionscript?
which of the following is not a guideline for conducting effective usability testing? : Adobe flash
what is the key advantage of using loadvars instead of loadvariables? : Adobe flash
what is flash tweening? : Adobe flash
which of the following is not a typical host application for the flash player? : Adobe flash