Implementing A Custom Sort

  • Uploaded by: SRINIVASA RAO GANTA
  • 0
  • 0
  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Implementing A Custom Sort as PDF for free.

More details

  • Words: 37
  • Pages: 1
Record21: Loading and ImageViewer class (a) ImageViewer.as file class ImageViewer { private var container_mc:MovieClip; public function ImageViewer(target:MovieClip,depth:Number,x:Number,y:Number) { container_mc=target.createEmptyMovieClip("container_mc"+depth,depth); container_mc._x=x; container_mc._y=y; } public function loadImage(URL:String):Void { container_mc.loadMovie(URL); } } -----------------------------------------------------------------------------(b) ImageViewer.fla file ----------------------------------------------------------------------------var viewer:ImageViewer=new ImageViewer(this,1,100,100); viewer.loadImage("Sunset.jpg"); ------------------------------------------------------------------------------

Related Documents

Sort
November 2019 21
Sort
November 2019 23
Custom
June 2020 22
Heap Sort
April 2020 24

More Documents from "mrbkiter"