IDE :: Making A Flash Video For CD Distribution?
Aug 5, 2009
I am new to this company and my employer who knows I haven't worked with Flash asked me to look into making a flash video for new software that he developed. I have looked at the Adobe website but am not sure where to start. Can I just download a editor, which one? Do I need something with the editor to make it work
View 1 Replies
Similar Posts:
Oct 31, 2011
setPublishPassword and setPostingPassword ?I do not quite understand, do not use an example.I set him groupspecWithOutAuthorizations, but was illegally set to groupspecWithAuthorizations how to do.
View 4 Replies
Oct 12, 2011
In the "Air for iOS" publish in Flash CS5.5 there is no deployment option for "In House" distribution.
Is there a way to publish and end up with a .ipa that can be used for "In House" distribution?
View 1 Replies
Feb 15, 2012
I have created a banner ad mechanism for a website. Banner clicktag, url etc. are stored in mysql database. At the moment I'm just getting random banner from all available and display it on a website.But how can I implement some sort of mechanism so that all banners get displayed evenly but in random order?
View 2 Replies
Jul 14, 2010
I'm wanting to build a project, it's an online video creation software in Flash so people could upload some music, choose videos from a library, edit the whole thing and export and download a movie in the end. I've seen websites like www.Animoto.com close to what I want to do but I can't find how it's made and I'd like to make it a little more advanced when it come to editing.
Here is the design I'm thinking about for the flash video editor. [URL] Is possible to build such a video editor in Flash?
View 1 Replies
Dec 15, 2009
So I'm trying to make Flash video work at [URL].. Things are going swimmingly in Safari and Firefox. Not so in IE.
I completely expect this is due to my Flash incompetence. where things are going wrong? I'm attempting different methods to input my video in each of these cases:
[Code]...
I know I'm missing something fundamental here, as all three examples are broken. I'm not necessarily just looking for the fix for each of these three. I'd like for your help understanding what I don't understand it, and how to understand it.
Eventually, I'd like to build a template where the client could throw either an .flv or .mpeg4 or .mov at it, and voilĂ , but is something like this even possible, given I correct my current, idiotic Flash principles?
View 1 Replies
Mar 6, 2012
I am looking to make a video editing software in flash. how to get media into a timeline? getting the media into a timeline and being able to move around the time of the video and have it display the media on a box
View 1 Replies
Jan 12, 2005
I am making buttons to control a video in flash and all is working fine except I would like the fast forward button to continue going forward as you hold it. At the moment I have this code:
[Code]...
View 5 Replies
Jul 2, 2006
I am making a flash video with externally loaded pictures. I have that working. Whats the problem then? Well I am trying to make it so those pictures appear instantly when called. So I need to preload them but I could not find a way to do this.
View 2 Replies
Aug 10, 2010
I am making a flash video of a star with different colors, but I want to change the stars colors randomly. I have got the code to change the star to random colors, but now I need to reset it to it's original color.
Does anyone know the default code?
this is the coding I'm using:
(Reset button/ Default codes to return my star to it's original state)
go_btn.addEventListener(MouseEvent.CLICK, goGo );
function goGo (e:MouseEvent):void {
star_mc.y = 200 ;
[Code]....
View 2 Replies
Aug 7, 2009
I'm working on a Flash video slideshow (which you can preview here).
I would like to be able to make it so you can click a button (I've got one made in the doc already) that will make just the video on each "slide" go full screen, similar to how you can do so with other videos on sites like YouTube and others.
While what I've linked to above is just a template I'm messing with, I'd like to be able to have a video on the right, let's say, with text on the left, and then be able to click a button (perhaps under the video that says "full screen) and have the video that is there fill the whole window and play. And then, hitting escape would bring you back.
I've seen plenty of tutorials for making Flash go fullscreen, but nothing out there yet for just the FLV contained on the page go full screen.
View 1 Replies
Dec 16, 2006
is there anyway to make a flash chatroom with video webcam capabilities without using flash comm / media server?
View 4 Replies
May 23, 2010
I"ve created some flash content that contains two .flv files that I'm interested in distributing. My question is- how do I "package" the files together so the .flv and .swf open together and I also need to ensure that no one else can open and edit them in Flash(ex- someone receives the files, has flash on their computer and can alter my original content).
View 2 Replies
Sep 5, 2011
I have just installed FMS. As fast as I see, there is a Vod application, sending stream from static files. We need to have FMS send a live stream, but from a ready made file.
Is there an existing application doing this already? Or does this would require programming a new app on our end? Is what I'm trying to do even possible with FMS?
View 1 Replies
Oct 8, 2011
I need to generate 238 numbers, with a range of 1-4, but I want to weight them, so there's say 35% chance of getting 3, 28% chance of getting 2, 18% chance of getting 4m, and 19% chance of getting 1.
[Code]...
View 2 Replies
Dec 11, 2010
I like to know what is the best Linux distribution for professional use of FMS (streaming events on the web, HD, 50 to 100 viewers). Debian Lenny/Squeeze, CentOS, RedHat?
View 5 Replies
Jul 30, 2004
We are in the process of builing a statistics simulation for a client. One of the requirements of the simulation is to first generate a set of 1000 random numbers from a Normal (or Guassian) distribution.Does ActionScript have the builty in functionality to generate random numbers from anything other than a Uniform distribution?If this functionality is not built in, does anyone know of a component or pre-built script that can provide this functionality?How hard would it be, if either of the two options above are not possible, to generate random numbers from a Normal(Guassian) distribuion using ActionScript?
View 5 Replies
Jan 16, 2011
i would like to generate a random number from range [3,200] by log normal distribution.and i using visual studio 2010....i had tried used the Central Limit theorem to obtain normal distribution, but not the answer i want...
Code:
for (int ttt=1;ttt<10;++ttt)
{
aa+= (rand()%197+3);
[code]....
View 3 Replies
Feb 26, 2009
I am trying to use Jim Bumgardner's Clumping example ([URL]) to create an interface. Part of it is that I am creating clusters of bubbles (one parent bubble with n child bubbles). The child bubbles all follow the parent, so far so good. Next step is to create a random distribution of these clusters. So the clusters all need to be n pixels away from each other. My idea was to build this into the clumping algorithm. I.e. if one parent is too close to another parent, their x and y will increase/decrease with a value. Also I am trying to let the clusters stay in the boundary of the stage. Simply by adding to the algorithm the bubbles should move n pixels to the left when they are too close to the left border of the stage (same principle for the other 3 sides).
Problem is that it kind of not works what I am trying. I extended the algorithm so far that it became a mess difficult to see what's going wrong (see attachment). Can somebody help me with describing how I can improve the Clumping algorithm so that it meets my requirements (1. Clusters distributed randomly, 2. Stage boundary collision)? Pseudo-code is also okay
View 1 Replies
Feb 5, 2011
i'm attempting to populate an array with random numbers, but the random numbers must be a certain, minimum distance apart from each other.i've populated an array with 5 random numbers between 0 - 100:[code]after populating and sorting let's assume that myArray now contains these values:26, 27, 42, 92, 97 now i would like some ore all of the array values to be reset, if they need to be, so that they are at least a certain percentage (let's say 10%) of the maximum value (100) apart from each other.the first 2 values (26 and 27) are not at least 10% apart and neither are the last 2 values (92 and 97). however, if i simply moved the value 27 10% away from 26, so that 27 changes to 37, 37 now conflicts with the next value of 42.what is the best approach for populating an array of random numbers who's values will be at least a certain percentage apart from one another but still random.it may go without saying, but i'm looking for a solution that is portable, where maximum values and minimum distribution percentages can be anything, not just for my example above.
View 2 Replies
Jul 20, 2010
I have a looping aquarium with looping swimming fish. I want to be able to click the fish and they make a pop-up appear with info about them. I can't figure out the code to launch the pop-up? I am using CS3 and action script 2.0.
View 5 Replies
Aug 4, 2009
I'm working on a Flash video slideshow (which you can preview here). I would like to be able to make it so you can click a button (I've got one made in the doc already) that will make just the video on each "slide" go full screen, similar to how you can do so with other videos on sites like YouTube and others.
While what I've linked to above is just a template I'm messing with, I'd like to be able to have a video on the right, let's say, with text on the left, and then be able to click a button (perhaps under the video that says "full screen) and have the video that is there fill the whole window and play.
View 3 Replies
Jan 12, 2005
I am making buttons to control a video in flash and all is working fine except I would like the fast forward button to continue going forward as you hold it. At the moment I have th
code:
on(press) {
videoclip.nextFrame();
[code].....
View 5 Replies
Aug 4, 2010
In my current project I need to create a bitmap from the last frame of a video. For this I use:
Code:
var _vidBitmapData = new BitmapData(video.width, video.height, false, 0x0000ff);
_vidBitmapData.draw(video);
var bmp:Bitmap=new Bitmap(_vidBitmapData)
This works like a fairy in wonderland if I create the video with dimensions matching the stream:
Like
Code:
video =new Video(1280,800)
However, when I change the Video's size on receiving the onMetaData Event according to the actual streams width and height properties, the capture i get from _vidBitmapData.draw is still in the dimensions of how I created the Video. So if I do
Code:
video =new Video(10,10)
and then
private function onMetaData(metadata:Object):void {
video.width=metadata.width;
video.height=metadata.height;
}
I get a nice display of the video.
However when doing the
Code:
var _vidBitmapData = new BitmapData(video.width, video.height, false, 0x0000ff);
_vidBitmapData.draw(video);
var bmp:Bitmap=new Bitmap(_vidBitmapData)
I get a 10 x10 px image....
View 4 Replies
Jul 18, 2010
I'm just trying to make it so the video in my swf (the flv) does not immediately play when a web page opens. I have: imported the .mov into flash, creating a flv file
given it a skin converted it to a symbol (Movie Clip)
given it an instance name of movie_Clip
created an actionscript layer with the simple code of: movie_Clip.stop();
Shouldn't the clip be stopped upon opening the SWF file? How can I make it be stopped?
View 4 Replies
Aug 25, 2010
I have cs4 web premium which doesn't include aftereffects. I need to however make a green/blue backgrounded video transparent (alpha channel, if I got it right) to be used by flash/as3. I'm not sure if I can use either firework or illustrator do the job? another question is, for a short movie clip, which tool can be used to edit the movie frame to turn the non-green/blue clored backgroud into green (then adding alpha channel...)
View 1 Replies
Dec 6, 2011
I'm trying to make a P2P video chat application with Flash Builder 4.5 and Flash Media Server 4.5.First, I've tried a simple sample application using Cirrus(Stratus). It worked very well!NetConnection -> NetGroup -> 2 NetStreams -> netstream play and publish -> last, netgroup post.The sample was all OK.[code]I couldn't get events about NetGroup and NetStream any more..When using Stratus, It worked well...I am not familiar with FMS.. did I skip something in FMS setting?
View 5 Replies
Feb 14, 2011
I'm making a working scrubber on a video, but having problems. The scrub itself it starting out in the middle of the loadbar. I've looked everywhere, trying to find out what is wrong with it. Here is the code and link to my .fla [URL]
[Code]...
View 1 Replies
Jul 15, 2004
tutorial for making a buffering video player, with scrubber etc that lets the viewer see how much of the video has loaded whilst they watch it. I've been searching for ages but to of no avail!I'm using MX, not MX 2004
View 2 Replies
Jul 5, 2010
I want to make an instructional video with various panning, cursor movements, and info box popups. I'm going to attempt to do this video in all actionscript and expect to use the Timer class and Tweener for all the tweening. What's the best way of approaching a project like this? Can Tweener be stopped in between its tween in order to pause?
View 3 Replies