commit stringlengths 40 40 | old_file stringlengths 2 205 | new_file stringlengths 2 205 | old_contents stringlengths 0 32.9k | new_contents stringlengths 1 38.9k | subject stringlengths 3 9.4k | message stringlengths 6 9.84k | lang stringlengths 3 13 | license stringclasses 13
values | repos stringlengths 6 115k |
|---|---|---|---|---|---|---|---|---|---|
41be0f56764722d09571d430576f6ba0d8483301 | lib/src_linux/com/amanitadesign/steam/FRESteamWorks.as | lib/src_linux/com/amanitadesign/steam/FRESteamWorks.as | /*
* FRESteamWorks.as
* This file is part of FRESteamWorks.
*
* Created by Ventero <http://github.com/Ventero>
* Copyright (c) 2012-2013 Level Up Labs, LLC. All rights reserved.
*/
package com.amanitadesign.steam {
import flash.desktop.NativeProcess;
import flash.desktop.NativeProcessStartupInfo;
import f... | /*
* FRESteamWorks.as
* This file is part of FRESteamWorks.
*
* Created by Ventero <http://github.com/Ventero>
* Copyright (c) 2012-2013 Level Up Labs, LLC. All rights reserved.
*/
package com.amanitadesign.steam {
import flash.desktop.NativeProcess;
import flash.desktop.NativeProcessStartupInfo;
import f... | Remove debug trace | [swc] Remove debug trace
| ActionScript | bsd-2-clause | Ventero/FRESteamWorks,Ventero/FRESteamWorks,Ventero/FRESteamWorks,Ventero/FRESteamWorks |
0bf0b2d322e6b29d31f892b48b25200b8517e369 | src/aerys/minko/scene/node/Mesh.as | src/aerys/minko/scene/node/Mesh.as | package aerys.minko.scene.node
{
import aerys.minko.ns.minko_scene;
import aerys.minko.render.geometry.Geometry;
import aerys.minko.render.material.Material;
import aerys.minko.render.material.basic.BasicMaterial;
import aerys.minko.scene.controller.mesh.MeshController;
import aerys.minko.scene.controller.mesh.Me... | package aerys.minko.scene.node
{
import aerys.minko.ns.minko_scene;
import aerys.minko.render.geometry.Geometry;
import aerys.minko.render.material.Material;
import aerys.minko.render.material.basic.BasicMaterial;
import aerys.minko.scene.controller.mesh.MeshController;
import aerys.minko.scene.controller.mesh.Me... | fix Mesh.initializeMesh() to stop using static reference to a default material to avoid memory leak: by default Mesh will now have a null material if none is provided | fix Mesh.initializeMesh() to stop using static reference to a default material to avoid memory leak: by default Mesh will now have a null material if none is provided
| ActionScript | mit | aerys/minko-as3 |
35d35bf543fe694c162fb4ae791dfffbd6956bff | frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleCSSStyles.as | frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleCSSStyles.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | add more style props | add more style props
| ActionScript | apache-2.0 | greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs |
f08434ed2125898e0a794813202713f14bab4672 | src/aerys/minko/type/Signal.as | src/aerys/minko/type/Signal.as | package aerys.minko.type
{
public final class Signal
{
private var _name : String = null;
private var _callbacks : Array = [];
private var _numCallbacks : uint = 0;
private var _executed : Boolean = false;
private var _numAdded : uint = 0;
private var _toAdd : Array = null;
... | package aerys.minko.type
{
public final class Signal
{
private var _name : String = null;
private var _callbacks : Array = [];
private var _numCallbacks : uint = 0;
private var _executed : Boolean = false;
private var _numAdded : uint = 0;
private var _toAdd : Array = null;
... | Remove 'removeAllCallback' function from signal file | Remove 'removeAllCallback' function from signal file
| ActionScript | mit | aerys/minko-as3 |
8066aa1927952d437881222ee98a41e7391b2824 | actionscript/src/com/freshplanet/nativeExtensions/PushNotification.as | actionscript/src/com/freshplanet/nativeExtensions/PushNotification.as | package com.freshplanet.nativeExtensions
{
import flash.events.EventDispatcher;
import flash.events.StatusEvent;
import flash.external.ExtensionContext;
import flash.system.Capabilities;
public class PushNotification extends EventDispatcher
{
public static const RECURRENCE_NONE:int = 0;
public... | package com.freshplanet.nativeExtensions
{
import flash.events.EventDispatcher;
import flash.events.StatusEvent;
import flash.external.ExtensionContext;
import flash.system.Capabilities;
public class PushNotification extends EventDispatcher
{
public static const RECURRENCE_NONE:int = 0;
public... | fix typo | fix typo
| ActionScript | apache-2.0 | freshplanet/ANE-Push-Notification,StarIslandGames/ANE-Push-Notification,freshplanet/ANE-Push-Notification,freshplanet/ANE-Push-Notification,StarIslandGames/ANE-Push-Notification |
0e0157a167b8430a31b711caf6eb9df9da987cd6 | src/org/mangui/hls/HLSSettings.as | src/org/mangui/hls/HLSSettings.as | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls {
import org.mangui.hls.constant.HLSSeekMode;
import org.mangui.hls.constant.HLSMaxL... | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls {
import org.mangui.hls.constant.HLSSeekMode;
import org.mangui.hls.constant.HLSMaxL... | disable video hardware acceleration by default causing too much trouble :-( | disable video hardware acceleration by default
causing too much trouble :-(
| ActionScript | mpl-2.0 | Peer5/flashls,Corey600/flashls,suuhas/flashls,codex-corp/flashls,viktorot/flashls,aevange/flashls,NicolasSiver/flashls,viktorot/flashls,suuhas/flashls,School-Improvement-Network/flashls,aevange/flashls,Peer5/flashls,mangui/flashls,Boxie5/flashls,jlacivita/flashls,tedconf/flashls,aevange/flashls,Peer5/flashls,aevange/fl... |
3892ffc056246ca46d5f2d7e2c6a9c65278678ed | src/aerys/minko/type/data/DataBindings.as | src/aerys/minko/type/data/DataBindings.as | package aerys.minko.type.data
{
import aerys.minko.type.Signal;
import flash.utils.Dictionary;
public class DataBindings
{
private var _bindingNames : Vector.<String> = new Vector.<String>();
private var _bindingNameToValue : Object = {};
private var _bindingNameToChangedSignal : Object = {}... | package aerys.minko.type.data
{
import aerys.minko.type.Signal;
import flash.utils.Dictionary;
public class DataBindings
{
private var _bindingNames : Vector.<String> = new Vector.<String>();
private var _bindingNameToValue : Object = {};
private var _bindingNameToChangedSignal : Object = {}... | Fix getDataProviderAt | Fix getDataProviderAt
M Change _providers type from vector.<DataProvider> into
vector.<IDataProvider>
| ActionScript | mit | aerys/minko-as3 |
a3add8259ba97518f8d0c84653cbd42a48643ac2 | test/src/FRESteamWorksTest.as | test/src/FRESteamWorksTest.as | /*
* FRESteamWorks.h
* This file is part of FRESteamWorks.
*
* Created by David ´Oldes´ Oliva on 3/29/12.
* Contributors: Ventero <http://github.com/Ventero>
* Copyright (c) 2012 Amanita Design. All rights reserved.
* Copyright (c) 2012-2013 Level Up Labs, LLC. All rights reserved.
*/
package
{
import c... | /*
* FRESteamWorks.h
* This file is part of FRESteamWorks.
*
* Created by David ´Oldes´ Oliva on 3/29/12.
* Contributors: Ventero <http://github.com/Ventero>
* Copyright (c) 2012 Amanita Design. All rights reserved.
* Copyright (c) 2012-2013 Level Up Labs, LLC. All rights reserved.
*/
package
{
import c... | Add test for updateUserPublishedItemVote | Add test for updateUserPublishedItemVote
| ActionScript | bsd-2-clause | Ventero/FRESteamWorks,Ventero/FRESteamWorks,Ventero/FRESteamWorks,Ventero/FRESteamWorks |
d4252633db7f53bbd5ee11b3b9c8945948f0836c | resources/neurosky/FlashToJs/DisplayWindow.as | resources/neurosky/FlashToJs/DisplayWindow.as | package
{
import flash.display.*;
import flash.events.*;//for event handling
import flash.net.Socket;//Sockets
import flash.utils.*;
import flash.external.ExternalInterface;
import flash.system.*;
import com.adobe.serialization.json.*;//as3corelib JSON support
public class DisplayWindow extends Sprite
{
// P... | package
{
import flash.display.*;
import flash.events.*;//for event handling
import flash.net.Socket;//Sockets
import flash.utils.*;
import flash.external.ExternalInterface;
import flash.system.*;
import com.adobe.serialization.json.*;//as3corelib JSON support
public class DisplayWindow extends Sprite
{
// P... | send blink if > 0 | flash: send blink if > 0
| ActionScript | agpl-3.0 | MLstate/MindChat |
90123fa07051b8b346b720783a94c2d205457c02 | snowplow-as3-tracker/src/com/snowplowanalytics/snowplow/tracker/Tracker.as | snowplow-as3-tracker/src/com/snowplowanalytics/snowplow/tracker/Tracker.as | /*
* Copyright (c) 2015 Snowplow Analytics Ltd. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/lice... | /*
* Copyright (c) 2015 Snowplow Analytics Ltd. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/lice... | fix format of FLASH_STAGE_SIZE parameter | fix format of FLASH_STAGE_SIZE parameter
| ActionScript | apache-2.0 | snowplow/snowplow-actionscript3-tracker,snowplow/snowplow-actionscript3-tracker,snowplow/snowplow-actionscript3-tracker |
2bdfa43314325c64a106727c127ba940ced26f8e | com/segonquart/menuColourIdiomes.as | com/segonquart/menuColourIdiomes.as |
import mx.transitions.easing.*;
import com.mosesSupposes.fuse.*;
class menuColouridiomes extends MovieClip
{
public var cat, es, en ,fr:MovieClip;
public var arrayLang_arr:Array = new Array ("cat", "es", "en", "fr");
function menuColourIdiomes ():Void
{
this.onRollOver = th... | import mx.transitions.easing.*;
import com.mosesSupposes.fuse.*;
class menuColouridiomes extends MovieClip
{
public var cat, es, en ,fr:MovieClip;
public var arrayLang_arr:Array = new Array ("cat", "es", "en", "fr");
public function menuColourIdiomes ()
{
this.onRollOver = this.mOv... | Update menuColourIdiomes.as | Update menuColourIdiomes.as | ActionScript | bsd-3-clause | delfiramirez/web-talking-wear,delfiramirez/web-talking-wear,delfiramirez/web-talking-wear |
e9945296137102a4894fe9d2544ec56efe94d203 | frameworks/projects/mobiletheme/src/spark/skins/android4/TransparentNavigationButtonSkin.as | frameworks/projects/mobiletheme/src/spark/skins/android4/TransparentNavigationButtonSkin.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | Move to correct package | Move to correct package
| ActionScript | apache-2.0 | danteinforno/flex-sdk,adufilie/flex-sdk,apache/flex-sdk,adufilie/flex-sdk,adufilie/flex-sdk,adufilie/flex-sdk,shyamalschandra/flex-sdk,SlavaRa/flex-sdk,danteinforno/flex-sdk,apache/flex-sdk,shyamalschandra/flex-sdk,SlavaRa/flex-sdk,shyamalschandra/flex-sdk,shyamalschandra/flex-sdk,SlavaRa/flex-sdk,SlavaRa/flex-sdk,aduf... |
7340650a2b246eae4cd16ff5db39e9b22d35d0e6 | frameworks/as/projects/FlexJSUI/src/org/apache/flex/effects/PlatformWiper.as | frameworks/as/projects/FlexJSUI/src/org/apache/flex/effects/PlatformWiper.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | fix platform wiper | fix platform wiper
| ActionScript | apache-2.0 | greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs |
a5a19c72024722c06b91397bfa4b983830f5aede | dolly-framework/src/test/actionscript/dolly/ClonerTest.as | dolly-framework/src/test/actionscript/dolly/ClonerTest.as | package dolly {
import dolly.core.dolly_internal;
import org.as3commons.reflect.Field;
import org.as3commons.reflect.Type;
import org.flexunit.asserts.assertEquals;
import org.flexunit.asserts.assertNotNull;
use namespace dolly_internal;
public class ClonerTest {
private var classMarkedAsCloneable:ClassMarkedAsClo... | package dolly {
import dolly.core.dolly_internal;
import org.as3commons.reflect.Field;
import org.as3commons.reflect.Type;
import org.flexunit.asserts.assertEquals;
import org.flexunit.asserts.assertNotNull;
import org.flexunit.asserts.assertNull;
use namespace dolly_internal;
public class ClonerTest {
private var... | Add test method for cloning by using property-level metadata tags. | Add test method for cloning by using property-level metadata tags.
| ActionScript | mit | Yarovoy/dolly |
7a8f197585cd05fdb051038bf4b9aea858458480 | src/com/esri/builder/controllers/supportClasses/StartupWidgetTypeLoader.as | src/com/esri/builder/controllers/supportClasses/StartupWidgetTypeLoader.as | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | Clean code for registering widgets at startup. | Clean code for registering widgets at startup.
| ActionScript | apache-2.0 | Esri/arcgis-viewer-builder-flex |
4c418ec6aab3f054b156081675bb440133bbe852 | runtime/src/main/as/flump/display/Movie.as | runtime/src/main/as/flump/display/Movie.as | //
// Flump - Copyright 2012 Three Rings Design
package flump.display {
import flump.mold.MovieMold;
import starling.core.Starling;
import starling.display.DisplayObject;
import starling.display.Sprite;
import starling.events.Event;
public class Movie extends Sprite
{
public static const FRAMERATE :Number = 30;... | //
// Flump - Copyright 2012 Three Rings Design
package flump.display {
import flump.mold.MovieMold;
import starling.core.Starling;
import starling.display.DisplayObject;
import starling.display.Sprite;
import starling.events.Event;
public class Movie extends Sprite
{
public static const FRAMERATE :Number = 30;... | Fix _stopFrame logic | Fix _stopFrame logic | ActionScript | mit | tconkling/flump,mathieuanthoine/flump,mathieuanthoine/flump,funkypandagame/flump,tconkling/flump,funkypandagame/flump,mathieuanthoine/flump |
67f2726d7a6e75e9bfb0d3c5facc536a1fe37a33 | frameworks/projects/HTML/asjs/src/org/apache/flex/html/beads/layouts/OneFlexibleChildHorizontalLayout.as | frameworks/projects/HTML/asjs/src/org/apache/flex/html/beads/layouts/OneFlexibleChildHorizontalLayout.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | fix the calculation | fix the calculation
| ActionScript | apache-2.0 | greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs |
b3601158e825ad6289c9fc7bf4e0fef97658400c | frameworks/projects/HTML/as/src/org/apache/flex/html/beads/layouts/VerticalLayout.as | frameworks/projects/HTML/as/src/org/apache/flex/html/beads/layouts/VerticalLayout.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | fix margin handling | fix margin handling
| ActionScript | apache-2.0 | greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs |
a11b338156b7319cbb73b0a1c346137a739ced31 | src/as/com/threerings/util/EmbeddedSwfLoader.as | src/as/com/threerings/util/EmbeddedSwfLoader.as | //
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | //
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | Document something that doesn't work. | Document something that doesn't work.
git-svn-id: a1a4b28b82a3276cc491891159dd9963a0a72fae@4605 542714f4-19e9-0310-aa3c-eee0fc999fb1
| ActionScript | lgpl-2.1 | threerings/narya,threerings/narya,threerings/narya,threerings/narya,threerings/narya |
1083490e735abf3989b56d9cca49110e3ccf7dbf | src/as/com/threerings/util/StreamableHashMap.as | src/as/com/threerings/util/StreamableHashMap.as | //
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2009 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | //
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2009 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | Use newMapOf(). | Use newMapOf().
git-svn-id: a1a4b28b82a3276cc491891159dd9963a0a72fae@5929 542714f4-19e9-0310-aa3c-eee0fc999fb1
| ActionScript | lgpl-2.1 | threerings/narya,threerings/narya,threerings/narya,threerings/narya,threerings/narya |
cb0d947f3476e4f393543c380a7c36cb75f6c3ee | frameworks/projects/Graphics/as/src/org/apache/flex/core/graphics/LinearGradient.as | frameworks/projects/Graphics/as/src/org/apache/flex/core/graphics/LinearGradient.as | /**
* 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 applicable law or agreed to in writing, software
* distribu... | /**
* 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 applicable law or agreed to in writing, software
* distribu... | fix error | fix error
| ActionScript | apache-2.0 | greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs |
4d3708c1db17c0d4b9c9a2718db069e5a14643b0 | asunit-4.0/src/asunit/runners/TestRunner.as | asunit-4.0/src/asunit/runners/TestRunner.as | package asunit.runners {
import asunit.events.TimeoutCommandEvent;
import asunit.framework.Assert;
import asunit.framework.Async;
import asunit.framework.IResult;
import asunit.framework.Result;
import asunit.framework.IAsync;
import asunit.framework.IRunner;
import asunit.framework.IRunnerFactory;
import as... | package asunit.runners {
import asunit.events.TimeoutCommandEvent;
import asunit.framework.Assert;
import asunit.framework.Async;
import asunit.framework.IResult;
import asunit.framework.Result;
import asunit.framework.IAsync;
import asunit.framework.IRunner;
import asunit.framework.IRunnerFactory;
import as... | Call stacks for failures are now much shorter. Now using a while loop to iterate as far as possible before hitting async methods. | Call stacks for failures are now much shorter. Now using a while loop to iterate as far as possible before hitting async methods.
| ActionScript | mit | patternpark/asunit,robertpenner/asunit |
95d7bcb9951858c34a55ce7cea6b3d01c9d79a3a | src/aerys/minko/scene/node/Mesh.as | src/aerys/minko/scene/node/Mesh.as | package aerys.minko.scene.node
{
import aerys.minko.ns.minko_scene;
import aerys.minko.render.geometry.Geometry;
import aerys.minko.render.material.Material;
import aerys.minko.render.material.basic.BasicMaterial;
import aerys.minko.scene.controller.mesh.MeshController;
import aerys.minko.scene.controller.mesh.Me... | package aerys.minko.scene.node
{
import aerys.minko.ns.minko_scene;
import aerys.minko.render.geometry.Geometry;
import aerys.minko.render.material.Material;
import aerys.minko.render.material.basic.BasicMaterial;
import aerys.minko.scene.controller.mesh.MeshController;
import aerys.minko.scene.controller.mesh.Me... | fix Mesh.initializeMesh() to stop using static reference to a default material to avoid memory leak: by default Mesh will now have a null material if none is provided | fix Mesh.initializeMesh() to stop using static reference to a default material to avoid memory leak: by default Mesh will now have a null material if none is provided
| ActionScript | mit | aerys/minko-as3 |
88e782fda3d6fcfa72adce0b5c43638e9b7e12b9 | src/org/mangui/basic/Player.as | src/org/mangui/basic/Player.as | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.basic {
import org.mangui.hls.HLS;
import org.mangui.hls.event.HLSEvent;
import fl... | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.basic {
import org.mangui.hls.HLS;
import org.mangui.hls.event.HLSEvent;
import fla... | update basic/Player.as and set stage | update basic/Player.as and set stage
| ActionScript | mpl-2.0 | viktorot/flashls,tedconf/flashls,suuhas/flashls,Peer5/flashls,Peer5/flashls,Peer5/flashls,Corey600/flashls,hola/flashls,vidible/vdb-flashls,aevange/flashls,codex-corp/flashls,viktorot/flashls,aevange/flashls,jlacivita/flashls,Boxie5/flashls,suuhas/flashls,mangui/flashls,jlacivita/flashls,JulianPena/flashls,suuhas/flash... |
6a26246146ce90d7d9f5fbd2616796bca7241dd6 | assets/scripts/test.as | assets/scripts/test.as | #include "../assets/scripts/entities/camera.as"
#include "../assets/scripts/entities/dummy.as"
#include "../assets/scripts/entities/directional_light.as"
#include "../assets/scripts/entities/light.as"
#include "../assets/scripts/entities/player.as"
#include "../assets/scripts/entities/plane.as"
void main() {
camer... | #include "../assets/scripts/entities/camera.as"
#include "../assets/scripts/entities/dummy.as"
#include "../assets/scripts/entities/directional_light.as"
#include "../assets/scripts/entities/light.as"
#include "../assets/scripts/entities/player.as"
#include "../assets/scripts/entities/plane.as"
void main() {
camer... | set player id in test.as | set player id in test.as
| ActionScript | mit | kasoki/project-zombye,kasoki/project-zombye,kasoki/project-zombye |
c7f8a2dda1f37498b1c644248a22553bd21b6ae9 | frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/beads/layouts/LayoutChangeNotifier.as | frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/beads/layouts/LayoutChangeNotifier.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | handle being a bead on a component as well as a view | handle being a bead on a component as well as a view
| ActionScript | apache-2.0 | greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs |
a9871ce84d6488175a26b9c0352f05ec6074b536 | frameworks/projects/mobiletheme/src/spark/skins/mobile/supportClasses/ActionBarButtonSkinBase.as | frameworks/projects/mobiletheme/src/spark/skins/mobile/supportClasses/ActionBarButtonSkinBase.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | Fix for https://issues.apache.org/jira/browse/FLEX-34189 | Fix for https://issues.apache.org/jira/browse/FLEX-34189
| ActionScript | apache-2.0 | danteinforno/flex-sdk,SlavaRa/flex-sdk,adufilie/flex-sdk,danteinforno/flex-sdk,apache/flex-sdk,apache/flex-sdk,shyamalschandra/flex-sdk,apache/flex-sdk,shyamalschandra/flex-sdk,SlavaRa/flex-sdk,danteinforno/flex-sdk,apache/flex-sdk,apache/flex-sdk,adufilie/flex-sdk,SlavaRa/flex-sdk,adufilie/flex-sdk,danteinforno/flex-s... |
5db2c020ad380f7d0aa644e41b430ae0ba8aeab1 | as25/src/asunit/framework/TestCase.as | as25/src/asunit/framework/TestCase.as | import asunit.flash.utils.Timer;
import asunit.errors.ClassNameUndefinedError;
import asunit.util.ArrayUtil;
import asunit.framework.AsyncOperation;
import asunit.framework.TestResult;
import asunit.framework.TestListener;
import asunit.framework.Test;
import asunit.framework.Assert;
import asunit.flash.errors.Ille... | import asunit.flash.utils.Timer;
import asunit.errors.ClassNameUndefinedError;
import asunit.util.ArrayUtil;
import asunit.framework.AsyncOperation;
import asunit.framework.TestResult;
import asunit.framework.TestListener;
import asunit.framework.Test;
import asunit.framework.Assert;
import asunit.flash.errors.Ille... | Change failure to add 'className' to a test case from a sielent error to a traced warning | Change failure to add 'className' to a test case from a sielent error to a traced warning
| ActionScript | mit | patternpark/asunit,lukebayes/asunit,robertpenner/asunit |
616f18546c777108dd2b7b39d2e4f524bbfd42c1 | src/as/com/threerings/util/NetUtil.as | src/as/com/threerings/util/NetUtil.as | package com.threerings.util {
import flash.net.URLRequest;
//import flash.net.navigateToURL; // function import
public class NetUtil
{
/**
* Convenience method to load a web page in the browser window without
* having to worry about SecurityErrors in various conditions.
*/
public static functio... | package com.threerings.util {
import flash.net.URLRequest;
//import flash.net.navigateToURL; // function import
public class NetUtil
{
/**
* Convenience method to load a web page in the browser window without
* having to worry about SecurityErrors in various conditions.
*
* @return true if the... | Return true if we succeeded. | Return true if we succeeded.
git-svn-id: a1a4b28b82a3276cc491891159dd9963a0a72fae@4462 542714f4-19e9-0310-aa3c-eee0fc999fb1
| ActionScript | lgpl-2.1 | threerings/narya,threerings/narya,threerings/narya,threerings/narya,threerings/narya |
347ea4b58b3aef60c59e074375a40aa421b7efe8 | FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as | FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as | /**
* Copyright (c) 2009 Digital Primates IT Consulting Group
*
* 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,
*... | /**
* Copyright (c) 2009 Digital Primates IT Consulting Group
*
* 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,
*... | Fix to CIListener to use double quotes and correct spacing for result XML. Re-fixed from the pull from mlabriola. | Fix to CIListener to use double quotes and correct spacing for result XML. Re-fixed from the pull from mlabriola.
| ActionScript | apache-2.0 | SlavaRa/flex-flexunit,apache/flex-flexunit,SlavaRa/flex-flexunit,apache/flex-flexunit,SlavaRa/flex-flexunit,apache/flex-flexunit,apache/flex-flexunit,SlavaRa/flex-flexunit |
a47e3c32b9e0f3f555be533f0594814bc7a3e69f | src/flash/events/EventDispatcher.as | src/flash/events/EventDispatcher.as | /*
* Copyright 2014 Mozilla Foundation
*
* 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 applicable law or agr... | /*
* Copyright 2014 Mozilla Foundation
*
* 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 applicable law or agr... | Fix EventDispatcher#toString | Fix EventDispatcher#toString
| ActionScript | apache-2.0 | yurydelendik/shumway,mbebenita/shumway,mozilla/shumway,yurydelendik/shumway,mbebenita/shumway,tschneidereit/shumway,mbebenita/shumway,tschneidereit/shumway,mozilla/shumway,mozilla/shumway,yurydelendik/shumway,yurydelendik/shumway,mbebenita/shumway,tschneidereit/shumway,mozilla/shumway,mbebenita/shumway,tschneidereit/sh... |
57ca0a32a04070175613a7b78a9ac5c91345e852 | src/com/axis/rtspclient/BitArray.as | src/com/axis/rtspclient/BitArray.as | package com.axis.rtspclient {
import com.axis.ErrorManager;
import flash.utils.ByteArray;
public class BitArray extends ByteArray {
private var src:ByteArray;
private var byte:uint;
private var bitpos:uint;
public function BitArray(src:ByteArray) {
this.src = src;
this.bitpos = 0... | package com.axis.rtspclient {
import com.axis.ErrorManager;
import flash.utils.ByteArray;
public class BitArray extends ByteArray {
private var src:ByteArray;
private var byte:uint;
private var bitpos:uint;
public function BitArray(src:ByteArray) {
this.src = clone(src);
this.bitpos... | Clone ByteArray in BitArray class to avoid side effects | Clone ByteArray in BitArray class to avoid side effects
| ActionScript | bsd-3-clause | gaetancollaud/locomote-video-player,AxisCommunications/locomote-video-player |
7edeabe9031dd4a6ef09236be2917b8adfb28dd9 | src/swf2png.as | src/swf2png.as | package
{
import com.adobe.images.PNGEncoder;
import com.bit101.components.ScrollPane;
import flash.desktop.NativeApplication;
import flash.display.BitmapData;
import flash.display.Loader;
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.InvokeEvent;... | package
{
import com.adobe.images.PNGEncoder;
import com.bit101.components.ScrollPane;
import flash.desktop.NativeApplication;
import flash.display.BitmapData;
import flash.display.Loader;
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.InvokeEvent;... | Remove support for bounding box detection. | Remove support for bounding box detection.
| ActionScript | mit | mdahlstrand/swf2png |
d04ae24b2dc2ac1cdc27edeabd50af74c182cadf | doc/tutorials/examples/actionscript/guestbook/flex/src/org/pyamf/examples/guestbook/GuestbookExample.as | doc/tutorials/examples/actionscript/guestbook/flex/src/org/pyamf/examples/guestbook/GuestbookExample.as | package org.pyamf.examples.guestbook
{
/**
* Copyright (c) 2007-2009 The PyAMF Project.
* See LICENSE.txt for details.
*/
import flash.events.NetStatusEvent;
import flash.events.SecurityErrorEvent;
import flash.net.NetConnection;
import flash.net.Responder;
import mx.collections.ArrayCollection;
import m... | package org.pyamf.examples.guestbook
{
/**
* Copyright (c) 2007-2009 The PyAMF Project.
* See LICENSE.txt for details.
*/
import flash.events.NetStatusEvent;
import flash.events.SecurityErrorEvent;
import flash.net.NetConnection;
import flash.net.Responder;
import mx.collections.ArrayCollection;
import m... | fix compile error for missing import | fix compile error for missing import
| ActionScript | mit | njoyce/pyamf,njoyce/pyamf,thijstriemstra/pyamf,hydralabs/pyamf,thijstriemstra/pyamf,hydralabs/pyamf |
b9cdb00e100c1cd2dad55f0c199946eaf1ca5a0c | src/flash/display/DisplayObject.as | src/flash/display/DisplayObject.as | package flash.display {
import flash.events.EventDispatcher;
import flash.display.IBitmapDrawable;
import String;
import flash.accessibility.AccessibilityProperties;
import flash.geom.Point;
import Object;
import flash.display.LoaderInfo;
import flash.geom.Rectangle;
import Array;
import flash.displ... | /*
* Copyright 2014 Mozilla Foundation
*
* 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 applicable law or agr... | Implement as3 part of DisplayObject | Implement as3 part of DisplayObject
| ActionScript | apache-2.0 | tschneidereit/shumway,mozilla/shumway,yurydelendik/shumway,mbebenita/shumway,mbebenita/shumway,mbebenita/shumway,mozilla/shumway,mozilla/shumway,yurydelendik/shumway,mozilla/shumway,yurydelendik/shumway,mbebenita/shumway,yurydelendik/shumway,tschneidereit/shumway,mozilla/shumway,mbebenita/shumway,mbebenita/shumway,tsch... |
97a6e7db18fbbeae2e794b42544bd02be3664315 | runtime/src/main/as/flump/display/LibraryLoader.as | runtime/src/main/as/flump/display/LibraryLoader.as | //
// Flump - Copyright 2012 Three Rings Design
package flump.display {
import flash.utils.ByteArray;
import flump.executor.Executor;
import flump.executor.Future;
import starling.core.Starling;
/**
* Loads zip files created by the flump exporter and parses them into Library instances.
*/
public class LibraryLoa... | //
// Flump - Copyright 2012 Three Rings Design
package flump.display {
import flash.utils.ByteArray;
import flump.executor.Executor;
import flump.executor.Future;
import starling.core.Starling;
/**
* Loads zip files created by the flump exporter and parses them into Library instances.
*/
public class LibraryLoa... | Bump our data format version | Bump our data format version
| ActionScript | mit | mathieuanthoine/flump,funkypandagame/flump,tconkling/flump,mathieuanthoine/flump,mathieuanthoine/flump,tconkling/flump,funkypandagame/flump |
ece6a697b600638293b1ce90053ede693e1e0475 | src/com/google/analytics/GATracker.as | src/com/google/analytics/GATracker.as | /*
* 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... | /*
* 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... | remove idle timer instanciation | remove idle timer instanciation | ActionScript | apache-2.0 | jeremy-wischusen/gaforflash,dli-iclinic/gaforflash,dli-iclinic/gaforflash,jisobkim/gaforflash,soumavachakraborty/gaforflash,soumavachakraborty/gaforflash,drflash/gaforflash,DimaBaliakin/gaforflash,DimaBaliakin/gaforflash,Vigmar/gaforflash,jisobkim/gaforflash,Miyaru/gaforflash,Miyaru/gaforflash,jeremy-wischusen/gaforfla... |
9128a0ccca591e26d1f215a0e893375872b6520d | src/battlecode/client/viewer/render/DrawRobot.as | src/battlecode/client/viewer/render/DrawRobot.as | package battlecode.client.viewer.render {
import battlecode.common.ActionType;
import battlecode.common.Direction;
import battlecode.common.GameConstants;
import battlecode.common.MapLocation;
import battlecode.common.RobotType;
import battlecode.common.Team;
import battlecode.events... | package battlecode.client.viewer.render {
import battlecode.common.ActionType;
import battlecode.common.Direction;
import battlecode.common.GameConstants;
import battlecode.common.MapLocation;
import battlecode.common.RobotType;
import battlecode.common.Team;
import battlecode.events... | fix attack animation for non-moving units | fix attack animation for non-moving units
| ActionScript | mit | trun/battlecode-webclient |
10e7a405b912d5ea3977986afc361b37f95f3a38 | src/NetConnectionPolyfill.as | src/NetConnectionPolyfill.as | package {
import flash.display.Sprite;
import flash.system.Security;
import flash.net.NetConnection;
import flash.external.ExternalInterface;
import flash.events.Event;
import flash.events.AsyncErrorEvent
import flash.events.NetStatusEvent;
import flash.events.SecurityErrorEvent;
imp... | package {
import flash.display.Sprite;
import flash.system.Security;
import flash.net.NetConnection;
import flash.net.Responder;
import flash.external.ExternalInterface;
import flash.events.Event;
import flash.events.AsyncErrorEvent
import flash.events.NetStatusEvent;
import flash.ev... | Implement call responder | feat(call): Implement call responder
Create a new Responder when call method is invoked. The responder will call external interface with either the result or an error.
NetConnection-polyfill should implement the static method "onClientCallResult" which will receive the result of a call invoke.
| ActionScript | mit | cladera/netconnection-polyfill-swf |
894adaeac00bc31c847d85f279d872886a32751e | test/trace/values.as | test/trace/values.as | // This ActionScript file defines a list of values that are considered
// important for checking various ActionScript operations.
// It defines 2 variables:
// - "values": The array of values to be checked
// - "names": The array of corresponding string representations for values.
// It's suggested to use t... | // This ActionScript file defines a list of values that are considered
// important for checking various ActionScript operations.
// It defines 2 variables:
// - "values": The array of values to be checked
// - "names": The array of corresponding string representations for values.
// It's suggested to use t... | Rename valueof and tostring to printvalueof and printtostring in values.as | Rename valueof and tostring to printvalueof and printtostring in values.as
To avoid non-determinism with having multiple variables using different case
| ActionScript | lgpl-2.1 | mltframework/swfdec,mltframework/swfdec,freedesktop-unofficial-mirror/swfdec__swfdec,freedesktop-unofficial-mirror/swfdec__swfdec,freedesktop-unofficial-mirror/swfdec__swfdec |
a57cf57ca5dc801f8509c0643ae510af3d560237 | kdp3Lib/src/com/kaltura/kdpfl/ApplicationFacade.as | kdp3Lib/src/com/kaltura/kdpfl/ApplicationFacade.as | package com.kaltura.kdpfl
{
import com.kaltura.kdpfl.controller.InitMacroCommand;
import com.kaltura.kdpfl.controller.LayoutReadyCommand;
import com.kaltura.kdpfl.controller.PlaybackCompleteCommand;
import com.kaltura.kdpfl.controller.SequenceItemPlayEndCommand;
import com.kaltura.kdpfl.controller.SequenceSk... | package com.kaltura.kdpfl
{
import com.kaltura.kdpfl.controller.InitMacroCommand;
import com.kaltura.kdpfl.controller.LayoutReadyCommand;
import com.kaltura.kdpfl.controller.PlaybackCompleteCommand;
import com.kaltura.kdpfl.controller.SequenceItemPlayEndCommand;
import com.kaltura.kdpfl.controller.SequenceSk... | update kdp version to v3.6.18 | update kdp version to v3.6.18 | ActionScript | agpl-3.0 | shvyrev/kdp,shvyrev/kdp,shvyrev/kdp,kaltura/kdp,kaltura/kdp,kaltura/kdp |
a3ae11ba88aec10c901f817e40744396950006b3 | frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/CSSTextField.as | frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/CSSTextField.as | ////////////////////////////////////////////////////////////////////////////////
//
// 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... | handle text-align | handle text-align
| ActionScript | apache-2.0 | greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs,greg-dove/flex-asjs |
be2d398d73fe1d6245324cbc23c1ed6d9dadcbf2 | src/com/esri/builder/controllers/LocaleController.as | src/com/esri/builder/controllers/LocaleController.as | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | Sort widget modules on locale change. | Sort widget modules on locale change.
| ActionScript | apache-2.0 | Esri/arcgis-viewer-builder-flex |
a998df04a91cca823d6377d1b7f1eb7e3422a05b | as3/com/netease/protobuf/WriteUtils.as | as3/com/netease/protobuf/WriteUtils.as | // vim: tabstop=4 shiftwidth=4
// Copyright (c) 2010 , 杨博 (Yang Bo) All rights reserved.
//
// pop.atry@gmail.com
//
// Use, modification and distribution are subject to the "New BSD License"
// as listed at <url: http://www.opensource.org/licenses/bsd-license.php >.
package com.netease.protobuf {
import fla... | // vim: tabstop=4 shiftwidth=4
// Copyright (c) 2010 , 杨博 (Yang Bo) All rights reserved.
//
// pop.atry@gmail.com
//
// Use, modification and distribution are subject to the "New BSD License"
// as listed at <url: http://www.opensource.org/licenses/bsd-license.php >.
package com.netease.protobuf {
import fla... | 修复发送字符串时多发了前缀的 bug | 修复发送字符串时多发了前缀的 bug
| ActionScript | bsd-2-clause | tconkling/protoc-gen-as3 |
586ebae57e6e1e63bf677dc531de78eaa85b34b2 | src/aerys/minko/render/resource/Context3DResource.as | src/aerys/minko/render/resource/Context3DResource.as | package aerys.minko.render.resource
{
import flash.display.BitmapData;
import flash.display3D.Context3D;
import flash.display3D.IndexBuffer3D;
import flash.display3D.Program3D;
import flash.display3D.VertexBuffer3D;
import flash.display3D.textures.CubeTexture;
import flash.display3D.textures.Texture;
import fla... | package aerys.minko.render.resource
{
import flash.display.BitmapData;
import flash.display3D.Context3D;
import flash.display3D.IndexBuffer3D;
import flash.display3D.Program3D;
import flash.display3D.VertexBuffer3D;
import flash.display3D.textures.CubeTexture;
import flash.display3D.textures.Texture;
import fla... | handle stencil related GPU render states properly | handle stencil related GPU render states properly
| ActionScript | mit | aerys/minko-as3 |
bc2a09042d3cb8fc016144675ae518e91e34f7f8 | src/aerys/minko/type/xpath/XPathEvaluator.as | src/aerys/minko/type/xpath/XPathEvaluator.as | package aerys.minko.type.xpath
{
import aerys.minko.scene.node.Group;
import aerys.minko.scene.node.ISceneNode;
import aerys.minko.type.binding.DataBindings;
import flash.utils.getQualifiedClassName;
public final class XPathEvaluator
{
private var _path : String;
private var _selection : Vector.<ISceneN... | package aerys.minko.type.xpath
{
import aerys.minko.scene.node.Group;
import aerys.minko.scene.node.ISceneNode;
import aerys.minko.type.binding.DataBindings;
import flash.utils.getQualifiedClassName;
public final class XPathEvaluator
{
private var _path : String;
private var _selection : Vector.<ISceneN... | Fix xpath for hasProperty command | Fix xpath for hasProperty command
| ActionScript | mit | aerys/minko-as3 |
e14212f5b4ba164d5301aba93b7f64e4e9142aad | src/as/com/threerings/flex/FlexUtil.as | src/as/com/threerings/flex/FlexUtil.as | //
// $Id$
//
// Nenya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/nenya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | //
// $Id$
//
// Nenya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/nenya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | Add a way to set the HTML text. Oh yeah, links don't work unless the field is selectable. WHY? Carbomb adobe. | Add a way to set the HTML text.
Oh yeah, links don't work unless the field is selectable. WHY?
Carbomb adobe.
git-svn-id: b675b909355d5cf946977f44a8ec5a6ceb3782e4@691 ed5b42cb-e716-0410-a449-f6a68f950b19
| ActionScript | lgpl-2.1 | threerings/nenya,threerings/nenya |
f3390bb91b942f4f23646d0f4453161795306f02 | fp10/src/as3isolib/display/IsoGroup.as | fp10/src/as3isolib/display/IsoGroup.as | /*
as3isolib - An open-source ActionScript 3.0 Isometric Library developed to assist
in creating isometrically projected content (such as games and graphics)
targeted for the Flash player platform
http://code.google.com/p/as3isolib/
Copyright (c) 2006 - 3000 J.W.Opitz, All Rights Reserved.
Permission is hereby gr... | /*
as3isolib - An open-source ActionScript 3.0 Isometric Library developed to assist
in creating isometrically projected content (such as games and graphics)
targeted for the Flash player platform
http://code.google.com/p/as3isolib/
Copyright (c) 2006 - 3000 J.W.Opitz, All Rights Reserved.
Permission is hereby gr... | fix for IsoGroup | fix for IsoGroup
| ActionScript | mit | liuju/as3isolib.v1,liuju/as3isolib.v1,dreamsxin/as3isolib.v1,as3isolib/as3isolib.v1,dreamsxin/as3isolib.v1,as3isolib/as3isolib.v1 |
35c75eeb005b15e218d8d7da82263fbaae6c94b9 | src/org/mangui/hls/stream/TagBuffer.as | src/org/mangui/hls/stream/TagBuffer.as | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls.stream {
import flash.events.TimerEvent;
import flash.events.Event;
import flash... | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls.stream {
import flash.events.TimerEvent;
import flash.events.Event;
import flash... | remove unused var | remove unused var
| ActionScript | mpl-2.0 | School-Improvement-Network/flashls,Boxie5/flashls,suuhas/flashls,aevange/flashls,loungelogic/flashls,suuhas/flashls,Peer5/flashls,codex-corp/flashls,aevange/flashls,clappr/flashls,Boxie5/flashls,jlacivita/flashls,Peer5/flashls,Peer5/flashls,Corey600/flashls,vidible/vdb-flashls,neilrackett/flashls,dighan/flashls,aevange... |
1378eafe69ff38d86314b1c4c6eae8fa71cd50b9 | Arguments/src/classes/Language.as | Arguments/src/classes/Language.as | package classes
{
/**
AGORA - an interactive and web-based argument mapping tool that stimulates reasoning,
reflection, critique, deliberation, and creativity in individual argument construction
and in collaborative or adversarial settings.
Copyright (C) 2011 Georgia Institute of Technology
This progra... | package classes
{
/**
AGORA - an interactive and web-based argument mapping tool that stimulates reasoning,
reflection, critique, deliberation, and creativity in individual argument construction
and in collaborative or adversarial settings.
Copyright (C) 2011 Georgia Institute of Technology
This progra... | Change current language to German | Change current language to German
| ActionScript | agpl-3.0 | mbjornas3/AGORA,MichaelHoffmann/AGORA,MichaelHoffmann/AGORA,mbjornas3/AGORA,MichaelHoffmann/AGORA |
57c300b2df3ed3d11d23f1adef1931f7b61984da | src/MultipartTest.as | src/MultipartTest.as | package
{
import com.jonas.net.Multipart;
import flash.display.Bitmap;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.text.Text... | package
{
import com.jonas.net.Multipart;
import flash.display.Bitmap;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.text.Text... | change mime type | change mime type
| ActionScript | apache-2.0 | jimojon/Multipart.as |
3695510904e7cc3ff42aeb3ba96d2379d6b02f5c | utils/gcClasses.as | utils/gcClasses.as | /* -*- indent-tabs-mode: nil; tab-width: 4 -*- */
/* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not u... | /* -*- indent-tabs-mode: nil; tab-width: 4 -*- */
/* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not u... | Update the gcClasses script to handle multiple definitions, out-of-tree definitions, and to filter trivial destructors and non-destructors (r=lhansen) | Update the gcClasses script to handle multiple definitions, out-of-tree definitions, and to filter trivial destructors and non-destructors (r=lhansen)
| ActionScript | mpl-2.0 | pfgenyun/tamarin-redux,pfgenyun/tamarin-redux,pnkfelix/tamarin-redux,pfgenyun/tamarin-redux,pfgenyun/tamarin-redux,pnkfelix/tamarin-redux,pnkfelix/tamarin-redux,pfgenyun/tamarin-redux,pnkfelix/tamarin-redux,pfgenyun/tamarin-redux,pnkfelix/tamarin-redux,pfgenyun/tamarin-redux,pnkfelix/tamarin-redux,pfgenyun/tamarin-redu... |
9ac5f652dbf2c7aa3828eb5ad9f15a11fef4cb25 | src/com/google/analytics/GATracker.as | src/com/google/analytics/GATracker.as | /*
* 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... | /*
* 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... | Fix GATracker import | Fix GATracker import | ActionScript | apache-2.0 | minimedj/gaforflash,soumavachakraborty/gaforflash,DimaBaliakin/gaforflash,jeremy-wischusen/gaforflash,drflash/gaforflash,mrthuanvn/gaforflash,dli-iclinic/gaforflash,soumavachakraborty/gaforflash,Vigmar/gaforflash,mrthuanvn/gaforflash,Miyaru/gaforflash,drflash/gaforflash,Miyaru/gaforflash,jeremy-wischusen/gaforflash,min... |
46e54f2e89bcf81b9137cdba219d7322ee7055ad | vivified/core/vivi_initialize.as | vivified/core/vivi_initialize.as | /* Vivified
* Copyright (C) 2007 Benjamin Otte <otte@gnome.org>
*
* This library 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 Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later ... | /* Vivified
* Copyright (C) 2007 Benjamin Otte <otte@gnome.org>
*
* This library 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 Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later ... | add backtrace function | add backtrace function
| ActionScript | lgpl-2.1 | mltframework/swfdec,freedesktop-unofficial-mirror/swfdec__swfdec,mltframework/swfdec,freedesktop-unofficial-mirror/swfdec__swfdec,freedesktop-unofficial-mirror/swfdec__swfdec |
49c88f498aeafb0dac7cd90a7aff1b91a157b87b | example/ExampleApp.as | example/ExampleApp.as | /*
* An exmaple app for Twitter for AS3
*
* copyright (c) 2015 Susisu
*/
package
{
import flash.display.Sprite;
import flash.events.MouseEvent;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.net.navigateToURL;
import flash.net.URLRequest;
import isle.su... | /*
* An exmaple app for Twitter for AS3
*
* copyright (c) 2015 Susisu
*/
package
{
import flash.display.Sprite;
import flash.events.MouseEvent;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.net.navigateToURL;
import flash.net.URLRequest;
import isle.su... | Fix missing preventDefault() for error events | Fix missing preventDefault() for error events
| ActionScript | mit | susisu/Twitter-for-AS3 |
7db39eb9957bc3f2e071c1c03c764bdf8ad46350 | src/goplayer/SkinPlayerView.as | src/goplayer/SkinPlayerView.as | package goplayer
{
import flash.display.DisplayObject
import flash.display.DisplayObjectContainer
import flash.display.Sprite
import flash.text.TextField
import flash.events.MouseEvent
import flash.utils.getQualifiedClassName
import flash.utils.describeType
public class SkinPlayerView extends Resizable... | package goplayer
{
import flash.display.DisplayObject
import flash.display.DisplayObjectContainer
import flash.display.Sprite
import flash.text.TextField
import flash.events.MouseEvent
import flash.utils.getQualifiedClassName
import flash.utils.describeType
public class SkinPlayerView extends Resizable... | Hide the skin while it is being initialized. | Hide the skin while it is being initialized.
| ActionScript | mit | dbrock/goplayer,dbrock/goplayer |
97640c9700d4e3272e1d13de67f02f72e0f22a2c | src/org/igniterealtime/xiff/core/XMPPBOSHConnection.as | src/org/igniterealtime/xiff/core/XMPPBOSHConnection.as | /*
* License
*/
package org.igniterealtime.xiff.core
{
import flash.events.TimerEvent;
import flash.utils.ByteArray;
import flash.utils.Timer;
import flash.xml.XMLDocument;
import flash.xml.XMLNode;
import mx.logging.ILogger;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
import mx.rpc.h... | /*
* License
*/
package org.igniterealtime.xiff.core
{
import flash.events.*;
import flash.net.*;
import flash.utils.ByteArray;
import flash.utils.Timer;
import flash.xml.XMLDocument;
import flash.xml.XMLNode;
import mx.logging.ILogger;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
imp... | Rewrite work in progress... | Rewrite work in progress...
| ActionScript | apache-2.0 | igniterealtime/XIFF |
7f382df453b084eeb581b21e78385101c84f2513 | exporter/src/main/as/flump/xfl/XflLibrary.as | exporter/src/main/as/flump/xfl/XflLibrary.as | //
// Flump - Copyright 2013 Flump Authors
package flump.xfl {
import com.adobe.crypto.MD5;
import com.threerings.util.Log;
import com.threerings.util.Map;
import com.threerings.util.Maps;
import com.threerings.util.Set;
import com.threerings.util.Sets;
import com.threerings.util.XmlUtil;
import flash.filesystem.Fil... | //
// Flump - Copyright 2013 Flump Authors
package flump.xfl {
import com.adobe.crypto.MD5;
import com.threerings.util.Log;
import com.threerings.util.Map;
import com.threerings.util.Maps;
import com.threerings.util.Set;
import com.threerings.util.Sets;
import com.threerings.util.XmlUtil;
import flash.filesystem.Fil... | remove unused variable | remove unused variable | ActionScript | mit | mathieuanthoine/flump,tconkling/flump,mathieuanthoine/flump,mathieuanthoine/flump,funkypandagame/flump,funkypandagame/flump,tconkling/flump |
7a589c14d68d97d31591193f099e28f1ad3cc6e8 | src/org/jivesoftware/xiff/core/XMPPSocketConnection.as | src/org/jivesoftware/xiff/core/XMPPSocketConnection.as | /*
* Copyright (C) 2003-2007
* Nick Velloff <nick.velloff@gmail.com>
* Derrick Grigg <dgrigg@rogers.com>
* Sean Voisen <sean@voisen.org>
* Sean Treadway <seant@oncotype.dk>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*... | /*
* Copyright (C) 2003-2007
* Nick Velloff <nick.velloff@gmail.com>
* Derrick Grigg <dgrigg@rogers.com>
* Sean Voisen <sean@voisen.org>
* Sean Treadway <seant@oncotype.dk>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*... | Allow XMPPSocketConnection to handle the stream:features packet. | Allow XMPPSocketConnection to handle the stream:features packet.
git-svn-id: c197267f952b24206666de142881703007ca05d5@10749 b35dd754-fafc-0310-a699-88a17e54d16e
| ActionScript | apache-2.0 | nazoking/xiff |
57b77ce01ce29567005e2a05490f9faaf25d02c3 | swfcat.as | swfcat.as | package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.net.Socket;
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.events.ProgressEv... | package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.net.Socket;
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.events.ProgressEv... | Add a RateUnlimit implementation of RateLimit. | Add a RateUnlimit implementation of RateLimit.
| ActionScript | mit | glamrock/flashproxy,arlolra/flashproxy,infinity0/flashproxy,glamrock/flashproxy,arlolra/flashproxy,arlolra/flashproxy,glamrock/flashproxy,arlolra/flashproxy,glamrock/flashproxy,infinity0/flashproxy,arlolra/flashproxy,infinity0/flashproxy,arlolra/flashproxy,glamrock/flashproxy,glamrock/flashproxy,infinity0/flashproxy,in... |
a28e541d4d824c1650f1a2d374b543dd9fa7ba0d | src/org/mangui/hls/stream/HLSNetStream.as | src/org/mangui/hls/stream/HLSNetStream.as | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls.stream {
import org.mangui.hls.controller.BufferThresholdController;
import org.mang... | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls.stream {
import org.mangui.hls.controller.BufferThresholdController;
import org.mang... | remove useless assignement | remove useless assignement
| ActionScript | mpl-2.0 | aevange/flashls,neilrackett/flashls,aevange/flashls,JulianPena/flashls,dighan/flashls,aevange/flashls,Boxie5/flashls,dighan/flashls,suuhas/flashls,thdtjsdn/flashls,vidible/vdb-flashls,neilrackett/flashls,Peer5/flashls,suuhas/flashls,jlacivita/flashls,Corey600/flashls,Corey600/flashls,aevange/flashls,loungelogic/flashls... |
19e372c1f2d8d867155c125d6386c7ce825181ef | src/com/merlinds/miracle_tool/views/alerts/AlertView.as | src/com/merlinds/miracle_tool/views/alerts/AlertView.as | /**
* User: MerlinDS
* Date: 12.07.2014
* Time: 21:38
*/
package com.merlinds.miracle_tool.views.alerts {
import com.merlinds.miracle_tool.view.interfaces.IResizable;
import com.merlinds.miracle_tool.views.components.containers.DialogWindow;
import flash.display.DisplayObject;
import flash.display.DisplayObje... | /**
* User: MerlinDS
* Date: 12.07.2014
* Time: 21:38
*/
package com.merlinds.miracle_tool.views.alerts {
import com.merlinds.miracle_tool.view.interfaces.IResizable;
import com.merlinds.miracle_tool.views.components.containers.DialogWindow;
import flash.display.DisplayObject;
import flash.display.DisplayObje... | Create dialog fix | Create dialog fix
| ActionScript | mit | MerlinDS/miracle_tool |
0ef4b6cf190d01f9f3fd450d9bb4468492fcef74 | driver/src/main/flex/org/postgresql/febe/MessageStream.as | driver/src/main/flex/org/postgresql/febe/MessageStream.as | package org.postgresql.febe {
import flash.events.EventDispatcher;
import org.postgresql.febe.message.AuthenticationRequest;
import org.postgresql.febe.message.BackendKeyData;
import org.postgresql.febe.message.Bind;
import org.postgresql.febe.message.BindComplete;
import org.postgresql.febe.mes... | package org.postgresql.febe {
import flash.events.EventDispatcher;
import org.postgresql.febe.message.AuthenticationRequest;
import org.postgresql.febe.message.BackendKeyData;
import org.postgresql.febe.message.Bind;
import org.postgresql.febe.message.BindComplete;
import org.postgresql.febe.mes... | Fix reading of 0-payload-length backend messages; additional debugging. | Fix reading of 0-payload-length backend messages; additional debugging.
| ActionScript | bsd-3-clause | uhoh-itsmaciek/pegasus |
cc08295071fcdde27a97c28937398176503baf2b | Arguments/src/Controller/logic/ModusTollens.as | Arguments/src/Controller/logic/ModusTollens.as | package Controller.logic
{
import Controller.ArgumentController;
import Model.AGORAModel;
import Model.ArgumentTypeModel;
import Model.StatementModel;
import ValueObjects.AGORAParameters;
import components.ArgSelector;
import components.ArgumentPanel;
import components.MenuPanel;
import cl... | package Controller.logic
{
import Controller.ArgumentController;
import Model.AGORAModel;
import Model.ArgumentTypeModel;
import Model.StatementModel;
import ValueObjects.AGORAParameters;
import components.ArgSelector;
import components.ArgumentPanel;
import components.MenuPanel;
import cl... | Add help text to MT | Add help text to MT
| ActionScript | agpl-3.0 | mbjornas3/AGORA,MichaelHoffmann/AGORA,MichaelHoffmann/AGORA,MichaelHoffmann/AGORA,mbjornas3/AGORA |
825b869f69764db52959cdf544dd72c032139edd | src/org/mangui/hls/controller/BufferThresholdController.as | src/org/mangui/hls/controller/BufferThresholdController.as | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls.controller {
import org.mangui.hls.constant.HLSLoaderTypes;
import org.mangui.hls.ev... | /* 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 http://mozilla.org/MPL/2.0/. */
package org.mangui.hls.controller {
import org.mangui.hls.constant.HLSLoaderTypes;
import org.mangui.hls.ev... | optimize fixed length vector instantiation | optimize fixed length vector instantiation
| ActionScript | mpl-2.0 | Boxie5/flashls,NicolasSiver/flashls,vidible/vdb-flashls,hola/flashls,Peer5/flashls,loungelogic/flashls,tedconf/flashls,mangui/flashls,jlacivita/flashls,Peer5/flashls,loungelogic/flashls,fixedmachine/flashls,codex-corp/flashls,thdtjsdn/flashls,fixedmachine/flashls,neilrackett/flashls,mangui/flashls,dighan/flashls,Peer5/... |
f18bacccf5e9c5a9f1b495e6cddc822eb1866d9e | tamarin-central/thane/as3src/flash/utils/typeFunctions.as | tamarin-central/thane/as3src/flash/utils/typeFunctions.as | //
// $Id$
//
// Thane - an enhancement of Mozilla/Adobe's Tamarin project with partial Flash Player compatibility
// Copyright (C) 2008-2009 Three Rings Design, Inc.
//
// Redistribution and use in source and binary forms, with or without modification, are permitted
// provided that the following conditions are met:
/... | //
// $Id$
//
// Thane - an enhancement of Mozilla/Adobe's Tamarin project with partial Flash Player compatibility
// Copyright (C) 2008-2009 Three Rings Design, Inc.
//
// Redistribution and use in source and binary forms, with or without modification, are permitted
// provided that the following conditions are met:
/... | Use the new fancy describeType() implementation in Tamarin. It's hopefully functionally identical to the one in the client. This probably obsoletes the Thane/Client environment fiddling we do in Narya. | Use the new fancy describeType() implementation in Tamarin. It's hopefully functionally identical to the one in the client. This probably obsoletes the Thane/Client environment fiddling we do in Narya.
| ActionScript | bsd-2-clause | greyhavens/thane,greyhavens/thane,greyhavens/thane,greyhavens/thane,greyhavens/thane,greyhavens/thane,greyhavens/thane |
ff8315900e3e9a4748cf5430556fc4c894adbe84 | src/flash/net/NetStreamMulticastInfo.as | src/flash/net/NetStreamMulticastInfo.as | /*
* Copyright 2014 Mozilla Foundation
*
* 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 applicable law or agr... | /*
* Copyright 2014 Mozilla Foundation
*
* 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 applicable law or agr... | Implement NetStreamMulticastInfo#toString | Implement NetStreamMulticastInfo#toString
And reformat the file
| ActionScript | apache-2.0 | yurydelendik/shumway,yurydelendik/shumway,mbebenita/shumway,mozilla/shumway,tschneidereit/shumway,yurydelendik/shumway,mbebenita/shumway,mozilla/shumway,mozilla/shumway,mozilla/shumway,tschneidereit/shumway,yurydelendik/shumway,yurydelendik/shumway,yurydelendik/shumway,tschneidereit/shumway,mozilla/shumway,mozilla/shum... |
6229d429b513a5f6ff83e2b9f3aca3ee9a9a710d | src/org/mangui/flowplayer/HLSProvider.as | src/org/mangui/flowplayer/HLSProvider.as | package org.mangui.flowplayer {
import flash.display.DisplayObject;
import flash.net.NetConnection;
import flash.net.NetStream;
import flash.utils.Dictionary;
import flash.media.Video;
import org.mangui.HLS.HLS;
import org.mangui.HLS.HLSEvent;
import org.mangui.HLS.HLSStates;
import... | package org.mangui.flowplayer {
import flash.display.DisplayObject;
import flash.net.NetConnection;
import flash.net.NetStream;
import flash.utils.Dictionary;
import flash.media.Video;
import org.mangui.HLS.HLS;
import org.mangui.HLS.HLSEvent;
import org.mangui.HLS.HLSStates;
import... | remove unused import | remove unused import
| ActionScript | mpl-2.0 | desaintmartin/hlsprovider,desaintmartin/hlsprovider,desaintmartin/hlsprovider |
a7d413fa70a55a8050ba5ca6c98938c2d5533c0b | src/laml/display/Skin.as | src/laml/display/Skin.as | package laml.display {
import flash.display.DisplayObject;
import flash.display.Sprite;
public class Skin extends Sprite implements ISkin {
public function getBitmapByName(alias:String):DisplayObject {
if(hasOwnProperty(alias)) {
return new this[alias]() as DisplayObject;
}
return null;
}
}
... | package laml.display {
import flash.display.DisplayObject;
import flash.display.Sprite;
import mx.core.BitmapAsset;
import mx.core.FontAsset;
import mx.core.IFlexAsset;
import mx.core.IFlexDisplayObject;
import mx.core.SpriteAsset;
public class Skin extends Sprite implements ISkin {
private var bitmapAss... | Put MX dependencies in skin | Put MX dependencies in skin
git-svn-id: 02605e11d3a461bc7e12f3f3880edf4b0c8dcfd0@4281 3e7533ad-8678-4d30-8e38-00a379d3f0d0
| ActionScript | mit | lukebayes/laml |
cebd5948b8721d3f147f0c751db5df88a2d1c7be | WEB-INF/lps/lfc/kernel/swf9/LzMouseKernel.as | WEB-INF/lps/lfc/kernel/swf9/LzMouseKernel.as | /**
* LzMouseKernel.as
*
* @copyright Copyright 2001-2008 Laszlo Systems, Inc. All Rights Reserved.
* Use is subject to license terms.
*
* @topic Kernel
* @subtopic AS2
*/
// Receives mouse events from the runtime
class LzMouseKernel {
#passthrough (toplevel:true) {
import flash.... | /**
* LzMouseKernel.as
*
* @copyright Copyright 2001-2009 Laszlo Systems, Inc. All Rights Reserved.
* Use is subject to license terms.
*
* @topic Kernel
* @subtopic AS2
*/
// Receives mouse events from the runtime
class LzMouseKernel {
#passthrough (toplevel:true) {
import flash.... | Change 20090206-maxcarlson-y by maxcarlson@Bank.local on 2009-02-06 19:03:11 PST in /Users/maxcarlson/openlaszlo/trunk-clean for http://svn.openlaszlo.org/openlaszlo/trunk | Change 20090206-maxcarlson-y by maxcarlson@Bank.local on 2009-02-06 19:03:11 PST
in /Users/maxcarlson/openlaszlo/trunk-clean
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Send mouseup events when mouse goes up outside the app in swf9
Bugs Fixed: LPP-7724 - Mouse events behave wrong in opaque mode (F... | ActionScript | epl-1.0 | mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo |
aeb78a402d31c40aa301925ff009c884513b3a8d | src/goplayer/Player.as | src/goplayer/Player.as | package goplayer
{
public class Player
implements FlashNetConnectionListener, FlashNetStreamListener
{
private const DEFAULT_VOLUME : Number = .8
private const START_BUFFER : Duration = Duration.seconds(.1)
private const SMALL_BUFFER : Duration = Duration.seconds(3)
private const LARGE_BUFFER :... | package goplayer
{
public class Player
implements FlashNetConnectionListener, FlashNetStreamListener
{
private const DEFAULT_VOLUME : Number = .8
private const START_BUFFER : Duration = Duration.seconds(.1)
private const SMALL_BUFFER : Duration = Duration.seconds(3)
private const LARGE_BUFFER :... | Tweak buffering strategy. | Tweak buffering strategy.
| ActionScript | mit | dbrock/goplayer,dbrock/goplayer |
f107cd1e6b00a80bfb26cb50e37041a1763a4e67 | src/aerys/minko/scene/node/camera/Camera.as | src/aerys/minko/scene/node/camera/Camera.as | package aerys.minko.scene.node.camera
{
import aerys.minko.ns.minko_scene;
import aerys.minko.scene.controller.camera.CameraController;
import aerys.minko.scene.data.CameraDataProvider;
import aerys.minko.scene.node.AbstractSceneNode;
import aerys.minko.scene.node.Scene;
import aerys.minko.type.Signal;
import ae... | package aerys.minko.scene.node.camera
{
import aerys.minko.ns.minko_scene;
import aerys.minko.scene.controller.camera.CameraController;
import aerys.minko.scene.data.CameraDataProvider;
import aerys.minko.scene.node.AbstractSceneNode;
import aerys.minko.scene.node.Scene;
import aerys.minko.type.Signal;
import ae... | remove duplicate definition of Camera.project() and set the tmp Vector4 as a private static const | remove duplicate definition of Camera.project() and set the tmp Vector4 as a private static const
| ActionScript | mit | aerys/minko-as3 |
719e38204519a15fb4e18341f87aad393b1957d0 | krew-framework/krewfw/builtin_actor/system/KrewScenarioPlayer.as | krew-framework/krewfw/builtin_actor/system/KrewScenarioPlayer.as | package krewfw.builtin_actor.system {
import krewfw.core.KrewActor;
/**
* Base class for event-driven command player.
*/
//------------------------------------------------------------
public class KrewScenarioPlayer extends KrewActor {
private var _eventList:Array;
private v... | package krewfw.builtin_actor.system {
import krewfw.core.KrewActor;
/**
* Base class for event-driven command player.
*/
//------------------------------------------------------------
public class KrewScenarioPlayer extends KrewActor {
// You can customize object keys.
publi... | Modify KrewScenarioPlayer | Modify KrewScenarioPlayer
| ActionScript | mit | tatsuya-koyama/krewFramework,tatsuya-koyama/krewFramework,tatsuya-koyama/krewFramework |
9599391556da800b04996834a4d457b4119a367e | src/aerys/minko/scene/controller/camera/CameraController.as | src/aerys/minko/scene/controller/camera/CameraController.as | package aerys.minko.scene.controller.camera
{
import aerys.minko.ns.minko_scene;
import aerys.minko.scene.controller.AbstractController;
import aerys.minko.scene.data.CameraDataProvider;
import aerys.minko.scene.node.Group;
import aerys.minko.scene.node.ISceneNode;
import aerys.minko.scene.node.Scene;
import aer... | package aerys.minko.scene.controller.camera
{
import aerys.minko.ns.minko_scene;
import aerys.minko.scene.controller.AbstractController;
import aerys.minko.scene.data.CameraDataProvider;
import aerys.minko.scene.node.Group;
import aerys.minko.scene.node.ISceneNode;
import aerys.minko.scene.node.Scene;
import aer... | fix wrong update of worldToScreen matrix when the viewport is resized | fix wrong update of worldToScreen matrix when the viewport is resized
| ActionScript | mit | aerys/minko-as3 |
a9c72e390a284f6da7a324b741a3e9deab1ce371 | src/flails/resource/Resources.as | src/flails/resource/Resources.as | package flails.resource {
import mx.core.IMXMLObject;
import flash.utils.Dictionary;
public class Resources implements IMXMLObject {
[DefaultProperty("resources")]
private static var _resources:Dictionary = new Dictionary();
public static function getResource(name:String):Resource {
return _r... | package flails.resource {
import mx.core.IMXMLObject;
import flash.utils.Dictionary;
[DefaultProperty("resources")]
public class Resources implements IMXMLObject {
private static var _resources:Dictionary = new Dictionary();
public static function getResource(name:String):Resource {
return _reso... | Correct DefaultPropery placement. | Correct DefaultPropery placement.
| ActionScript | mit | lancecarlson/flails,lancecarlson/flails |
eed030c985547ac4f04149782d665b2a0902b1f4 | examples/web/app/classes/server/FMSClient.as | examples/web/app/classes/server/FMSClient.as | package server {
import flash.events.EventDispatcher;
dynamic public class FMSClient extends EventDispatcher {
public function FMSClient() {
super();
}
public function onRegisterUser(user:String, result:Object):void {
trace('FMSClient.onRegisterUser:', user, result);
}
public function onSigninUser... | package server {
import flash.events.EventDispatcher;
dynamic public class FMSClient extends EventDispatcher {
public function FMSClient() {
super();
}
public function onRegisterUser(user:String, result:Object):void {
trace('FMSClient.onRegisterUser:', user, result);
}
public function onSigninUser... | Update FMSClient.as | Update FMSClient.as | ActionScript | apache-2.0 | adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler |
24fa8920770c81bf07e32beb18c65defa36e451b | lib/FlashFallback/com/visual/VisualVideo.as | lib/FlashFallback/com/visual/VisualVideo.as | package com.visual {
/* Flash widgets */
import flash.display.Sprite;
import flash.external.ExternalInterface;
import flash.events.Event;
/* OSMF widgets */
import org.osmf.media.MediaPlayerSprite;
import org.osmf.media.MediaPlayer;
import org.osmf.media.URLResource;
import org.osmf... | package com.visual {
/* Flash widgets */
import flash.display.Sprite;
import flash.external.ExternalInterface;
import flash.events.Event;
/* OSMF widgets */
import org.osmf.media.MediaPlayerSprite;
import org.osmf.media.MediaPlayer;
import org.osmf.media.URLResource;
import org.osmf... | Hide thumbnail image when is playing | Hide thumbnail image when is playing
| ActionScript | mit | 23/eingebaut,23/eingebaut,23/eingebaut |
0f4d55bed5e68604f4dcc42305136227aa075e3c | flexclient/dag/Components/Association.as | flexclient/dag/Components/Association.as | package Components
{
[Bindable]
public class Association
{
public var associatedNode:String;
public var associatedLink:String;
public var operatorIndex:int;
public function Association(associatedNode:String,associatedLink:String,operatorIndex:int)
{
this.associatedLink = associatedLink;
... | package Components
{
[Bindable]
public class Association
{
public var associatedNode:String;
public var associatedLink:String;
public var operatorIndex:int;
public var order:int=0;
public function Association(associatedNode:String,associatedLink:String,operatorIndex:int,order:int)
{
thi... | Order vairable added todecide order of association | Order vairable added todecide order of association
SVN-Revision: 9306
| ActionScript | bsd-3-clause | asamgir/openspecimen,asamgir/openspecimen,krishagni/openspecimen,krishagni/openspecimen,asamgir/openspecimen,krishagni/openspecimen |
fac7d8e3416f65e79b956a2d719dede5ebffdeb6 | runtime/src/main/as/flump/display/Movie.as | runtime/src/main/as/flump/display/Movie.as | //
// Flump - Copyright 2013 Flump Authors
package flump.display {
import flash.geom.Matrix;
import flash.geom.Point;
import flash.geom.Rectangle;
import flump.mold.LayerMold;
import flump.mold.MovieMold;
import react.Signal;
import starling.animation.IAnimatable;
import starling.display.DisplayObject;
import star... | //
// Flump - Copyright 2013 Flump Authors
package flump.display {
import flash.geom.Matrix;
import flash.geom.Point;
import flash.geom.Rectangle;
import flump.mold.LayerMold;
import flump.mold.MovieMold;
import react.Signal;
import starling.animation.IAnimatable;
import starling.display.DisplayObject;
import star... | Fix a string concatenation and some minor cleanup | Fix a string concatenation and some minor cleanup
| ActionScript | mit | mathieuanthoine/flump,tconkling/flump,tconkling/flump,mathieuanthoine/flump,mathieuanthoine/flump |
95802c2da9f7625cf39a06e52944837d54f5f8c7 | src/com/esri/builder/controllers/RemoveCustomWidgetController.as | src/com/esri/builder/controllers/RemoveCustomWidgetController.as | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | Apply formatting. | Apply formatting.
| ActionScript | apache-2.0 | Esri/arcgis-viewer-builder-flex |
c90910110c9ca56213fb53b700ce42ae6efbdc7a | as3/com/netease/protobuf/stringToByteArray.as | as3/com/netease/protobuf/stringToByteArray.as | // vim: tabstop=4 shiftwidth=4
// Copyright (c) 2010 , NetEase.com,Inc. All rights reserved.
//
// Author: Yang Bo (pop.atry@gmail.com)
//
// Use, modification and distribution are subject to the "New BSD License"
// as listed at <url: http://www.opensource.org/licenses/bsd-license.php >.
package com.netease.protobuf... | // vim: tabstop=4 shiftwidth=4
// Copyright (c) 2010 , NetEase.com,Inc. All rights reserved.
//
// Author: Yang Bo (pop.atry@gmail.com)
//
// Use, modification and distribution are subject to the "New BSD License"
// as listed at <url: http://www.opensource.org/licenses/bsd-license.php >.
package com.netease.protobuf... | 初始化ByteArray时position为0 | 初始化ByteArray时position为0
| ActionScript | bsd-2-clause | tconkling/protoc-gen-as3 |
ef2ff7fe40fd7aea803348e57edcc984f64b582f | examples/web/app/classes/server/FMSBridge.as | examples/web/app/classes/server/FMSBridge.as | package server {
import flash.events.EventDispatcher;
import flash.events.NetStatusEvent;
import flash.events.Event;
import flash.net.Responder;
public final class FMSBridge extends EventDispatcher {
public var connection:FMSConnection;
public var client:FMSClient;
public function FMSBridge(rtmpAddress:Str... | package server {
import flash.events.EventDispatcher;
import flash.events.NetStatusEvent;
import flash.events.Event;
import flash.net.Responder;
public final class FMSBridge extends EventDispatcher {
public var connection:FMSConnection;
public var client:FMSClient;
public function FMSBridge(rtmpAddress:Str... | Update FMSBridge.as | Update FMSBridge.as | ActionScript | apache-2.0 | adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler,adriancmiranda/flash-compiler |
8a5e8d3f7eaab91633fb7188bf0233202a4290b3 | krew-framework/krewfw/utils/as3/KrewAsync.as | krew-framework/krewfw/utils/as3/KrewAsync.as | package krewfw.utils.as3 {
/**
* Flexible asynchronous tasker.
*
* Usage:
* <pre>
* //--- Basic sequential task
* var async:KrewAsync = new KrewAsync({
* serial : [function_1, function_2, function_3],
* error : _onErrorHandler,
* anyway ... | package krewfw.utils.as3 {
/**
* Flexible asynchronous tasker.
*
* Usage:
* <pre>
* //--- Basic sequential task
* var async:KrewAsync = new KrewAsync({
* serial : [function_1, function_2, function_3],
* error : _onErrorHandler,
* anyway ... | Modify KrewAsync a little | Modify KrewAsync a little
| ActionScript | mit | tatsuya-koyama/krewFramework,tatsuya-koyama/krewFramework,tatsuya-koyama/krewFramework |
5670dd814078ad9f113e6bea0af57e0d45faa35d | src/org/openPyro/containers/HDividedBox.as | src/org/openPyro/containers/HDividedBox.as | package org.openPyro.containers
{
import flash.display.DisplayObject;
import flash.geom.Point;
import flash.geom.Rectangle;
import flash.utils.getQualifiedClassName;
import org.openPyro.core.ClassFactory;
import org.openPyro.core.MeasurableControl;
import org.openPyro.core.UIControl;
import org.openPyro.layou... | package org.openPyro.containers
{
import flash.display.DisplayObject;
import flash.geom.Point;
import flash.geom.Rectangle;
import flash.utils.getQualifiedClassName;
import org.openPyro.core.ClassFactory;
import org.openPyro.core.MeasurableControl;
import org.openPyro.core.UIControl;
import org.openPyro.layou... | Fix to forceUpdateList on HDividedBox | Fix to forceUpdateList on HDividedBox
| ActionScript | mit | arpit/openpyro |
2652c2f0b9fc2fbc1dd6571211358addd6da9d6c | src/avm2/tests/regress/correctness/pass/order.as | src/avm2/tests/regress/correctness/pass/order.as | package {
class A {
var x = 1;
var y = 2;
var z = 3;
}
(function () {
trace("--- Test 1 ---");
var o : A = new A();
var r0 = o.x;
o.x = 2;
var r1 = o.x;
o.x = 3;
var r2 = o.x;
o.x = 4;
var r3 = o.x;
o.x = 5;
var r4 = o.x;
o.x = 6;
var r5 = o.x;
o... | package {
class A {
var x = 1;
var y = 2;
var z = 3;
}
(function () {
trace("--- Test 1 ---");
var o : A = new A();
var r0 = o.x;
o.x = 2;
var r1 = o.x;
o.x = 3;
var r2 = o.x;
o.x = 4;
var r3 = o.x;
o.x = 5;
var r4 = o.x;
o.x = 6;
var r5 = o.x;
o... | Add test case. | Add test case.
| ActionScript | apache-2.0 | yurydelendik/shumway,yurydelendik/shumway,tschneidereit/shumway,mozilla/shumway,yurydelendik/shumway,mbebenita/shumway,yurydelendik/shumway,mbebenita/shumway,yurydelendik/shumway,mbebenita/shumway,mozilla/shumway,mozilla/shumway,tschneidereit/shumway,mozilla/shumway,mbebenita/shumway,mozilla/shumway,mbebenita/shumway,t... |
d43f6e332c184b12d90afef9d737f696e1b26244 | swfcat.as | swfcat.as | package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.net.Socket;
import flash.net.URLLoader;
import flash.net.URLLoaderDataFormat;
import flash.net.URLReque... | package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.net.Socket;
import flash.net.URLLoader;
import flash.net.URLLoaderDataFormat;
import flash.net.URLReque... | Rename CIRRUS_URL to RTMFP_URL. | Rename CIRRUS_URL to RTMFP_URL.
| ActionScript | mit | glamrock/flashproxy,infinity0/flashproxy,arlolra/flashproxy,infinity0/flashproxy,glamrock/flashproxy,glamrock/flashproxy,infinity0/flashproxy,glamrock/flashproxy,glamrock/flashproxy,infinity0/flashproxy,glamrock/flashproxy,arlolra/flashproxy,infinity0/flashproxy,arlolra/flashproxy,infinity0/flashproxy,arlolra/flashprox... |
7d7452d604dda4f5fbd94c63eedb78140cde017b | WeaveData/src/weave/data/CSVParser.as | WeaveData/src/weave/data/CSVParser.as | /*
Weave (Web-based Analysis and Visualization Environment)
Copyright (C) 2008-2011 University of Massachusetts Lowell
This file is a part of Weave.
Weave is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License, Version 3,
as publish... | /*
Weave (Web-based Analysis and Visualization Environment)
Copyright (C) 2008-2011 University of Massachusetts Lowell
This file is a part of Weave.
Weave is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License, Version 3,
as publish... | Revert "Now using ByteArray in CSVParser.createCSV() for 2x speedup." | Revert "Now using ByteArray in CSVParser.createCSV() for 2x speedup."
This reverts commit 721aaba8b1b70953a764dabf3dc743372a206d84.
| ActionScript | mpl-2.0 | WeaveTeam/WeaveJS,WeaveTeam/WeaveJS,WeaveTeam/WeaveJS,WeaveTeam/WeaveJS |
21bf7822410aff226883c2f720428c282661a6cf | as3/com/netease/protobuf/messageToString.as | as3/com/netease/protobuf/messageToString.as | // vim: tabstop=4 shiftwidth=4
// Copyright (c) 2010 , 杨博 (Yang Bo) All rights reserved.
//
// pop.atry@gmail.com
//
// Use, modification and distribution are subject to the "New BSD License"
// as listed at <url: http://www.opensource.org/licenses/bsd-license.php >.
package com.netease.protobuf {
import fla... | // vim: tabstop=4 shiftwidth=4
// Copyright (c) 2010 , 杨博 (Yang Bo) All rights reserved.
//
// pop.atry@gmail.com
//
// Use, modification and distribution are subject to the "New BSD License"
// as listed at <url: http://www.opensource.org/licenses/bsd-license.php >.
package com.netease.protobuf {
import fla... | 修复当某一项为 null 时,toString 出错的 bug | 修复当某一项为 null 时,toString 出错的 bug
| ActionScript | bsd-2-clause | tconkling/protoc-gen-as3 |
a9b986d4884810f259e1f7b7579f0f4207fef811 | flash/src/lambmei/starling/display/HandleSheet.as | flash/src/lambmei/starling/display/HandleSheet.as | package lambmei.starling.display
{
import flash.display.MovieClip;
import flash.geom.Point;
import starling.display.Button;
import starling.display.DisplayObject;
import starling.display.DisplayObjectContainer;
import starling.display.Sprite;
import starling.events.Event;
import starling.events.Touch;
import... | package lambmei.starling.display
{
import flash.display.MovieClip;
import flash.geom.Point;
import flash.system.System;
import starling.display.Button;
import starling.display.DisplayObject;
import starling.display.DisplayObjectContainer;
import starling.display.Shape;
import starling.display.Sprite;
import ... | add 外框線 | add 外框線
| ActionScript | mit | lamb-mei/HandleSheet |
308fee1f437ecf0b8812dce4f4cddfa06ff40954 | src/model/ImportDataProxy.as | src/model/ImportDataProxy.as | package model
{
import dragonBones.Armature;
import dragonBones.Bone;
import dragonBones.animation.WorldClock;
import dragonBones.events.AnimationEvent;
import dragonBones.factorys.BaseFactory;
import dragonBones.objects.BoneData;
import dragonBones.objects.SkeletonData;
import dragonBones.objects.XMLDataParse... | package model
{
import dragonBones.Armature;
import dragonBones.Bone;
import dragonBones.animation.WorldClock;
import dragonBones.events.AnimationEvent;
import dragonBones.factorys.BaseFactory;
import dragonBones.objects.BoneData;
import dragonBones.objects.SkeletonData;
import dragonBones.objects.XMLDataParse... | declare function return value type | declare function return value type
| ActionScript | mit | DragonBones/DesignPanel |
56ddb2310c1ac988a54735050d65f3fe89aa1203 | src/org/mangui/chromeless/ChromelessPlayer.as | src/org/mangui/chromeless/ChromelessPlayer.as | package org.mangui.chromeless {
import flash.net.URLStream;
import org.mangui.HLS.parsing.Level;
import org.mangui.HLS.*;
import org.mangui.HLS.utils.*;
import flash.display.*;
import flash.events.*;
import flash.external.ExternalInterface;
import flash.geom.Rectangle;
import flash... | package org.mangui.chromeless {
import flash.net.URLStream;
import org.mangui.HLS.parsing.Level;
import org.mangui.HLS.*;
import org.mangui.HLS.utils.*;
import flash.display.*;
import flash.events.*;
import flash.external.ExternalInterface;
import flash.geom.Rectangle;
import flash... | add getDuration() function to ChromelessPlayer | add getDuration() function to ChromelessPlayer
| ActionScript | mpl-2.0 | desaintmartin/hlsprovider,desaintmartin/hlsprovider,desaintmartin/hlsprovider |
dc2cbcf8f779e013f7698c0e860dfb6872d790e4 | src/as/com/threerings/flex/CursorManager.as | src/as/com/threerings/flex/CursorManager.as | //
// $Id$
//
// Nenya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/nenya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | //
// $Id$
//
// Nenya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/nenya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public Licens... | Use new Maps factory. Does anyone care about this crappy class? | Use new Maps factory.
Does anyone care about this crappy class?
git-svn-id: b675b909355d5cf946977f44a8ec5a6ceb3782e4@852 ed5b42cb-e716-0410-a449-f6a68f950b19
| ActionScript | lgpl-2.1 | threerings/nenya,threerings/nenya |
8d725549435e3dffcbe66a4f97b283ed7fb8ab13 | src/org/mangui/osmf/plugins/HLSSeekTrait.as | src/org/mangui/osmf/plugins/HLSSeekTrait.as | package org.mangui.osmf.plugins {
import org.osmf.traits.SeekTrait;
import org.osmf.traits.TimeTrait;
import org.mangui.HLS.HLS;
import org.mangui.HLS.HLSStates;
import org.mangui.HLS.HLSEvent;
import org.mangui.HLS.utils.*;
public class HLSSeekTrait extends SeekTrait {
private var ... | package org.mangui.osmf.plugins {
import org.osmf.traits.SeekTrait;
import org.osmf.traits.TimeTrait;
import org.mangui.HLS.HLS;
import org.mangui.HLS.HLSStates;
import org.mangui.HLS.HLSEvent;
import org.mangui.HLS.utils.*;
public class HLSSeekTrait extends SeekTrait {
private var ... | add logs | add logs
| ActionScript | mpl-2.0 | desaintmartin/hlsprovider,desaintmartin/hlsprovider,desaintmartin/hlsprovider |
5230cd695aca000a21c51a148333efc1b83d77bf | tests/org/osflash/signals/AllTestsRunner.as | tests/org/osflash/signals/AllTestsRunner.as | package org.osflash.signals {
import asunit4.ui.MinimalRunnerUI;
import org.osflash.signals.AllTests;
public class AllTestsRunner extends MinimalRunnerUI
{
public function AllTestsRunner()
{
run(org.osflash.signals.AllTests);
}
}
}
| package org.osflash.signals {
import asunit4.ui.MinimalRunnerUI;
import org.osflash.signals.AllTests;
[SWF(width='1000', height='800', backgroundColor='#333333', frameRate='31')]
public class AllTestsRunner extends MinimalRunnerUI
{
public function AllTestsRunner()
{
run(org.osflash.signals.AllT... | Put [SWF] tag in test runner app. | Put [SWF] tag in test runner app.
| ActionScript | mit | ifuller1/Signals |
11d3ec5931937f268a0c2b5db10ed299a1d63a23 | sdk-remote/src/tests/liburbi-check.as | sdk-remote/src/tests/liburbi-check.as | m4_pattern_allow([^URBI_(PATH|SERVER)$]) -*- shell-script -*-
AS_INIT()dnl
URBI_PREPARE()
set -e
case $VERBOSE in
x) set -x;;
esac
# Avoid zombies and preserve debugging information.
cleanup ()
{
exit_status=$?
# In case we were caught by set -e, kill the children.
children_kill
children_harvest
... | m4_pattern_allow([^URBI_(PATH|SERVER)$]) -*- shell-script -*-
URBI_INIT
# Avoid zombies and preserve debugging information.
cleanup ()
{
exit_status=$?
# In case we were caught by set -e, kill the children.
children_kill
children_harvest
children_report
children_sta=$(children_status remote)
# ... | Update to use the urbi-console wrapper. | Update to use the urbi-console wrapper.
* src/tests/liburbi-check.as: Use URBI_INIT.
Remove factored code.
Style changes.
No longer define URBI_SERVER and URBI_PATH to force the use of the
shipped one (instead of the installed version in case of a
standalone SDK Remote). Rather, define the PATH to use the
urbi... | ActionScript | bsd-3-clause | aldebaran/urbi,urbiforge/urbi,aldebaran/urbi,aldebaran/urbi,urbiforge/urbi,urbiforge/urbi,aldebaran/urbi,aldebaran/urbi,urbiforge/urbi,urbiforge/urbi,aldebaran/urbi,aldebaran/urbi,urbiforge/urbi,aldebaran/urbi,urbiforge/urbi,urbiforge/urbi,urbiforge/urbi |
0c387cd1ec22c7a640cca8135e946b4c68881f9e | src/modules/supportClasses/FieldSettings.as | src/modules/supportClasses/FieldSettings.as | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2013 Esri. All Rights Reserved.
//
// 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
//
/... | Update FieldSettings to store supported properties. | Update FieldSettings to store supported properties.
| ActionScript | apache-2.0 | Esri/arcgis-viewer-builder-flex |
99e723a5aeabae69151f2b5e275420b4542a2281 | actionscript/src/com/freshplanet/ane/AirInAppPurchase/InAppPurchase.as | actionscript/src/com/freshplanet/ane/AirInAppPurchase/InAppPurchase.as | /**
* Copyright 2017 FreshPlanet
* 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 applicable law or agreed to in... | /**
* Copyright 2017 FreshPlanet
* 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 applicable law or agreed to in... | fix typo & event name | fix typo & event name
| ActionScript | apache-2.0 | freshplanet/ANE-In-App-Purchase,freshplanet/ANE-In-App-Purchase,freshplanet/ANE-In-App-Purchase |
b99483faf7f43cb7f66f6b9509443bd0353ac7ff | src/aerys/minko/render/material/realistic/RealisticMaterial.as | src/aerys/minko/render/material/realistic/RealisticMaterial.as | package aerys.minko.render.material.realistic
{
import aerys.minko.render.Effect;
import aerys.minko.render.material.environment.EnvironmentMappingProperties;
import aerys.minko.render.material.phong.PhongEffect;
import aerys.minko.render.material.phong.PhongMaterial;
import aerys.minko.render.resource.texture.ITe... | package aerys.minko.render.material.realistic
{
import aerys.minko.render.Effect;
import aerys.minko.render.material.environment.EnvironmentMappingProperties;
import aerys.minko.render.material.phong.PhongEffect;
import aerys.minko.render.material.phong.PhongMaterial;
import aerys.minko.render.resource.texture.ITe... | remove useless imports | remove useless imports
| ActionScript | mit | aerys/minko-as3 |
8c08172ad98578ba8705dbda0b804890e50aa531 | WEB-INF/lps/lfc/kernel/swf9/LzMouseKernel.as | WEB-INF/lps/lfc/kernel/swf9/LzMouseKernel.as | /**
* LzMouseKernel.as
*
* @copyright Copyright 2001-2009 Laszlo Systems, Inc. All Rights Reserved.
* Use is subject to license terms.
*
* @topic Kernel
* @subtopic swf9
*/
// Receives mouse events from the runtime
class LzMouseKernel {
#passthrough (toplevel:true) {
import flash.d... | /**
* LzMouseKernel.as
*
* @copyright Copyright 2001-2010 Laszlo Systems, Inc. All Rights Reserved.
* Use is subject to license terms.
*
* @topic Kernel
* @subtopic swf9
*/
// Receives mouse events from the runtime
class LzMouseKernel {
#passthrough (toplevel:true) {
import flash.d... | Change 20100222-maxcarlson-o by maxcarlson@bank on 2010-02-22 19:35:00 PST in /Users/maxcarlson/openlaszlo/trunk-clean for http://svn.openlaszlo.org/openlaszlo/trunk | Change 20100222-maxcarlson-o by maxcarlson@bank on 2010-02-22 19:35:00 PST
in /Users/maxcarlson/openlaszlo/trunk-clean
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Conditionalize textfield focus workaround from LPP-7957
Bugs Fixed: LPP-8783 - Text field loses focus when mousing out of canvas and th... | ActionScript | epl-1.0 | mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo,mcarlson/openlaszlo |
f1448d0d30bec8d20df5a3fc0d224a1b7a161e53 | src/battlecode/client/viewer/render/DrawState.as | src/battlecode/client/viewer/render/DrawState.as | package battlecode.client.viewer.render {
import battlecode.client.viewer.render.DrawRobot;
import battlecode.client.viewer.render.DrawRobot;
import battlecode.common.GameConstants;
import battlecode.common.MapLocation;
import battlecode.common.ResearchType;
import battlecode.common.Robot... | package battlecode.client.viewer.render {
import battlecode.common.MapLocation;
import battlecode.common.ResearchType;
import battlecode.common.RobotType;
import battlecode.common.Team;
import battlecode.serial.RoundDelta;
import battlecode.serial.RoundStats;
import battlecode.world.... | replace neutral encampments after captured encampment has been destroyed | replace neutral encampments after captured encampment has been destroyed
| ActionScript | mit | trun/battlecode-webclient |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.