C# :: Domain Restrictions For Swfloader?
Jan 19, 2010
I have a swf movie player located in [URL]. Normally this a.swf is used by a html page, the swf file is embedded in a [URL]. The website is not built by me but I know there is a restriction that only the html in [URL] can play the video . Now what I want to do is embed the a.swf into a c# project using swfloader, I will set the source property of swfloader to [URL]. My question is will the c# project be able to play to video file the same as in the html page?
View 1 Replies
Similar Posts:
Jun 1, 2010
post the code for a working cross-domain securityfile that allows access only from the same domain as all the flashfiles and xml files are in?used to be easy in as2 but i think i dont know what i need to know about it in as3..
View 3 Replies
Apr 23, 2009
We are running FMS3 on Windows 2003 Server. Videos stream and play fine when inside our domain, but outside the domain the videos take anywhere from 20 or more seconds before playing.
After analizing the connections it was determined that the player is randomly trying to access ports until it gets to the one that works, but this is ONLY happening from people trying to view videos from outside our domain.
View 14 Replies
Jun 3, 2011
I have moved a web application from old domain to new domain. I cannot get Flash to engage. I have changed the domain in flash_images.php file to the new domain. I have a flash_box.swf file and I have a js file these are the only flash components that I see--old domain is e.g. www.example.com new domain is [URL]..I am not a flash developer, how do I get flash to work on the new domain?
View 3 Replies
Jan 11, 2010
I am trying to convert a .swf to .mov in Mac Leopard, and I have many rules to follow for this particular purpose.
.mov must be 640x480 or 720x480under 50 MB(my restriction) needs to look really good I have tried the following:
Export from Flash to .mov - I get 300 MB and it looks pretty badThis converter [URL] couldn't even take my .swf for some reasonThis converter [URL] works (37 MB) but the quality is pretty lowBring the .swf into Premiere and then export, which works great, but the file is 737 MB - even when I lower the quality all the way down to 1
View 5 Replies
Dec 9, 2011
I created some game and would like to let the users play it only on my domain, so to forbid to play it offline or put on some other site. Is there a way to do it? Somehow check domain or so?
View 1 Replies
Apr 29, 2009
I have a basic question. It seems like it should be simple but I am having a lot of problems resolving this on my own. The following code is what i used for an 'eyeball' on a Teddybear illustration.
[Code]...
View 1 Replies
Feb 1, 2007
A client wants to show complete html-pages inside a Flash movie. I've seen somewhere that this is possible through an IFrame, but then you can just rightclick the frame to view the source, and that's not what the client's looking for. I know it's possible to parse simple html tags in Flash in a TextField, such as <b></b> <a href=""></a> etc etc, but what are the restrictions? For example, all css should work, even flash movies inside the html page should work. I think they're asking too much, so what exactly is possible and what's not?
View 6 Replies
Mar 13, 2010
I have this playing in a larger .swf which is 1000x1000.
The second swf is supposed to be 400x400.
I am wondering how to put restrictions with loadmovie?
loadMovieNum("gallery.swf", 1);
thats the code i have.
View 9 Replies
Feb 25, 2003
I have this box which is a MC and it is called "orangebox". Now I want this box to follow my mouse, but only over a certain region. I put a rectanlge MC over the area I want the box to follow. On that rectange I put this code...
PHP Code:
on (rollOver) {
startDrag("_root.orangebox", true, 60, 362, 742, 362);
}
That works fine and dandy, but I want it to ease when it follows, not stay on the mouse. I think it will give it a cooler look. The code Kirupa has for ease is...
[Code]...
View 4 Replies
Jun 7, 2010
I'm newly transitioning from AS2 to AS3, and trying to figure out the proper way to detect the end of an external swf, or, essentially put "restrictions" on next buttons for a flash site.Basically, I have a training course where the user watches a little demo then clicks "next" to proceed to the next slide. This works wonderfully so far; however, I need to restrict the next button from being active until the demo has finished playing (so they can't skip ahead).The way this is structurally set up is I have a main container (mainContainer.swf) that loads in external content through an empty MC (contentMC) and cycles through an array (content1.swf, content2.swf, content3.swf) and so on...I have tried comparing the currentFrame to totalFrames of the external swf before activating the next button, but with no luck. Again, new to AS3 so probably have the syntax wrong...
if (contentMC.currentFrame == contentMC.totalFrames) {
trace("end of external swf");
//next button code here...continue cycling through array...
[code]....
View 3 Replies
Nov 15, 2010
I'm dynamically loading a CSS file and text file to populate a TextField. As far as the default styles are concerned, no problem!But as soon as I try stuff like p.title, the style is not applied. Is this a restriction of the CSS support that Flash/Flex offers? Do I have to resort to the "simpel-style-selectors" like ".title" or "p" in my CSS?
Works:
Code:
.title { color:#FF0000; }
Doesn't work:
Code:
p.title { color:#FF0000; }
ps: I know that Flash doesn't support everything that CSS has to offer, but I'm looking for confirmation of someone who can tell me for a fact that the above p.class-selector is not supported.
View 1 Replies
Aug 20, 2010
Googling and trying, I've found: Variables identifiers cant begin with numbers and can only contain letters, numbers and the _ character. I was wondering if there is a length restriction.
View 7 Replies
Jun 19, 2009
We are loading external swf content into an adobe air application. Content is provided by an increasing number of third parties.Being third party content, it will be loaded in a separate security domain (trustContent=false) and a sibling app domain (loadForCompatibility=true). We are doing this using the Loader class.What are the features/options/approaches that would cause problems when using the swf as external content?
I am interested in any kind of issues, as we have already reproduced issues with content that occur regardless of the app domain / security domain where its loaded ( and occurs also in both Loader and SWFLoader).
View 2 Replies
Jun 25, 2009
I'm studying John Lindquist's example from here: [URL] I'm trying to figure out how to add restrict his matrix3d method, so the sphere has limited movement.
Code:
Select all override protected function onRenderTick(event:Event=null):void {
var currentMousePoint:Point = new Point(viewport.containerSprite.mouseX, viewport.containerSprite.mouseY);
if(isMouseDown) {
var difference:Point = currentMousePoint.subtract(previousMousePoint);
[Code] .....
View 2 Replies
Jun 28, 2009
I have the following code which works fine but I would like to set a restriction on how far the movie will travel on it's x and y axis. How can this be achieved?
Code:
speed = .99;
setInterval(CursorMovement, 40);
function CursorMovement() {
[Code]....
View 1 Replies
Nov 5, 2010
My swf works fine when previewed locally but because of flash cross domain issues (link below) doesnt work live. [URL] Ive used a 'crossbrowser.php file to .load in xml but am not having success with the sendAndLoad command. [URL]
View 3 Replies
Mar 9, 2009
I'm loadning a swf coverflow (as2) to a swf (as3) with SWFLoader.
My problem is that i wish to make gotoAndPlay calls from the loaded swf to the as3, or even better call functions. Is there any way to do this - i've tried alot..
View 1 Replies
Oct 10, 2010
Flex is good at produce code, whereas Flash is good at animation, how the integration is done? If I want to insert the animation produced by flash, what's the recommend way to do the integration? Do I need to use SWFLoader?
View 1 Replies
Jul 6, 2011
I am trying to use the mxml swfloader component to load the external flash from the following url, but it doesn't load anything. I'm using FlashBuilder 4.5. [URL]
View 3 Replies
Jul 19, 2011
I am loading an embeded swf file with SWFLoader using actionscript 3 in Flash Builder 4.5. When I load this swf and set "wmode" to "transparent" in HTML, it works as expected and you can see the background color through the swf object in HTML.
However, when I load the swf in Air with the following code:
[Embed(source="swf/data.swf")] var data:Class;
swfLoader = new SWFLoader();
swfLoader.percentWidth = 100;
[Code]....
It always has a white background.
What can I do to make the background transparent?
Note: This is for a mobile android device.
View 1 Replies
Jul 2, 2009
I am doing a elearning project in flex and it consist in a secuence of swf files and a player that load it based in a xml file, the problem is all swf files contents narrations and I need to control the volume of narrations from the player interface, anybody know how I can control the volume of a swf file from flex??
View 1 Replies
Dec 27, 2009
can i save a screenshot from a loaded swf using the SWFLoader class ?
View 1 Replies
Jun 15, 2010
How can I hide a component and what AS3 code to use to hide a Flex Component from an external swf file?
View 1 Replies
Aug 6, 2010
I have a complicated problem with a couple of SWFLoaders.I have an application that loads a swf with a SWFLoader. The loaded swf loads another swf (just a compiled fla). I am adding all my resize and position logic in my loaded swf and it works good on event resize, but when I'm trying to run the same code in my swfs applicationComplete it fails. The same code on startup works great if I run my swf as a standanlone, but for some reason the scale is different when I load it into my application.[code]swfLoader is my loaded swf's swfloader that loads my compiled fla. That is what I need to resize and position to the center. The next numbers are width and height. FlexLoader is the swfLoaders loader (or content if you will). The numbers are width, height, scaleX and scaleY.As you can see the size is the same (this is also the same for the loaded swfs application), but the scale is different. Both scales are calculated from with 1280 and height 720 wich is my compiled fla's size.The only reason why I'm messing around with scale at all is that I can't find the accurate width of my compiled fla to center it (application.width - loadedSwf.width / 2)The part I'm not getting is why the scales are different? What part am I missing?
View 1 Replies
Aug 29, 2010
I have a MainPage, on initialize I am calling a method which would create a SWFLoader object (aka LoginPage) and loads it in the MainPage. When we run the MainPage in 800x500 window, the LoginPage loads in that window size, however when we maximize the window the content of the LoginPage gets resized to 1027X660, but the border remains 800x500, and the remainig area of the window stays blank.
View 1 Replies
Feb 18, 2011
what is difference between swfLoader(load application) and ModuleLoader(load module)?
View 1 Replies
Mar 10, 2011
In Flex 3 I have a SWFLoader[url]...
and after some time I invoke player.unloadAndStop(). And I always get this error:
ReferenceError: Error #1056: Cannot create property __tweenLite_mc on _swftest_mx_managers_SystemManager.
View 1 Replies
Mar 23, 2011
I have one Swfloader. This swfloader loads file A.swf.On creationComplete event, File A.swf loads another swf(file B.swf).
Everything works fine when I run the application once in the same machine.But when I run two or more instance of the application, the first works fine (both file A and B are loaded) but the second swf (file B) is not loaded by file A.why the first swf (file A) doesn't load file B, when the application is running in multiple instance ?
View 1 Replies
May 20, 2009
I created a "Loading" spinner in a SWF. I display this spinner in my main application SWF using SWFLoader.How do I make the SWFLoader transparent? Currently it uses Flex's default background color even though I've set backgroundAlpha="0".
My spinner SWF's main MXML: (Note the use of backgroundAlpha)
[Code]...
View 2 Replies