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
how does an xmlsocket server know when a received message is complete? : Adobe flash
what appears in the output window after executing this actionscript on the first frame of a movie? : Adobe flash
Tell me what is the main purpose of actionscript?
Write a program to create custom list in actionscript?
Can you explain what are the changes presented by actionscript?
What is the use of pre-loader?
what is the most important factor in determining the compatibility of your application? : Adobe flash
Tell me what are the different ways in which the variables can be assigned?
which charactor can be added to the identifire mylengthyvariable, to make it more redable? : Adobe flash
which of the assumptions cannot be made when developing an application for intranet deployment? : Adobe flash
How to make synchronous data calls in actionscript?
What are the features involved in updating a language?
can any one tell good training center for adobe flex in chennnai?
Write a program use a text field and display it using the actionscript?
what is the key difference between while loops and do while loops? : Adobe flash