flash

PHP: How to add a logo with url link on a web player?

Hi all, I am doing a project in PHP in which Users can upload videos to the website.Visitors can watch the videos in the website. There will be a logo on the web player.when the visitor clicks on the logo it has to take him to a new page.I don't know how to add a logo with URL link on a web player. Please help me on this. Thanks in adv...

Unable to set relative path for flash file in ASP.NET MVC using AC_FL_RunContent

Hi, I have a website using asp.net mvc in which I need to embed a flash file in view. I am unable to set the relative path for the flash file. Given below is the code I am using: AC_FL_RunContent( 'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0', 'width', '487', 'height', '359', 'menu...

Using Flash and ActiveMQ

Hey all, Ive been using ActiveMQ as a message broker and have been able to get Flex to subscribe to a topic and receive messages using this library and flexonrails.net/?cat=26 (cant add second link) as a guide. However I've been unable to achieve the same goal in Flash. Does anyone know how to use this library in Flash or know any tuto...

Problem resizing loader after loading swf

I'm using the following code to load an swf in a pure actionscript project (Flex Builder 3) _loader = new Loader(); _loader.contentLoaderInfo.addEventListener(Event.COMPLETE, Loader_Complete); _loader.contentLoaderInfo.addEventListener(Event.INIT, Loader_Init); var request:URLRequest = new URLRequest("Skins/TestSkin.swf"); _loader.loa...

how can i change texts in the dynamic textFields in SimpleButton instance (button symbol)?

hi every one, this may be a basic thing, but i couldn't find an answer by serching internet. I have created a simple button - Istance name = "btnsample" and there are two layers layer 0- button design with rollovers - layer 1- dynamic text field - instance name = "txtbtnlabel" btnsample.txtbtnlabel.text = "new button label; but i...

Targeting items in flash with actionscript 2.0???

I'm trying to load an external jpeg using ActionScript in a MovieClip which is nested three layers deep. I named all the layers with an instance name. But when I try to load the jpeg, it's not working. ActionScript can't seem to access it. What could be the problem? How can I test to find the problem? Any solutions you might know about?...

Library for FLV/F4V conversation in C# .NET?

Is there any library that can covert input video (of some specific video files) to f4v or flv programatically in c# .NET? Thanks in advance. ...

Flex: How to access movieclips within an imported swf

Hello, I have imported a swf (not created with Flex, i.e. non-framework) into a Flex application. Once loaded, I would like to access movieclips within that imported swf. Looking at Adobe's docs (http://livedocs.adobe.com/flex/3/html/help.html?content=controls_15.html), it seems straightforward; however, their examples are between a...

flash component appear out of box

After embedded flash content on HTML, I tried to click comboxbox list, it was appear to be truncated, how do I actually make the list visible outside the flash content? Seeing some of the commercial ads with out-of-box feature, how do I do that? ...

flash's "useHandCursor = true" not working for Chrome on Mac

I'm developing a flash game using the default SimpleButton object for my buttons and the hand cursor is working just fine on PC Chrome and Firefox and Safari for Mac, but Chrome on Mac is not letting me swap the default cursor for the hand cursor. I've even set useHandCursor to true for every button I add a click event to and am still g...

Error 1009 when using a ScrollPane component

Hi, I have the same problem of this post : http://stackoverflow.com/questions/2668564/scrollpane-component-required-in-library-even-though-it-is-not-being-used-by-pare/2783997#2783997 But I try to put the component in the parent fla and it doesn't change anything and I still have the 1009 error. Any idea ? ...

Streaming video using realnetwork helix

Hi all and thanks in advance. I'm new to streaming media. I've just signed up for streaming services from gate.com for my website. They provided me with the following info. It says it's provided by realnetwork Helix This is all they gave me, with no instructions of how to do it. UN:media.mydomain.com Password:xxxxxx Hostname: rtsp://m...

Flash question on param name

What are the following lines for? <param name="AllowScriptAccess" VALUE="always"/> <param name="AllowNetworking" VALUE="all"/> ...

How do I return movieclip to original size?

I made a gallery in flash. I have external images load in a fixed display area -- I call it 'imageStage'. When the image is loaded, I resize the movieclip at the _x and _y to make the image fit the stage. But what happens -- when I flip prev/next through a couple images, they keep shrinking and shrinking. Images that are smaller than th...

AS3 Pass parameter by value

Hi, im having problems with the following code: for (var i:Number=0; i<numFaces;i++){ var faceLoader:Loader = new Loader(); faceLoader.contentLoaderInfo.addEventListener( Event.INIT, function(fle:Event){ LoadCara(i,faceLoader); trace("LoadCara:" + i.toString()); } ); } function LoadCara(index:int,loader...

Is Flash/Actionscript any safer than Javascript for persistent online game?

I'm finding lately how unsecure Javascript is when programming a game (I'm trying to do a turn based RPG and currently the battle calculations are done through Javascript which any player can cheat with of course giving themselves as much XP as they want), so I'm wondering if I were to move my battle screen to flash if this would be any ...

Can somebody explain in a few sentences how these technologies relate: Flex, Flash, Air, ActionScript, SWF, FLV

I've read about each of these but I still don't understand how they all inter-operate, which are competing technologies, or even really what each of them is distinctly. Flash, Air, Flex... Are these all "containers"/JVM-like runtime environments, in which ActionScript code runs? SWF,FLV,AIR... Are these competing file formats which a F...

Can I prevent Flash's Input Events from stacking up when my framerate slows?

My Flash game targets 24 fps, but slows to 10 on slower machines. This is fine, except Flash decides to throttle the queue of incoming MouseEvent and KeyboardEvents, and they stack up and the Events fall behind. Way behind. It's so bad that, at 10 fps, if I spam the Mouse and Keyboard for a few seconds not much happens, then, after I ...

Flashvar to included swf (in php)

How to pass a flashvar when I include the swf (to make an embedded player) Something like this does not work.. theme->basePath.'/swf/ebook.swf?xml="test"'; header("Content-Type: application/x-shockwave-flash"); readfile($player); ?> ...

In ActionScript3 runtime, is there a way to get a list of all static members from a Class

Let's say we have following class public class PlayerEvent extends Event { public static const PLAYER_INIT:String = "playerInit"; public static const PLAYER_MOVE:String = "playerMove"; public static const PLAYER_USE_SKILL:String = "playerUseSkill"; public function PlayerEvent(type:String) { super(type, false...