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...
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...
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...
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...
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...
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?...
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.
...
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...
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?
...
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...
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 ?
...
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...
What are the following lines for?
<param name="AllowScriptAccess" VALUE="always"/>
<param name="AllowNetworking" VALUE="all"/>
...
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...
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...
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 ...
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...
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 ...
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);
?>
...
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...