text
stringlengths
4
1.04M
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF li...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
/** * * MAIN LANDING PAGE * * @langversion ActionScript 3.0 * @playerversion Flash 9.0 * @author Abraham Lee * @since 03.26.2009 * **/ package com.neopets.projects.destination.destinationV3.movieTheater { //---------------------------------------- // IMPORTS //---------------------------------------- ...
package sk.yoz.utils { import flash.geom.Point; /** * Geographical utils using mercator projection algorithms. */ public class GeoUtils { public static const DEG_RAD:Number = PI / 180; public static const RAD_DEG:Number = 180 / PI; public static const MAX_L...
package asunit.framework { import asunit.asserts.*; import flash.display.Sprite; public class VisualTestCaseTest { [Inject] public var context:Sprite; [Test] public function instantiated():void { assertTrue(context is Sprite); } } }
package razor.display { import razor.TouchInfo; import razor.events.TouchEvent; import flash.geom.Matrix3D; import flash.geom.Rectangle; public class RazorTapTarget extends RazorObject { private var Width:Number; private var Height:Number; public function RazorTapTarget(width:uint, height:uint) { setDims(wid...
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2011 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file // in accordance with the terms of the license agreement ac...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF li...
package com.ankamagames.dofus.network.messages.game.prism { import com.ankamagames.jerakine.network.CustomDataWrapper; import com.ankamagames.jerakine.network.ICustomDataInput; import com.ankamagames.jerakine.network.ICustomDataOutput; import com.ankamagames.jerakine.network.INetworkMessage; import...
void func(string@ &out output) { debugCall(); assert( output == 'test' ); }
package { public class Utils { public function Utils() { } public static function randomize(min:Number, max:Number):Number { return Math.random()*(max - min) + min } } }
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package feathers.examples.layoutExplorer.screens { import feathers.controls.Button; import feathers.controls.Header; import feathers.controls.List; import feathers.controls.NumericStepper; import feathers.controls.PanelScreen; import feathers.controls.PickerList; import feathers.data.ListCollection; import feat...
package com.greensock.easing { public class SteppedEase { private var _steps:int; private var _stepAmount:Number; public function SteppedEase(param1:int) { super(); this._stepAmount = 1 / param1; this._steps = param1 + 1; } ...
/** * <p>Original Author: jessefreeman</p> * <p>Class File: StyleSheetCollection.as</p> * * <p>Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limi...
/** * OFBMode * * An ActionScript 3 implementation of the OFB confidentiality mode * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ package com.hurlant.crypto.symmetric { import flash.utils.ByteArray; public class OFBMode extends IVMode implements IMode { public fun...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package RiddleStrip { import flash.events.Event; import flash.display.*; import flash.events.TimerEvent; import flash.geom.*; import flash.display.Sprite; import mx.events.FlexEvent; import spark.components.Group; import spark.utils.TextFlowUtil; import flash.utils.Timer; import mx.controls.Alert; import gf...
package kabam.rotmg.account.securityQuestions.data { public class SecurityQuestionsModel { private var _showSecurityQuestionsOnStartup:Boolean = false; private var _securityQuestionsList:Array; public var securityQuestionsAnswers:Array; public function SecurityQuestionsModel() { this._securit...
/** * Сopyright (c) F1 System Resource, Inc. 2006 * @author Rustem Mustafaiev msrustem@gmail.com * @author Igor Sadovskiy isadovskiy@gmail.com */ import org.aswing.ASColor; import org.aswing.border.LineBorder; import org.aswing.JScrollPane; import org.aswing.plaf.basic.BasicComboBoxUI; class com.f1sr.aswing.plaf...
package roulette { import com.pickgliss.ui.ComponentFactory; import com.pickgliss.ui.core.Disposeable; import flash.display.MovieClip; import flash.display.Sprite; public class LeftRouletteGlintView extends Sprite implements Disposeable { private var _pointArray:Array; ...
/* * * This file is part of the OpenKinect Project. http://www.openkinect.org * * Copyright (c) 2010 individual OpenKinect contributors. See the CONTRIB file * for details. * * This code is licensed to you under the terms of the Apache License, version * 2.0, or, at your option, the terms of the GNU Gener...
//////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2003-2006 Adobe Macromedia Software LLC and its licensors. // All Rights Reserved. The following is Source Code and is subject to all // restrictions on such code as contained in the End User License Agreement // ac...
package com.ankamagames.dofus.network.messages.game.basic { import com.ankamagames.jerakine.network.CustomDataWrapper; import com.ankamagames.jerakine.network.ICustomDataInput; import com.ankamagames.jerakine.network.ICustomDataOutput; import com.ankamagames.jerakine.network.INetworkMessage; import...
#fileID<SchBindOp_as> <DocumentInfo> docID A_Spec_SchemaBindOp; docVer 00; docRev a; </DocumentInfo> #import<Free/Free2.al> #import<Schema/Schema2.al> #import<SchemaInit/SchemaInit2.al> #import<SchemaProc/SchemaProc2.al> #import<SchBindOp/SchBindOp.al>
package laya.d3.graphics { import laya.d3.math.Vector2; import laya.d3.math.Vector3; import laya.d3.math.Vector4; /** * <code>VertexPositionTerrain</code> 类用于创建位置、法线、纹理1、纹理2顶点结构。 */ public class VertexPositionTerrain implements IVertex { private static const _vertexDeclaration:VertexDeclaration = new Ve...
/** * <p>Original Author: Daniel Freeman</p> * * <p>Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, me...
package kabam.rotmg.characters.reskin.view { import kabam.rotmg.characters.reskin.control.ReskinCharacterSignal; import kabam.rotmg.classes.model.CharacterSkins; import kabam.rotmg.classes.model.ClassesModel; import kabam.rotmg.core.model.PlayerModel; import kabam.rotmg.dialogs.control.CloseDialogsSignal; import robo...
/* Copyright (c) 2006-2013 Regents of the University of Minnesota. For licensing terms, see the file LICENSE. */ package items.utils { import flash.utils.Dictionary; import items.feats.Byway; import utils.geom.Dual_Rect; import utils.misc.Logging; import utils.misc.Set; import utils.misc.Set_UUI...
// // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to You under the Apache License, Version 2.0 // (the "License"); you...
/* * Copyright (c) 2006-2007 Erin Catto http://www.gphysics.com * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * Permission is granted to anyone to use this software for any pu...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
/** * Parses ATOM feeds and returns an indexed array with all elements * * @author Jeroen Wijering * @version 1.4 **/ import com.jeroenwijering.feeds.AbstractParser; import com.jeroenwijering.utils.StringMagic; class com.jeroenwijering.feeds.ATOMParser extends AbstractParser { /** Contructor **/ function ATOMP...
package cmodule.lua_wrapper { public const ___rshift_D2A:int = regFunc(FSM___rshift_D2A.start); }
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package com.ixiyou.speUI.core { /** * 组件大小和重绘制接口 * @author spe */ public interface ISize { /**设置大小*/ function setSize(w:Number, h:Number):void /**组件大小更新*/ function upSize():void /**组件大小重设,一般在组件被新的容器装载、组件边界发生变化时候执行大小重设由组件自行计算重设的大小*/ function resetSize():void /**设置高度*/ functi...
package com.ankamagames.dofus.types.characteristicContextual { import flash.display.DisplayObject; import mx.core.SpriteAsset; [ExcludeClass] public class StyledTextContextual_STYLE_2_NUMBER_3 extends SpriteAsset { public var origine:DisplayObject; public...
//////////////////////////////////////////////////////////////////////////////// // // Copyright 2012 Ruben Buniatyan. All rights reserved. // // This source is subject to the license agreement accompanying it. // //////////////////////////////////////////////////////////////////////////////// package flame.controls...
/**This class is automatically generated by LayaAirIDE, please do not make any modifications. */ package ui.dialog { import laya.ui.*; import laya.display.*; public class SettingUI extends Dialog { public var cbSound:CheckBox; public var cbMusic:CheckBox; public static var uiView:Object =/*[STATIC SAFE]*/{"t...
package menu { import flash.display.MovieClip; /** * ... * @author XJ */ public class Nextbar extends MovieClip { private var _clickable:Boolean; public function get clickable():Boolean { return _clickable; } public function set clickable(value:Boolean):void { _clickable = value; ...
// ================================================================== // Module: WinBmpHdr.as // // Description: Windows Bitmap Header class // - bitmapheader // // Author(s): C.T. Yeung (cty) // // History: // 14Feb09 first completion of decoder cty // 21Feb09 fully functional as Windows paint bmp format...
// Standard menu player controls // add to blob and sprite #include "StandardControlsCommon.as" #include "ThrowCommon.as" const u32 PICKUP_ERASE_TICKS = 80; void onInit(CBlob@ this) { CBlob@[] blobs; this.set("pickup blobs", blobs); CBlob@[] closestblobs; this.set("closest blobs", closestblobs); string[] recen...
/** * @author jaco */ package it.pixeldump.svg.font.events { import flash.events.Event; public class FontLoaderEvent extends Event{ // events constants public static const FONT_READY:String = "svgFontReady"; function FontLoaderEvent (eventType:String, bubbles:Boolean = false, cancelable:Boolean = false...
package com.tinyspeck.engine.admin.locodeco { import com.flexamphetamine.BuildDecayChronograph; import com.tinyspeck.bridge.CartesianMouseEvent; import com.tinyspeck.core.beacon.KeyBeacon; import com.tinyspeck.core.beacon.StageBeacon; import com.tinyspeck.debug.BootError; import com.tinyspeck.debug.Console; impo...
// makeswf -v 7 -s 200x150 -r 1 -o destroyed-movie-resolve.swf destroyed-movie-resolve.as x = createEmptyMovieClip ("a", 0); x.answer = 42; loader = new MovieClipLoader (); loader.loadClip ("destroyed-movie-resolve.as", x); loader.onLoadComplete = function (m) { trace (x.answer); trace (a.answer); getURL ("fsc...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
// Based on the Moski plugin which is also based on the Miss plugin :) bool menu_visibility = false; int author_time; void Main() {} void validate(int author_time) { #if UNITED CTrackManiaEditor@ editor = cast<CTrackManiaEditor>(cast<CTrackMania>(GetApp()).Editor); #else CGameCtnEditorFree@ editor = cas...
package serverProto.rank { import com.netease.protobuf.Message; import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_ENUM; import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_INT32; import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_BOOL; import com.netease.proto...
package zpp_nape { public class ZPP_ID extends Object { public function ZPP_ID() { } public static var _InteractionGroup:int; public static function InteractionGroup() : int { var _loc1_:int = ZPP_ID._InteractionGroup; ZPP_ID._InteractionG...
package com.tinyspeck.engine.net { public class NetOutgoingHousesCeilingBuyVO extends NetOutgoingMessageVO { public var ceiling_type:String; public function NetOutgoingHousesCeilingBuyVO(ceiling_type:String) { super(MessageTypes.HOUSES_CEILING_BUY); this.ceiling_type = ceiling_type; } } }
package cmodule.lua_wrapper { const __2E_str14189332:int = gstaticInitter.alloc(30,1); }
package com.leondejong.imageviewer.model { import flash.events.*; public interface IModel extends IEventDispatcher { function firstImage():void; function lastImage():void; function nextImage():void; function previousImage():void; function getCurrentURL():String; function getCurrentName(...
package org.mineap.nicovideo4as.loader.api { import flash.net.URLLoader; import flash.net.URLRequest; import flash.net.URLVariables; /** * ニコニコ動画のAPI(getflv)へのアクセスを担当するクラスです。 * * @author shiraminekeisuke(MineAP) * */ public class ApiGetFlvAccess extends URLLoader { ...
/* * Copyright 2008 Adobe Systems Inc., 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
/****************************************************************************** * Spine Runtimes License Agreement * Last updated May 1, 2019. Replaces all prior versions. * * Copyright (c) 2013-2019, Esoteric Software LLC * * Integration of the Spine Runtimes into software or otherwise creating * derivat...
package com.ankamagames.dofus.network.types.game.character.characteristic { import com.ankamagames.jerakine.network.ICustomDataInput; import com.ankamagames.jerakine.network.ICustomDataOutput; import com.ankamagames.jerakine.network.INetworkType; import com.ankamagames.jerakine.network.utils.FuncTree; ...
package com.longtailvideo.jwplayer.model { import com.longtailvideo.jwplayer.events.GlobalEventDispatcher; import com.longtailvideo.jwplayer.events.MediaEvent; import com.longtailvideo.jwplayer.events.PlayerEvent; import com.longtailvideo.jwplayer.media.IMediaProvider; import com.longtailvideo.jwplayer.media.Media...
package kabam.rotmg.account.web.view { import com.company.ui.BaseSimpleText; import flash.filters.DropShadowFilter; import kabam.rotmg.text.view.TextFieldDisplayConcrete; import kabam.rotmg.text.view.stringBuilder.LineBuilder; import org.osflash.signals.Signal; public class LabeledField extends FormField { pu...
/** * Created by newkrok on 09/04/16. */ package ageofai.fruit.event { import ageofai.fruit.vo.FruitVO; import flash.events.Event; public class FruitViewEvent extends Event { public static const FRUIT_CREATED:String = 'FruitViewEvent.FRUIT_CREATED'; public var fruitVO:FruitVO; public function FruitViewE...
/** * MochiServices * Connection class for all MochiAds Remote Services * @author Mochi Media */ package mochi.as3 { import flash.geom.Rectangle; import flash.display.DisplayObject; import flash.display.DisplayObjectContainer; import flash.display.Sprite; import flash.display.MovieClip; impor...
/* * _________ __ __ * _/ / / /____ / /________ ____ ____ ___ * _/ / / __/ -_) __/ __/ _ `/ _ `/ _ \/ _ \ * _/________/ \__/\__/\__/_/ \_,_/\_, /\___/_//_/ * /___/ * * Tetragon : Game Engine for multi-platform ActionScript projects. * http://w...
/* * SPL; AS3 Spelling library for Flash and the Flex SDK. * * Copyright (c) 2013 gskinner.com, inc. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including wit...
/* * Copyright (c) 2006-2007 Erin Catto http://www.gphysics.com * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * Permission is granted to anyone to use this software for any pu...
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */ /* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at...
package kabam.rotmg.ui.view { import com.company.assembleegameclient.screens.AccountScreen; import com.company.assembleegameclient.ui.tooltip.ToolTip; import kabam.rotmg.account.core.Account; import kabam.rotmg.account.core.view.AccountInfoView; import kabam.rotmg.account.kabam.KabamAccount; import kabam.rotmg.accoun...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package laya.d3.terrain { import laya.d3.math.Vector2; import laya.d3.math.Vector3; import laya.d3.math.Vector4; import laya.d3.terrain.unit.ChunkInfo; import laya.d3.terrain.unit.DetailTextureInfo; import laya.d3.terrain.unit.MaterialInfo; import laya.events.Event; import laya.net.Loader; import laya...
/** * User: booster * Date: 02/02/14 * Time: 12:43 */ package demo.display { import starling.display.StorkRoot; import starling.events.Event; public class Root extends StorkRoot { public static const WIDTH:Number = 320; public static const HEIGHT:Number = 380; public static const MARGIN:Number = ...
package kabam.rotmg.messaging.impl.outgoing { import flash.utils.IDataOutput; import kabam.rotmg.messaging.impl.data.SlotObjectData; public class InvDrop extends OutgoingMessage { public var slotObject_:SlotObjectData; public function InvDrop(_arg_1:uint, _arg_2:Function) { this.slotObject_ = new S...
/** * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/ * * Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below). * * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the...
package org.jbei.lib.data { import mx.collections.ArrayCollection; import org.jbei.bio.sequence.common.Annotation; import org.jbei.registry.models.TraceSequence; /** * @author Zinovii Dmytriv */ public class TraceAnnotation extends Annotation { private var _tr...
dynamic class gfx.managers.InputDelegate extends gfx.events.EventDispatcher { var dispatchEvent; var keyRepeatStateLookup; var keyRepeatSuppressLookup; function InputDelegate() { super(); Key.addListener(this); this.keyRepeatSuppressLookup = {}; this.keyRepeatStateLookup = {}; } static function get ins...
/* Copyright (c) 2006-2013 Regents of the University of Minnesota. For licensing terms, see the file LICENSE. */ // Location is used for displaying locations (either addresses or points) // on the map. package utils.geom { import flash.display.Graphics; import flash.display.Sprite; import mx.controls.Ale...
package kabam.rotmg.characters.reskin.control { import org.osflash.signals.Signal; public class OpenReskinDialogSignal extends Signal { } }
package kabam.lib.console.controller { import kabam.lib.console.model.Console; import kabam.lib.console.signals.ConsoleLogSignal; public final class ListActionsCommand { public function ListActionsCommand() { super(); } [Inject] public var console:Console; [Inject] public var log:Cons...
package punk.ui.skins { import flash.display.BitmapData; import flash.geom.Rectangle; import punk.ui.skin.PunkSkinSliderElement; import net.flashpunk.FP; import net.flashpunk.graphics.Image; import punk.ui.skin.PunkSkinButtonElement; import punk.ui.skin.PunkSkinLabelElement; import punk.ui.skin.PunkSkin; i...
import com.xfactorstudio.xml.xpath.types.QueryPart; class com.xfactorstudio.xml.xpath.types.Litteral extends QueryPart{ }
package org.flixel { import flash.display.Bitmap; import flash.display.BitmapData; import flash.display.Graphics; import flash.geom.ColorTransform; import flash.geom.Matrix; import flash.geom.Point; import flash.geom.Rectangle; import org.flixel.system.FlxAnim; /** * The main "game object" class, the spr...
/** * Copyright (c) 2011 FlashQuartermaster Ltd * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify,...
 /* AS3 Copyright 2008 */ package com.neopets.games.inhouse.suteksTomb.game.extendedMenus { import com.neopets.projects.gameEngine.gui.AbsMenu; import com.neopets.projects.gameEngine.gui.buttons.SelectedButton; import com.neopets.util.button.NeopetsButton; import flash.display.MovieClip; import flash.events.Ev...
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2006-2007 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file // in accordance with the terms of the license agreeme...
package com.views { import flash.display.MovieClip; import flash.events.Event; import com.MyVideo; public class TVRoom extends MovieClip { var videoName:MyVideo = new MyVideo; var ivid:instructionsvideo = new instructionsvideo(); public function TVRoom() { // constructor code ...
package com.as3game.asset { import br.com.stimuli.loading.BulkLoader; import flash.display.MovieClip; import flash.events.Event; import flash.events.EventDispatcher; import flash.media.SoundLoaderContext; import flash.net.URLRequest; import flash.system.ApplicationDomain; import flash.system.LoaderContext; imp...
package ninja.model { import com.tencent.morefun.naruto.model.BaseModel; import flash.utils.Dictionary; import flash.utils.describeType; import serverProto.inc.NinjaSourceType; import flash.events.Event; import ninja.model.data.NinjaInfo; import RSModel.event.RSModelEvent; import ninja.utils.Nin...
namespace Commands { shared CommandManager@ getManager() { CommandManager@ manager; if (!getRules().get("command manager", @manager)) { @manager = CommandManager(); getRules().set("command manager", @manager); } return manager; } }
/******************************************************************************* * The MIT License * * Copyright (c) 2011 Jens Struwe. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software with...
package com.bumpslide.command.robotlegs { import com.bumpslide.command.Command; import com.bumpslide.command.CommandEvent; import com.bumpslide.ui.Label; import com.bumpslide.util.Delegate; /** * Post message to startup log * * @author David Knape */ public class StartupMessage extends Command { [In...
package com.game.framework.utils { /** * *@author sixf */ public class InteractiveUtils { public function InteractiveUtils() { } } }
package ormtest.model8 { [Bindable] [Table(name = "sys_user8")] public class User8FromView { import mx.collections.ArrayCollection; /** * The ID field. */ [Id(strategy = "assigned")] [Column(name = "id")] public var id:Number; /** ...
package mx.binding { import mx.core.mx_internal; import mx.events.PropertyChangeEvent; use namespace mx_internal; public class BindabilityInfo { mx_internal static const VERSION:String = "4.0.0.14159"; public static const BINDABLE:String = "Bindable"; ...
/** * Created with IntelliJ IDEA. * User: mobitile * Date: 4/24/13 * Time: 4:46 PM * To change this template use File | Settings | File Templates. */ package skein.components.enum { public class Side { public static const LEFT:String = "left"; public static const TOP:String = "top"; public static cons...
package preloader_fla_fla { import flash.display.MovieClip; public dynamic class PreloaderSymbolPreloaderLogo_9 extends MovieClip { public var logoColored:MovieClip; public var logoGrey:MovieClip; public var m:MovieClip; public function PreloaderS...
// Decompiled by AS3 Sorcerer 6.08 // www.as3sorcerer.com //io.decagames.rotmg.pets.popup.info.PetInfoDialog package io.decagames.rotmg.pets.popup.info { import io.decagames.rotmg.ui.popups.modal.ModalPopup; import flash.display.Bitmap; import io.decagames.rotmg.ui.sliceScaling.SliceScalingBitmap; im...
package org.gestouch.extensions.native { import org.gestouch.core.ITouchHitTester; import flash.display.InteractiveObject; import flash.geom.Point; /** * @author Pavel fljot */ final public class NativeTouchHitTester implements ITouchHitTester { public function hitTest(point:Point, nativeTarget:Interacti...
/** * BlowFishKey * * An Actionscript 3 implementation of the BlowFish encryption algorithm, * as documented at http://www.schneier.com/blowfish.html * Copyright (c) 2007 Henri Torgemane * * Derived from: * The Bouncy Castle Crypto package, * Copyright (c) 2000-2004 The Legion Of The Bouncy Cas...
package kabam.rotmg.assets { import mx.core.*; [Embed(source="EmbeddedData_WillemTestingCXML.dat", mimeType="application/octet-stream")] public class EmbeddedData_WillemTestingCXML extends ByteArrayAsset { public function EmbeddedData_WillemTestingCXML() { super(); } } }
/** * Just need call a link when clicked (client's web page) * * @langversion ActionScript 3.0 * @playerversion Flash 9.0 * @author Abraham Lee * @since 07.16.2009 */ //---------------------------------------- // OVERALL FLOW //---------------------------------------- package com.neopets.projects.dest...
/* --- START OF LICENSE AND COPYRIGHT BLURB --- This file is a part of the PUPIL project, see http://github.com/MIUNPsychology/PUPIL Copyright 2016 Department of Psychology, Mid Sweden University Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in ...