Is there any way to embed Flash completely in HTML, without reference to an external SWF file? I ask because I would like to send an HTML file as an email attachment that the recipient will open in a browser and fill out as a form. The last step is that they will copy the result to their clipboard, paste it into a new message, and email ...
I'm just curious if it's possible that Flash objects can access the DOM of the document that has embedded it.
...
Question: The below code crashes flash...
Why?
The crash causing lines seem to be
//var uiColor:uint = bmpd.getPixel(i,j);
var uiColor:uint = bmpd.getPixel32(i,j);
trace("Color: "+ uiColor);
I am trying to take a snapshot of a movieclip and iterate through all pixels in the image and get the pix...
OK. I've got a class (which extends MovieClip) that loads in an external SWF (made in pdf2swf). That is added to another class which has declared doubleClickEnabled = true and I'm listening for DOUBLE_CLICK events.
Problem is when the SWF is loaded my code picks up no DOUBLE_CLICK events, only CLICK events. I've tried it without adding ...
in studying actionscript 3's graphics class, i've come across the undocumented drawRoundRectComplex() method. it's a variant of drawRoundRect() but with 8 parameters, the final four being the diameter of each corner (x, y, width, height, top left, top right, bottom left, bottom right).
//example
var sp:Sprite = new Sprite();
sp.graphic...
Ok, so I want to send AJAX requests to my website from my Flash games to process data, but I don't want people downloading them, decompiling them, then sending fake requests to be processed, so I'm trying to figure out the most secure way to process in the PHP files. My first idea was to use Apache's built in Authorization module to requ...
I'm pretty sure this is a Firefox or flash-related bug, but I just want to check if anyone has ran into this problem or knows how to fix it.
Basically, we have a multi-file upload widget for our highly dynamic web app (think Gmail). We've tried both uploadify for jQuery, and YUI uploader. We've also tried taking those out of our app int...
Hi ppl, Im starting a new project that consist in a game made in Flash, I use PHP for the server counterpart and a MySQL database.
My question is, what do I need to host my game?.. I mean, how good (connection, HD space, procesor, ram, etc) should be my hosting to be able to take care of all the stuff I need...?
And, if you know some ...
I asked this question about passing keystrokes to the page. Is there a simple way for me to add this to an already compiled swf?
...
Hi,
Is it possible to create plug-in for "Adobe Flash Professional"..like you can do with Adobe Indesign or Adobe Illustrator ?
I googled a bit, but could not find any SDK ..maybe I did not searched hard enough.
...
hi,
how to create dynamic tool tip and get data from XML.How to do it?
Thanks,
aravindakumarThangaraju.
...
I have been cosuming webservices using alducente.services.WSDL classes with old ASP.NET services from Flash.
Trying the same as3 calls with the new WCF services I get the error that the method I am calling does not exist.
According to http://stackoverflow.com/questions/1614157/flash-connecting-to-a-wcf-service I have declared the func...
I created a MovieClip symbol in flash containing a dynamic TextField and a background. I exported it in a SWC(using this method) and I'm trying to use it from flex. When I try to change the default value of the text field the new value is not displayed(indeed the default value I put in flash is cleared on screen, but in the debugger it s...
Hi at all,
I am a student a I have to develop a simple application in flash and FMS.
I don't have money for buy flash.
How can I do ?
...
Why Flex SDK is free and Flash CS4 not ? Where is the trick ?
...
i am using this code below to dynamically capture the name of the button pressed and then playing the related balloon movie clip animation.
stage.addEventListener(MouseEvent.CLICK, player);
function player(evt:MouseEvent){
var nameofballoon = evt.target.name;
nameofballoon =nameofballoon.substring(nameofballoon.length-1,nameofballoon...
So I have Html like this http://trac.edgewall.org/wiki/RecentChanges (I want to create some Flash Track reader which will be opensource)
I need to list in my DataGrid Index of all viki pages in form like
+-----------+--------+
|page name |page url|
+-----------+--------+
| name | url |
+-----------...
I'm using SlideShowPro with Flash AS3 and I have the following code:
function onSlideShowClick(event:SSPImageEvent) {
if (event.type == "imageClick") {
// modify the link for when the image is clicked.
}
}
How can I modify the link for when the image is clicked? Can that be done here? Elsewhere?
...
I'm trying to label an animated pie chart, and I've been having a great deal of trouble getting rotated objects to line up with trigonometrically-positioned objects. So, for example, if I have a pie piece that's middle is angle theta and has been rotated n degrees in a tween, and then I try to position a label with code like this:
label...
When using flash remoting with amfphp, what can I write in php that will trigger the 'status' method that I set up in my Responder in Flash?
Or more generally, how can I determine if the service call has failed? The ideal solution for me would be to throw some exception in php serverside, and catch that exception in flash clientside......