I'm a novice ...in that i've taken a few courses n poured through bunches of cool flash widgets, components and techniques. now it's time for my own website ... I do graphic design n really want to use some of the ready mades for convenience and economy...r there similar non flash products?
...
I have 2 movie clips in my scene, one is charlie brown running and another is lucy lifting a football.
The movie clip instances are aptly named: lucyLifting and charlieRunning.
When I get to frame 75, I run the following code:
stop();
trace(lucyLifting);
trace(charlieRunning);
lucyLifing.stop();
charlieRunning.stop();
a...
Hey guys,
I have a page with some html content and my Flex app in the bottom left hand corner. At one point, the Adobe Flash Player Settings popup appears, but for some reason I can only just see the top of it, the rest is off screen towards the bottom. Does anyone know how I can fix this so that the user can interact with the popup? Th...
I'm populating a listbox like this:
dp.addItem( {label:"red dress", data:"OV4MP/23OL.swf"} );
Instead of data:"OV4MP/23OL.swf", I would like to make part of the data file name a variable from a dynamic textbox named centerPt that belongs to the parent movieclip, so I did this:
dp.addItem( {label:"red dress", data:"OV4MP/23"+MovieClip...
Hi,
In Flash CS4 I make a new moviclip put a vector in it and make it bitmapascache and put it in another movieclip. Which does not seem to work right now, the same thing seems to wrok in an old actionscript 2.0 project though.
I'm not caching through code but by visually in CS4.
...
Hi!
Currently I'm searching for a free solution to simple edit some photos at the users browser. Resizing and Cropping would be mandatory.
I'm not searching for an online service (for example SUMO or PIXLR which are great), because I want to include the software into a WYSIWYG Editor.
JavaScript would be really nice, but it would have ...
The following code shows me that cacheasbitmap is turning on and off like it is suppose to but, I never get to see it visually like I did in AS2. Is this a error or a change in actionscript?
package {
import flash.display.Sprite;
import flash.events.MouseEvent;
public class Bitmapascache extends Sprite
{
private var isOn:Boolean=fa...
Hi,
I'm currently working on making a flash program that creates a movie out of a folder of images. There are buttons to control play, pause, stop, forward, reverse and the like. Its going great but when I play the sequence the image flicker from the loading time becomes almost seizure inducing. Each sequence is about 1000 images long...
hi! :)
anyone know how can i control a projector on a pc, from another projector on another pc, in the same LAN?
any solution is good for me! :)
thanks a lot in advance for any info.
...
I am creating a little JavaScript music player that sits on the btottom of the page, a lot like streampad. But streampad uses a flash progress bar for the song and JavaScript for everything else and I am having a hard time finding anyone who does this with JavaScript alone. Can anyone point me in the right direction on how this can be ...
I'm currently trying to make a dynamic menu via an array and a loop. So when someone clicks on the first item of the array, "menu_bag_mc" it will link to the content "menu_bag_mc_frame" (or some name that will be unique to this array) that is another movieclip that will load. Below is the code I have so far:
//right here, i need to make...
AS3 Code:
import flash.utils.Dictionary;
var num1:Number = Number.NaN;
var num2:Number = Math.sqrt(-1);
var dic:Dictionary = new Dictionary( true );
trace(num1); //NaN
trace(num2); //NaN
dic[num1] = "A";
trace( num1 == num2 ); //false
trace( num1 === num2 ); //false
trace( dic[num1] ); //A
trace( dic[num2] ); //A
Concerning the key co...
Hello,
I am trying to call the browse() method of the FileReference class from JavaScript (a user clicks on a text that uses the ExternalInterface to call a method in Flash).
Unfortunately, I receive an error that tells me it has to be a direct action of the user (like clicking a button). I have searched through Google and realized thi...
Trying to build a website where the background of the site is a video and then there would be an actual html page laid on top of it.
...
I have one website and few mp3 in one folder fro user to download.
Is there any flash or php script which shows the content of folder in nice gui way so that user can click on them and download them
...
Hi. I need to take a picture from a webcam into a webapp (PHP5/JQuery/HTML5) but I cannot use Flash; Is there a light java applet or any alternative technology for this?.
...
Our team working on flash/Asp.net shopping cart projects
In our projects we need to get previous flash file data.
After two or three form submission the first page flash file data are missing.
How can we maintain the state of flash file data?
If any idea please help our team to do the task
...
Is there a way to detect whether an FLV file contains video, audio or both?
The flv file is streamed to a flash client, that needs to show a certain view depending on the data in wrapped in the flv file.
...
In the Flash authoring environment I can edit a library symbol and all on-stage instances based upon it reflect the changes. How can I do the same thing in ActionScript? There seems to be no way to address a library symbol.
For example:
Inside Flash CS3, I have created a Square.swf file that has 100 instances of the library symbol Squa...
Hi, i'm trying to effect a number of movieclips inside another movieclip, in this case set the alpha to 20%.
But all i get is an error message. (TypeError: Error #1010: A term is undefined and has no properties. at array_fla::MainTimeline/frame1())
Anyone knows why it's not working?
var myClip = new mcClip;
addChild(myClip);
myClip.x...