ActionScript 3.0 :: How To Get Values Of Embedded Object
Oct 29, 2009
I am making a videoplayer (and yes I have a reason to do it myself), though I'm stuck with getting the values out of the embed object.
This is my html code:
Code:
<div class="videoplayer">
<embed type="application/x-shockwave-flash" src="vidPlayer.swf" id="vidplayer" name="vidplayer" bgcolor="#000" width="100%" height="100%" quality="high" allowfullscreen="true" allowscriptacces="always" flashvars="video=hancock.flv" />
</div>
And some css:
Code:
.videoplayer{width:400px;height:328px;}
What I want is to read the width and height of this embed object in AS3, so the width should be 400 and height 300 as a var in as3.
I know how to do it with the flashvars. however I can't seem to get the width of the loader as following:
Code:
LoaderInfo(this.root.loaderInfo).width;
View 8 Replies
Similar Posts:
Apr 15, 2012
I would like to change the parameters of an object, or values like width and height, via javascript but I need a very lightweight method. In the end some of the thing that I want to change would be width, height and a parameters src value. So far I'm having no luck of getting it by id $('#test').attr('src','test.html') or the javascript method of getElementById().
What is the best - lightweight - method to do this?
An object being like this:
<object type="application/x-shockwave-flash" width="600" height="500" data="http://www.thisembed.com" style="margin:0px;padding:0px">
<param name="allowFullScreen" value="true" />
[Code].....
View 1 Replies
Oct 18, 2010
Basically, the user clicks on a button in a Flash movie and the following code is run:
Actionscript Code:
var variables_to_send_out:URLVariables = new URLVariables();variables_to_send_out.test1 = "this is a test";var myURLRequest:URLRequest = new
[code]....
View 1 Replies
Apr 4, 2011
I'm working with a web service and am returning an array to a field (that I set the data type as an Array). The result thus far is "[object Object]". How can I get the array values back out as a string?
View 0 Replies
May 18, 2010
I need to save email-id in my login form through the cookies. if I use shared object I am able to save but my requirement is need to save in cookies. How can I save? I got sample code from net. Attaching that code `package com {
import flash.external.ExternalInterface;
/**
* The Cookie class provides a simple way to create or access
* cookies in the embedding HTML document of the application.
[Code].....
View 1 Replies
Oct 14, 2011
Lets say there are 3 html pages, 1.html, 2.html, 3.html and these pages have 1.swf, 2.swf, 3.swf embedded in them respectively.Now if I'm viewing 1.html which contains 1.swf which has a button. If I click on this button I want to go to 2.html.Now this can be done using navigateToURL , but is there a way through which I will get the url automatically of 2.html, instead of hard coding the URL in the navigateToURL method.
View 1 Replies
Jan 7, 2010
I'm well aware of the Eleos/Microsoft issues that came before IE 8. However this isn't my problem. My company's website is able to display the swf file fine in FF but in IE, as soon as somebody clicks on the swf file, it does its thing without having to double-click (as in the ActiveX issue previously discussed) but also has what looks like a pink border around it. I'm testing in IE and created the Flash component in Flash CS4 using AS 3.0.Like I said before, the SWF object is activated on the first click, and doesn't have to do with the previously mentioned ActiveX control issue.
View 5 Replies
Feb 19, 2011
I am trying to figure how to pass string value(url) from html form to embedded flex object.the only method i found so far is "addCallback" method described in [url]...
View 1 Replies
Nov 30, 2009
I have made a html file in which a swf is embedded with swf object. this swf contain dynamically loaded audio files. It works fine in offline but when it is uploaded it does not show the movie(swf is not playing) I see only empty space. i thought that it may take time to load, but even after waiting for long time the swf did not play and it shows blank white space.
[Code].....
View 1 Replies
Aug 23, 2010
How should I change the following code if I want to put my flash object into a directory named "flash/", I tried changing the value to "flash/photo.swf" but it didn't work.
[Code]...
View 2 Replies
Aug 26, 2005
The only way I know how to create a video object for playing progressive FLV is by going to the libraby panel and clicking the context menu, then new Video, and dragging the video object to stage. But I would like to know if there is way to create a Video object with actionscript at runtime.
View 2 Replies
Dec 20, 2011
Change values of an object? I'm working with QuickBox2D.[code]...
View 2 Replies
Jan 12, 2011
how to disable sound from an embedded flash object with html?
View 1 Replies
Jan 27, 2011
I have embedded a Font in my flex app. That works on any components without problems.
@font-face {
src:url("../assets/fonts/wedtxtn.ttf");
fontFamily: "CSSFont";
cff: true;
}
However, when I try to apply the font to my TextFlow object, it is not working. However, it does work when I use the FTE and do it my self. I debugged through the TLF and the looks like the correct FontDescription is created.
Here is the code I use to create text (Full Source @ Pastbin)
var element:SpriteVisualElement = new SpriteVisualElement;
element.verticalCenter = 0;
element.horizontalCenter = 0;
// Create Text using TLF
var span:SpanElement = new SpanElement();
[Code] .....
View 1 Replies
Apr 13, 2011
How can I use an Embedded font from my library in a TextFlow object?I tried to use formattt.fontFamily = 'ArialNarrow'; where "ArialNarrow" is the Class name of the embedded font,but it didn't work.[code]...
View 1 Replies
Sep 13, 2011
I am working on an RPG-type game, and in this game I've defined multiple objects for characters, named char1, char2, etc, then assigned the objects values such as Health, Magic, Strength, etc. I then created a dummy object with all of these same values, except every value is set to zero. There are some 30 values in every object.
I would like to see if I could do something like:
Code:
dummychar = char1;
to transfer all of the values from char1 to dummychar instantly without having to define every value transfer, however, I can't seem to find the correct bit of code, because doing the above seems to erase all the values from the dummychar object completely.
The point of this excersize is the make the dummychar object a placeholder so I can switch char1 with char2, meaning char1 would take char2's place, and vice versa. The dummychar object will hold the values for char1, then char2's values will overwrite char1's values, then the dummychar's values will overwrite char2's.
So, in pseudocode:
Code:
dummychar = char1;
char1 = char2;
char2 = dummychar;
My current way of doing this includes telling every single value in the char objects to transfer, but that takes up quite a bit of coding space, and I was wondering if there is an easier way.
View 3 Replies
Apr 12, 2012
On my HTML page, I have <div> with an <iframe>, which references another page, that contains a Flash SWF object. If I set any of these:
display:none;
visibility:hidden;
opacity:0;
filter:alpha(opacity=0);
on the <div> that wraps the <iframe>, the SWF object sometimes remains in plain sight, while the <div>and <iframe> go out of view as expected.
[Code]...
This should work in the latest versions of Safari, Chrome and Firefox on a Mac and in the latest versions of Chrome, Firefox and Internet Explorer on a Windows 7 machine, and it should fail (no errors but the hiding behavior doesn't occur) in Safari on a Windows 7 machine.
It might be pertinent to note that one thing I've noticed about the SWF objects that have passed and failed are that the ones that have failed all revolve around video content whereas the ones that have passed don't. Granted I haven't tested more than a half-dozen objects, but that's quite a coincidence. :)
View 1 Replies
Mar 27, 2010
I have to call an ActionScript method via Javascript, but I have a problem accessing the flash object itself. I embed the flash file via the help of swfobject.
Previously, when I use the static publishing approach, I could easily get the flash object by calling these methods:
swfobject.registerObject("flash_object", "9", "expressInstall.swf");
var flash_object = swfobject.getObjectById("flash_object");
For some technical reasons, now I have to use the dynamic publishing approach (using swfobject.embedSWF). But, as mentioned in the documentation, the method getObjectById can only be used if you use static publishing approach.
Now, how can I access the flash object?
View 2 Replies
Feb 3, 2011
I've embedded a flash object in a form, and anchored it to the 4 borders. And when I resize the window, the flash application resizes too... but it tries to keep its proportions, showing unaesthetic black bars instead of change its width/length proportion.
View 1 Replies
Jan 31, 2012
I would like to know if there's a way you can take a screenshot of a flash object embedded in a page, and then email the PNG or JPG using the mailto: form submission to a specific address. So far I have investigated various javascript methods, but none of them have worked.
View 3 Replies
Apr 28, 2009
I have created a small banner for the homepage of a website for a company. The problem is that when they load the banner to their website the link no longer works. I have tested it myself and it works fine on my website. have the banner be clicked and open up in the same browser to another page on this website."define a way to pass link URL values into a flash object as a parameter."
"We need the functionality ASAP so can you start by working on this and creating a sample. It shouldn�t be too difficult as it is a fairly common requirement. Can you put together a basic example (it doesn�t need good graphics) that shows this idea working over " [URL]
View 5 Replies
Oct 13, 2010
I have name my dynamic texts as inp1.text, inp2.text, inp3.text etc...Now my question is.. when applying actionscripts (2.0 is the one I use), how to increment their values?How I can make inp1.text as inp2.text?
on(release){
if (Number(inp1.text)>0){n1=Number(inp1.tex� else{n1=0;}
if (Number(inp2.text)>0){n2=Number(inp2.tex� else{n2=0;}
[code].....
View 2 Replies
Dec 16, 2011
This includes some code and some traced output. I've been looking at this for 2 days and it stupifies me. I'll elaborate: There is a game object, its a dictionary object containing a screen tile with index/name tile_x_y So i can look it up using the x and y coords. The object contains lost of stuff but in this case especially: x, y , width, height, xtile, ytile (self explanatory i assume) & xmove, ymove (-1,0,1 depending on direction.)
So, now these objects move around the screen (yes its just a game) and check if they hit the screen bounds and if they try to move onto tiles that are occupied/non traversable. It goes fine for most objects but sometimes, or for some objects (no clue why and it changes on restart), halfway the boundaries check, the object internal x and y values go ballistic and i end up with a reference error on the dictionary object because tile 280 30 just doesnt exist.
[Code]...
View 1 Replies
Apr 6, 2012
I got an object (called tempEnemy) which is flying around and shooting. The problem is that I can't keep the value tempEnemy.rotateTo positive, i.e. It shall be between 0 and 359 degrees. Currently rotateTo ranges from:
rotateTo < 0 (bug) && rotateTo > 0 && rotateTo > 359 (bug).
tempEnemy.dX = tempEnemy.destX - tempEnemy.x;
tempEnemy.dY = tempEnemy.destY - tempEnemy.y;
//I added 180 because my tempEnemy object was looking and shooting to the wrong direction
tempEnemy.rotateTo = (toDegrees(getRadians(tempEnemy.dX, tempEnemy.dY))) + 180;
if (tempEnemy.rotateTo > tempEnemy.frame + 180) tempEnemy.rotateTo -= 360;
if (tempEnemy.rotateTo < tempEnemy.frame - 180) tempEnemy.rotateTo += 360;
tempEnemy.incFrame = int((tempEnemy.rotateTo - tempEnemy.frame) / tempEnemy.rotateSpeed);
View 2 Replies
Jun 4, 2010
I have an Object in actionscript which has a few dozens of properties each of which is defined to be bindable and has its own change event. I would like to listen to any changes made to this object without having to add a listener to all of its properties. Is there a way in actionscript using which I can listen to any change in the values of an Object ?
View 3 Replies
Dec 28, 2010
how to set default property values for objects that are being created in a loop.
In the example below, these propeties are the same for each object created in the loop: titleTextField.selectable, titleTextField.wordWrap, titleTextField.x
If you pull these properties out of the loop, they are null because the TextField objects have not been created, but it seems silly to have to set them each time.
var titleTextFormat:TextFormat = new TextFormat();
titleTextFormat.size = 10;
titleTextFormat.font = "Arial";
[Code]....
View 4 Replies
Feb 7, 2012
What I am doing now is loading a .png image with a Loader object. After loading the file I cast the loaderInfo's content to a bitmap and set the smoothing value to true. This works without a problem until I reach a ScaleX and ScaleY value less than 0.5.
For example, if I have a 1000x1000 object, scaling it down to 200x200 causes the bitmap smoothing to no longer work.[code]...
View 1 Replies
Apr 16, 2009
Basically, when a small link is clicked, the big title is meant to swoop down and the new page title is meant to swoop up. This isn't working, other than when the page is first loaded. The actionscript I'm using (as2) is:[code]
View 6 Replies
Dec 9, 2003
getting a bitmap to apply smoothing properly after being scaled very small.What I am doing now is loading a .png image with a Loader object. After loading the file I cast the loaderInfo's content to a bitmap and set the smoothing value to true. This works without a problem until I reach a ScaleX and ScaleY value less than 0.5.
For example, if I have a 1000x1000 object, scaling it down to 200x200 causes the bitmap smoothing to no longer work.I can reproduce the problem using all of the following Sizing methods:
Change the scaleX and scaleY properties on the bitmap. Directly change the height and width properties of the bitmap. Add the bitmap as a child of another sprite and change the scaleX and scaleY properties of the sprite. Add the bitmap as a child of another sprite and change the height and width properties of the sprite. Creating a new BitmapData object with a matrix scale and then drawing the original BitmapData onto it.I've also tried some other workarounds that I found when searching, such as:setting the scaleX of the image to 1.001 or 0.999 forcing the height and width of the Bitmap object to be even numbers.
Below is some sample code for reproducing the problem. (I am running this locally so I have a copy of testimage.png in my bin-debug folder)
public class MainObj
{
public var comp:UIComponent;
public function MainObj()
[code]....
View 2 Replies
Oct 17, 2006
I have a survey in Flash with 5 questions. Three questions have input text boxes for the user's answers, and two have sets of radio button options. I want to send the answers to a PHP script and insert them into a MySQL database.The text boxes work fine, but the values for the radio box responses show up as "undefined" in MySQL. I'd like to know how to pass the values from the two radio button groups into the LoadVars object. The code I have is:
Code:
submit.onRelease = function(){
var questionVar:LoadVars = new LoadVars();
questionVar.question1 = question1.text;
questionVar.question2 = radioGroup1.getvalue();
[code]....
View 2 Replies