Looking How To Create This...
I like to look around and get ideas....can someone inform me how the computer image is done? Flash or an outside program?
Website:
FlashKit > Flash Help > Flash Newbies
Posted on: 02-27-2006, 11:10 PM
View Complete Forum Thread with Replies
Sponsored Links:
Create, Delete, Create Event Handlers
Hi,
At the moment I create an onEnterFrame function to ease a movie clip into view. I then delete it. I want to be able to recreate a similar onEnterFrame function later to swoosh the movie clip out of view. At the moment weird things happen when I try and do the second onEnterFrame. Am I doing something illegal here?
I know I could put this all in the original onEnterFrame, but I don't wanna be wasting processor time doing an if statement every frame to work out if it's time to swoosh out the movieclip. Or should I not worry because that's negligible cpu time?
Tom
View Replies !
View Related
Create A
Any help with this would be very, very appreciated.
I'm looking to create a flash animation that would allow the user to "scratch off" a section of the animation, revealing things underneath. I've yet to figure out a way to allow user input to change the alpha value or visibility of a part of a clip, so I figure the only way to allow the user to scratch something off is to have each pixel be its own clip (with its own alhpa value and visibility).
You can see the obvious problem here; running a duplicateMovieClip command 600 times takes forever and tends to crash Flash.
I've seen this done in Director, but I figure that's just one of those Director features that Flash lacks.
Any help at all -- plans of attack, etc. -- would be much help.
Thanks,
Dan
View Replies !
View Related
Help To Create A Swf Like This
Is There a tutorials to create a flash like this?
how this swf file work?
http://fifaworldcup.yahoo.com/es/
if you can't see the flash just click in Replay Ad under Budweiser ad
[Edited by garcacesarpo on 03-17-2002 at 12:58 AM]
View Replies !
View Related
How To Create These?
Hey Everyone,
I how do i create those preview consols (graphic eq)in the soundfx sections of this flash kit site.which reacts the the sound clip being played?
See here to take a look.
http://www.flashkit.com/soundfx/Instruments/
Any ideas?
Thanks in Advance!
Blue Dragon
View Replies !
View Related
How Would I Be Able To Create.....
Hey.. I am recently pretty new to Flash MX and im trying to get into the more advanced features like the action script, but only find dust when i use it.. =/. I know allll the basics but 1 thing i would like to know if someone could help me is... how would I be able to load a movie SDF.swf and see how much bytes total, and how many bytes I have loaded? Just a quick question if someone could answer please...
View Replies !
View Related
Trying To Create App....please Help
I want to create an app where txt files can be loaded into a form (which will be a flash executable file) and appear in the proper fields. Is there any open source file like this? Or any file that can help me?
Any help would be greatly appreciated.
View Replies !
View Related
How Do I Create A Swi
i want to post my movie but it only accepts swi not swf so it wont let me attach it so how do i make a swi either that or how do i compress sometihng into a zip i have never done it before thanks
View Replies !
View Related
How Do I Create Something Like This...?
If you go to this site http://ramblinwreck.ocsn.com you will see at the top right hand corner a scoreboard. I would suspect that it is pulling the scores from a file or database? How can I easily create something like this in Flash MX?
Thanks in advance,
TDSILK
View Replies !
View Related
Can I Create....
what I want to do is this... I don't know the syntax, but I can tell you what I want generally...
This is it
in one frame on the syntax
On Button release ... Variable equals this
on another frame the syntax is this
if variable equals this, go to and play frame this
that's it, that's all I want
-BpG
View Replies !
View Related
Trying To Create A Pop Up
Hello,
Man, you guys are the best for us n00bs.
Anyway, I am trying to create a pop up window which is seemless. what do i mean by that? I mean, that it has no "title" bar at the top, just a boarder.
I don't have an example, unfortunately.
Anyway, are there additions to java code that would creat the window like that?
Again, thank you for your help.
View Replies !
View Related
How Would I Create This
I want to build a timeline similiar to the one at:
http://www.bioport.com/AboutBioPort...ne/timeline.htm
Where can I find a tutorial for something similiar... especially the scrolling time bar at the bottom.
I'm using Flash 5, but would consider upgrading to MX if it would make this project easier.
Thanks!
Michelle
View Replies !
View Related
Create Xml?
------------------------------------------------------------------------
I recently created a quiz that pulls its questions and answers from xml files.
Now I am hoping to create a second flash application that allows the user to create the xml files. I have been able to set up a user interface that allows the user to type their questions and answer into various text boxes. When they are finished they press a button and using the createElement, and appendChild codes the xml is created.
I am having a problem with the next step. How do I "save" the xml the user has created to an outside file that can latter be picked up by the Quiz. (The whole thing will be installed on the user's hard drive from a CD).
Any help would be greatly appreciated.
View Replies !
View Related
How Do I Create This?
Hi all,im wondering how do i create this effect (http://www.2advanced.com/flashindex.htm ) when i click on one of the menu,the 'main frame' screen enlarge,and when i click 'expand'the screen goes back to its original size.
View Replies !
View Related
How To Create ?
Im creating a football coaching cd-rom package.....i've produced drills in flash, which play and pause at key areas, with the user selecting next to carry the drill on. I want to add a slider bar underneath the movie giving the user the option to 'slide' to any part of the drill by using the slider. Is this possible, help would be great ! Thanks.
View Replies !
View Related
Create Name Help
Create Name:
I am creating a game, And you get to create your own name, Ive layed out all of the letters and symbols I want. Heres the code for the letters:
on (release) {
_root.name += "A";
}
Of course, A is A-Z. The same code for all my letter buttons just B-Z.
Now, My problem is the getting rid of a mistaken letter. I couldnt finda or create a code to subtract a letter.
If any one knows how to do this, Please help out.
"there is no spoone" - The Matricks
View Replies !
View Related
How To Create XML On The Fly With PHP ?
Hi,
I am creating a directory browser ,Actually my flash reads the directory lists from the XML file called "tree_source.xml". this xml file created by a php file . Now i want modify the php file in such a way that flash directly reads the directory structure from the php file inorder to speed up the browsing.
This is my flash script.....
// load and assign data source
myTreeDataProvider = new XML();
// ignore whitespace in XML (important)
myTreeDataProvider.ignoreWhite = true;
// load external XML file
myTreeDataProvider.load("tree_source.xml");
// onLoad handler for XML data
myTreeDataProvider.onLoad = function()
{
myTree.dataProvider = myTreeDataProvider;
}
// set up tree listener
myTreeListener = new Object();
This is the PHP Script to create XML
$photodir = "/albumshan";
$path = getcwd().$photodir;
$fp=fopen("tree_source.xml","w");
fwrite($fp,"<root>");
structure($path,$fp,$path);
fwrite($fp,"</root>");
fclose($fp);
// Function
function structure($rootdirpath,$fp,$dir)
{
unset($root);
if($dp = @opendir($rootdirpath))
{
for($i=0;($file=readdir($dp))!==false;$i++)
{
if (is_dir($rootdirpath."/".$file) && $file != "." && $file != "..")
{
fwrite($fp,"<node label="".$file."">");
structure($rootdirpath."/".$file,$fp,$dir);
fwrite($fp,"</node>
");
}
}
}
closedir($dp);
}
Please help me ..
Shan
__________________
View Replies !
View Related
Help - How To Create Pop-ups?
i made a button and i want it to open the enlarged version of my thumbnail..
the border should be just a standard xp blue menu thing. no internet explorer buttons and stuff
how the hell is this possible?
a thousand thanks in advance!
View Replies !
View Related
I Want To Create A Map Of The U.K
without having to draw it out manually everytime, how can i achieve this.
i want to make something close to this: http://www.shadowandlight.net/
but instead of europe i just want the U.K, so i need maps or segmants of the UK. can anyone help?
View Replies !
View Related
[F8] How Do I Create Something Like This?
Greetings!
Im trying to recreate a game that ive found online as a bit of fun and a nice way of learning flash, but i can't seem to get my head round it and it's really got me stuck. I thought it would be easy as it seems such a simple game:
http://www.ferryhalim.com/orisinal/g2/applegame.htm
I just can't figure out how the apples work. If anyone has any suggestions that would be great.
Please feel free to look at my fla file
Thanks
View Replies !
View Related
How Do I Create This?
Ok - I am a newbie to graphic design within flash and was wondering if someone could point me in the right direction. what program would I use to create a graphic like the one one you see here...http://www.lenderhomepage.com/conten...&acctid=100770 - the darker blue, arched graphic underneath the navigation.
I'd appreciate any help I can get.
Thanks!
View Replies !
View Related
How Can I Create This?
I have noticed most sites are now created full in flash like this one for an example - http://www.zigideas.com/welcome.html - how would I create this? and how large would the flash movie have to be? - any help would be great and appreciated!!!
View Replies !
View Related
[CS3] Is There A Better Way To Create This FLV?
I'm having some issues with my project. Here is what I have done so far.
I have made a presentation in flash CS3.
I plan on exporting the movie to a .mov
Then converting the .mov into an FLV (using sorenson squeeze) so that the file size is much smaller and I can use the FLV player controls to stream the movie online.
Now in the background I would like to use a looping .mov video however the video is very large. So I figured I would use quicktime to export a bitmap sequence (PNG's) and import that way. However when I do this I get the error:
"Error creating flash movie. There was not enough memory available"
My system is very powerful (Dual core with 4 GB's of RAM)
Now I am kind of stuck. I want the movie to stream (like FLV's on youtube) and I figured there's no better way of doing this all then making everything in flash, exporting to .mov and then converting to FLV via sorenson squeeze.
Any suggestions on a better way? Should I just import the video rather then a bitmap sequence. (there is 451 images at 720 x 480).
Thanks for any input!
Mark
View Replies !
View Related
How Do You Create This?
Please Help!!! I'm in the process of creating a clients website and would really like to incorporate the bubble loading idea as seen on this site:
http://www.caterersexpress.co.uk/
I know that it is generated by actionscript so any online tutorials or step by step help would be very much appreciated.
Thanks
Gray
View Replies !
View Related
Create XML
i am really new in actionscript..
i want to create a XML file using actionscript..
the format of XML file is like follow,
<?xml version="1.0" encoding="utf-8"?>
<PERSON>
<id></id>
<area></area>
<amount></amount>
</PERSON>
the data for id, area and amount wl keep increasing, depends on how many record i hav...
wat i has done now is as follow,
Code:
xmlTableInfo = new XML();
xmlTableInfo.xmlDecl = "<?xml version="1.0" encoding="utf-8"?>";
xmlTableInfo.appendChild( xmlTableInfo.createElement("PERSON") );
???
i don't know how to loop the data into id, area and amount tag...
please help me.... thank a lot...
View Replies !
View Related
Create XML With AS3?
Basically every tutorial on the internet is about importing an XML file and parsing it. The only hints on how to create and XML I've found are in AS2, and AS3 has a new XML object that works differently or so I've heard (though it has legacy support for the AS2 object).
So how do I make my own XML from scratch, in AS3, using the new XML object, to be written as a file?
Just a few quick and simple examples is all I need to get started. Thanks!
View Replies !
View Related
How Can I Create This
heres a intresting portfolio site
http://www.melanchology.com/
at the bottum they have 3 columns i want to do they same thing where they select from the first list they select from the secong list then the description shows up and loads a swfs
which of these two methods would be easier to use
1.use a array or list
2. use movie clips
View Replies !
View Related
About Create MC
_root.createEmptyMovieClip("temp1",-1);
_root.createEmptyMovieClip("temp2",0);
trace("temp1 is "+temp1);
trace("temp2 is "+temp2);
temp1.removeMovieClip();
temp2.removeMovieClip();
trace("temp1 is "+temp1);
trace("temp2 is "+temp2);
Why using -1 as depth, mc cannot remove??
View Replies !
View Related
How Can I Create This?
I am creating a basic Flash app. that allows site visitors to visually customize a product. What I'd like to do is give users the ability to somehow send the visual information to a friend (with the idea of bringing the friend to the site).
Ideally I'd like to give the user the ability to save their creation on my site, and then email the link to a friend. But I have absolutely no idea how to accomplish that.
My second choice would be to have a screenshot taken of the product, and that screenshot then emailed by the user.
Any help is appreciated, thanks!
View Replies !
View Related
How To Create An FLV?
I was recommended that instead of having a quicktime video or something like that tha tmay be problematic in a web page I use the stand alone video encoder in flash 8 to create an FLV and then insert into Dreamweaver. Is this the best option? IF so, how is it done? Any explanation on how to or links to tutorials?
Thanks
View Replies !
View Related
Can Someone Help Me Create This?
I want to create something really exactly like this just http://www.alphagraphics.com On the index page the flash header image. thanks for your help. I dont know much about flash. so please give me as much info as possible. thanks agian.
View Replies !
View Related
How To Create Msn
since i just leaned that I can combine actionscript 2 movie and an actionscript togther under a flash projector, i was wondering how to create Msn messenger using flash. First i have to figure out how to log in and out, and I have to figure out how to obtain the list of users for that account, then i have to figure out how the chatting part works. But i don't know how to do any of that, and i just thought that Actionscript 3 was better for this purpose.
If i get any useful feedback, thank you.
http://silentsleeper.com/SilentSleeperOS
Anyone?
How can i get it to function like http://6kbytes.com/
Edited: 03/14/2008 at 10:51:47 AM by gwklam
View Replies !
View Related
Cannot Create New App In Mgr
I just installed the latest FSM2 on Fedora 5. Everything went perfectly, I didn't even have to add any libraries.
I fired up fms2_console.htm on my windows client and logged in to my remote server. In the "Manage servers" pane I can see my server and I can ping it so I'm sure I'm connected properly.
When I go back to the "View applications" pane there is nothing in the list. When I click on "New Instance..." nothing happens. I have restarted the server from the console and I've restarted the console but nothing helps.
Does anyone have a clue what I'm doing wrong?
P.S. Why does the button use the word "instance" instead of "application"? Am I supposed to create some kind ofapplication "class" first?
View Replies !
View Related
How To Create Msn
since i just leaned that I can combine actionscript 2 movie and an actionscript togther under a flash projector, i was wondering how to create Msn messenger using flash. First i have to figure out how to log in and out, and I have to figure out how to obtain the list of users for that account, then i have to figure out how the chatting part works. But i don't know how to do any of that, and i just thought that Actionscript 3 was better for this purpose.
If i get any useful feedback, thank you.
http://silentsleeper.com/SilentSleeperOS
Anyone?
How can i get it to function like http://6kbytes.com/
Edited: 03/12/2008 at 06:11:13 PM by gwklam
View Replies !
View Related
|