Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Help On Making A Promtional CD



I have a school project, and thought it would be neat to hand in the report on CD in the form of Flash presentation.

I don't know that much about flash, so I'll be downloading a free template somewhere and pluggin my report into it.

I was just wondering how I make the flash presentation run by itself on a CD without having to embed it in an HTML document. Is this possible? Any tips would be appreciated.


Thanks



DevShed > Flash Help
Posted on: November 18th, 2004, 08:14 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Making A Grid And Making It Mask Images
Hey guys,
I have this code below and i am trying to make each of these movie clips dynamically mask an image. For some reason it still does not work. I can get the grid to come out correctly but the masking is suspect. Any help would be very much appreciated. Thank you

num=0;

for (i=0; i<12; i++){
for (j=0; j<45; j++){

this.createEmptyMovieClip("a"+num, num)
this.createEmptyMovieClip("b"+num, num+1)
//trace(num);
//trace("IMAGE DEPTH: " + this["b"+num].getDepth());


this["a"+num].attachMovie("thelinked", "thelinked2", num);
this["b"+num].attachMovie("thelinkedimage", "thelinkedimage2", num+1);

mc=this["a"+num]["thelinked2"];
image=this["b"+num]["thelinkedimage2"];

mc._x=i*12;
mc._y=j*12;
image._x=i*12;
image._y=j*12;

image.setMask(mc);




num++;
}
}

Making A CD
hey,
i wanna make a CD that when i put it in it autoruns. I know how to make autorun work but in the flash movie that will come up i wanna have a button so that when i press it it will start an installer or open up a file. What actionscript would i have to use for the button
Any help will be great thanx.

Making A Cd
i want ot make a cd so that when my autorun pops up i click on a button and it opens a video. what actionscript do i have to use for the button so the vidoe opens.

Making A Box Out Of Nothing
I'm trying to make a box that is "drawn" starting from a dot. I want it to start as a dot that stretches down into a line, than splits left and right, goes to a point, they both turn down, than turn again at the bottom and meet in the middle. I've tried tweening it, but it gets frigged up. What can I do? Using a mask sounds like a pain in the butt.

Making A Cd
Hello!
can anyone tell me the basics steps for making a flash cd? (of course a detailed tutorial would also be very much appreciated
so far i only know how to make websites.
Thank you for your help!

Making...
I have Flash MX (just got it) I have never had any previous version of flash so i do not know how to do anything on it, so i was wondering how do i make "movies" or....

Making Cd....
hi guys, i am making a cd of my portfolio, i will have thumbnails of my work and then would like to be able to click the thumbnail and the .jpg file of that project will open up. how do i do this? what action do i give the button for it to open up a .jpg outside of that .swf? or do i need to have the .jpg's within my movie?

thank you in advance for your help!

Making A
Hey... does anyone know if it is possible to make one of those "flash is loading" ect. items in swish for a swish animation..> I made the animation but it just shows a blank screen for the first 15sec. it takes it to load i want the viewer to know that a flash animation is loading so he or she dont think the website is damaged... Can this be done through Swish (the program I used to make the animation.) or do i need to do it through something elese. Thanks.

Making Sure
hi all,
any way i can make sure that my movie is running in the right page and not being opened directly from a search engine link?

the page i should run in is a named frame page but i'm not sure about the flash side of it

Making The Fps Go Up
i am making a movie with 185 frames where each frame has a 150kb picture. no matter how i set the frame rate for the movie, the movie will onl play at 8 fps. How do i increase this fps? When I try to run the movie, it goes reall slow at first but then speeds up latter. Somethings it even speeds up and slows down consantly. It is because the pictures and to big and my computer can't handle it. I have a 800mhz imac.

A response is appreciated

How Would I Go About Making This...
http://www.users.totalise.co.uk/~rpr...h/calender.swf

I want to make a calender just like that. I am primarily focused on how you click on a date and the information pops up (and stays) on the large blank empty space.

In other words, I don't need something exactly like it, I just want to know how to:

1. Click on something
2. Info appears on a space on the page
3. Info stays there

Thanks for your help.

Making Something...
Ok hello

I have made a symbol (button) and it is a circle (BTW, complete n00b to actionscript here). Now, I want the circle to move whenever the mouse is over the circle.

I tried going into the Over frame and typing this:

BTW: Instance name is Movie

if (_root_Movie_xpos == _root_xmouse) {
_root_Movie_xpos = _root_Movie_xpos + 25;
if (_root_Movie_ypos == _root_ymouse) {
_root_Movie_ypos = _root_Movie_ypos - 25;
}
}

Now, I know that won't work. Could someone help me out?

Also, could you label every line with what it means so I can learn

Thanks

Making MC Out Of Many MC
so i have all parts of the intro to my site, and thought you could create a new flash file,and then load all the movies to the library.
what action script would i use if i had the first three movie load in order of

three.swf two.swf one.swf
followed by opening.swf

i know there is a tutorial of this, if you could,help me find that as well. thanks

HELP With Making It BIG
Hi!

How can I get my flash movie to fill the entire browser window? I've heard there is a java script for this? Is there a quick and easy way rather than trial and error and manual resizing?

Thanks
Nate

Making Sure Im Doing This Right
First off, Im sure this has been answered here quite a bit, but I still don't know exactly what I am looking for, so its hard to say which post/tut I should look at.

Im still pretty new to flash, but in the past few long nights I have made a ton of progress.

Im in the middle of designing a website, and right now Im doing everything on one long timeline, but I want to do this the right way, so here goes my situation...

Ive got about 10 navigation buttons that are entering the screen area one at a time using a nice little tween, as soon as one gets half way to its designated location, another one begins the prosess of moving to its location, and so on.

Instead of doing this on one long timeline, I "think" I need to create a movie symbol for each button containing the tween and all. I have done this and it works just fine.

Now, I created an actions layer and placed a blank movie called container in the exact spot that I want each of these button movies to begin. Im pretty sure I am still on the right track.

Here is where I get iffy, and I appologize for not finding this answer here on flashkit because Im sure its already been covered tons of times. First, do I load each movie into this "container" after the previous movie finishes playing? What action script do I write, and where should I place it? Does each movie call the next movie sequentially until all the nav buttons are in place and then return control back to the next frame in the timeline?

If someone could just set me straight.

Help With Making Mv
hi, i am currently working on a flash music video. i'm a total nood with flash so i need help(guess that's why i'm here lol) ok:
1. how do i create the fade in fade out effect(only between certain frames)?
2. how do i insert the music(mp3).
3. how do i create the effects of someone writing something, like you see the words forming and not just have the words come out of no where.
i'm using flash mx 2004 by the way
thnkx in advance, i'll post more questions, once i stumble upon them.

srry if this is in the wrong place.

Making New Mc Appear...
hi, i am little bit stuck on making a new part of my interface appear.

its slip in to vertically, the left side has buttons, and initially, there is some info on the right....like and introduction.
what i am trying to do is, when you press a button on the left..i want like the right hand side to wipe clean, and then load the respective information.....
i think i have to use a loadmovie right?

i can email any1 the fla if they want to have a look, maybe gimme some extra help :-)
thanks!!!!

Making An Swf Into Exe
hi. i am making an interactive product in flash and i will be putting it onto a CD-ROM. what i want to know is how to make the swf an executable file, so that when the CD is put into the PC, it wil open up automatically, just like with any other CD. can anyone help me?

Help Making A CD
Hi.

I want to create a flash presentation which will load various data that's on a CD linked from the buttons on the interface.

I want to load a PDF when you click one button. This I think I've figured out - the getUrl command will do this won't it?

I also want to load WMV video files that are on the CD. What command do I use for this? If I use getUrl it comes up with the dialogue "File download, security warning". Is there any way around this?

Any help would be greatly appreciated

Cheers,

Phil.

Help Making RTS
Hey all im having some problems making an RTS. I have created a gold mine and trees. I have a courser so when you click on a peasent a flag apears and when you hover over the mine or the tree a different coursor pops up. The coursors are supposed to follow my mouse while over the mine or tree.

if ((_root.flag.hitTest (this)) && (this._alpha > 0)){
_root.mining._alpha = 100
}

this is on the mine

if (this._alpha > 0) {
this.startDrag ("true")
}
and this is on the coursor
this code works.But when i apply it to the tree it doesnt work

if ((_root.flag.hitTest (this)) && (this._alpha > 0)){
_root.cut._alpha = 100
}

on the tree

if (this._alpha > 0) {
this.startDrag ("true")
}

this on the coursor
any help would be appreciated.

What's Making My .fla So Big?
1.17 MB, just have 620X200 resolution, 2 MCs and 7 input textboxes. I can't upload it here in the forums, .zip is 527KB.

Making A Box
Is there any way to make a box with using only actionscript, and color and code it. I cant find a tutorial so im not sure if its at all possible.

Help With Making The Following...
Hello there,

Could any one help me? What I want to do is make all of what I have seen on a website (http://www.thenativitystory.com). I would like to make all or anyone of the following on the site:

(1) The scrolling text (by clicking on 'about the film'.)

(2) The photo gallery (by clicking on 'photo gallery'.)

(3) Any of the clickable text (lights up when hoved over and darkens when mouse moves off.)

Regards,

Coxdabd.

Help With Making FLV
I am trying to import an .avi file to convert to .FLV but I will get the message, "The source file test.avi contains video in an unsupported format and cannot be encoded." There is no video in the .fla file I am using, not even movie clips!
How can I find out which part of the animation is causing this error? Thanks, Dr. Acula

Is It Possible By Making Xml Like This
Hi
Can any help me to solve this issue....

~~
Sk







Attach Code

I need to produce the XML Like this ...

<marking >
<marking id="line_mc1" type="lines" region="front_RF" xypos="" id="line_mc2" type="lines" region="front_RF" xypos="" />
<marking id="line_mc3" type="lines" region="front_LF" xypos=""/>
<marking id="line_mc4" type="lines" region="front_RH" xypos="" />
<marking id="line_mc5" type="lines" region="front_LH" xypos="" id="line_mc6" type="lines" region="front_LH" xypos="" / >
</marking>


i am using the code like this....
__Marking_xml:XML = new XML();
var marking:XMLNode = __Marking_xml.createElement("marking");
marking.attributes.xypos = markingPosition;
marking.attributes.region = region;
marking.attributes.type = sType;
marking.attributes.id = id;
__Marking_xml.firstChild.appendChild(marking);

but the result is like this one...

<marking id="line_mc1" type="lines" region="hindview" xypos=""/>
<marking id="line_mc2" type="lines" region="hindview" xypos=""/>
<marking id="line_mc3" type="lines" region="leftside" xypos=""/>
<marking id="line_mc4" type="lines" region="leftside" xypos=""/>
<marking id="line_mc5" type="lines" region="leftside" xypos=""/>
<marking id="line_mc6" type="lines" region="leftside" xypos=""/>
<marking id="line_mc7" type="lines" region="hindview" xypos=""/>
<marking id="line_mc8" type="lines" region="hindview" xypos=""/>
<marking id="line_mc9" type="lines" region="rightside" xypos=""/>
<marking id="line_mc10" type="lines" region="rightside" xypos=""/>

Can any help me to solve this issue....
~~SK

Different Way Of Making This
Hey take a look at this file...
no tell me is there another way to make the same effect but with out using dreamweaver and only flash ???

maybe import all pics and add some code or something??

thanks.

Making Sure Im Doing This Right
First off, Im sure this has been answered here quite a bit, but I still don't know exactly what I am looking for, so its hard to say which post/tut I should look at.

Im still pretty new to flash, but in the past few long nights I have made a ton of progress.

Im in the middle of designing a website, and right now Im doing everything on one long timeline, but I want to do this the right way, so here goes my situation...

Ive got about 10 navigation buttons that are entering the screen area one at a time using a nice little tween, as soon as one gets half way to its designated location, another one begins the prosess of moving to its location, and so on.

Instead of doing this on one long timeline, I "think" I need to create a movie symbol for each button containing the tween and all. I have done this and it works just fine.

Now, I created an actions layer and placed a blank movie called container in the exact spot that I want each of these button movies to begin. Im pretty sure I am still on the right track.

Here is where I get iffy, and I appologize for not finding this answer here on kirupa because Im sure its already been covered tons of times. First, do I load each movie into this "container" after the previous movie finishes playing? What action script do I write, and where should I place it? Does each movie call the next movie sequentially until all the nav buttons are in place and then return control back to the next frame in the timeline?

If someone could just set me straight

Making A CD Need Some HELP :)
Here are some FS Commands I tracked down.
--------------------------------------------------------------------------
on (release) {
fscommand ("exec", "file.exe");
}

fscommand("fullscreen", "true");

on (release) {
fscommand("quit");
}
--------------------------------------------------------------------------
I am wanting to have the presentation expand full screen,
with a color behind it, then play. Upon playing the ending
section I want it to automatically close.

Q1) Is this code correct?
Q2) I am unsure how or where to enter this into my flash movie.

thanks a million,

: grey :

Making This:
I want to make an animation of a growing tree like this:

http://www.bikbok.no/content/

Is it done using masking or shapetween etc?

Making An Mp3
Hi,
I am making an mp3 player on flash.
I have already created the buttons and i have been loking for tutorials of it i found one that was good :http://www.thegoldenmean.com/technique/mp3player01.html but it was so har to make i couldn't make to second step.
I need help on:
Loading the Music
Play button making the music play
When music finishies go to next track(continuous playing)
And a volume slider so i can put volume how i like.
PS: Is it possible to make button that you can open somethine like i press search and the searching box appears and i go to my hard drive select music folder and press open and loads the music on that foler is that possible?
Sorry if i look sooooooooooooooooooooooo demanding xD but i can't find a good page that let me do that.
Thanx for the help and your time you took for me!!! thanx

Am I Making This Right?
HTML Comments are not allowed

Different Way Of Making This
Hey take a look at this file...
no tell me is there another way to make the same effect but with out using dreamweaver and only flash ???

maybe import all pics and add some code or something??

thanks.

Making Sure Im Doing This Right
First off, Im sure this has been answered here quite a bit, but I still don't know exactly what I am looking for, so its hard to say which post/tut I should look at.

Im still pretty new to flash, but in the past few long nights I have made a ton of progress.

Im in the middle of designing a website, and right now Im doing everything on one long timeline, but I want to do this the right way, so here goes my situation...

Ive got about 10 navigation buttons that are entering the screen area one at a time using a nice little tween, as soon as one gets half way to its designated location, another one begins the prosess of moving to its location, and so on.

Instead of doing this on one long timeline, I "think" I need to create a movie symbol for each button containing the tween and all. I have done this and it works just fine.

Now, I created an actions layer and placed a blank movie called container in the exact spot that I want each of these button movies to begin. Im pretty sure I am still on the right track.

Here is where I get iffy, and I appologize for not finding this answer here on kirupa because Im sure its already been covered tons of times. First, do I load each movie into this "container" after the previous movie finishes playing? What action script do I write, and where should I place it? Does each movie call the next movie sequentially until all the nav buttons are in place and then return control back to the next frame in the timeline?

If someone could just set me straight

Making Exe From Swf
Hi guys
I made this presentation for a friend but I lost the .fla file since my machine's hdd crashed. Now I only have an swf file. I have to give exe to him which I certainly can't make without the source file as there are no menus there b'coz I used the fscommand to hide the menus.

Do you know of any free software that can make exe from swf??
Thanks in advance.

Making DVD's
my boss is having me make DVD's of photos fading in and out or scrolling by.
right now im just animating it in flash and exporting as .avi then turning it into a dvd. but it takes forever to export, the quality is poor. i really need a new method. any ideas? would getting adobe premiere be the best thing? or another program?

Thanks

Who Can Help Me Making...
Hi I'm new here @ ultrashock,

Very cool here, I learned a lot already!!! I surfed a few days ago to this site: http://www.e-a-t.org/index_flash_en.html

The menu is incredible, I love it! I want to make something to... Who can help me with it? Is there a book/link with tutorials of something like that... Is there someone who knows more about it and wants to help me? (is it very difficult?)

(sorry for my bad english, i'm dutch you know )

Greetz, Dydric
www.dydric.com

This Is Making Me Very Mad Can Someone Please Just Give Me...
Hi, can someone just give me the actionscript needed so in the game, you can move around with your up, right, left, and down key? Its very important... thanks.

Making Fire----help Me :(
how do i make fire effects in backround of text or just in the backround of anything

Im Making A Game (hopefully)
hello peeps, i need to know how to make a game like...uh, itl be in space k? and ur in a spaceship (the mouse is a spaceship) , i need to know what it is that i have to do to make it so when a big astroid comes along and if i touch it i die! but i dont wanna know how to make the dumb rollover button thing, iv already tried that a bunch of times and ppl just cheat by clicking the mouse! i also wanna know how to make it so when u click it shoots, and when the bullit or whatever hits the badguy he dies! im not asking that some1 goes and tells me how to do all these things! thatd be too hard! i just wanna know where i can find an fla. , code, turourial or SOMETHING that will help me....thanks

I Needs Some Help Making A Quiz
ok i'm stuck
how do i get this quiz to out put the final score
here is the link to the quiz i think if you take a look at it you can see what it is that i'm trying to do i know is is probly a very simple task but i do not know action scripting at all


http://www.des.uwm.edu/Intranet/ferpa/quiz2.fla

i got the code from the here

http://www.flashkit.com/movies/Scrip...48/index.shtml


if anyone can help me get this to out put the final score
i wiuld be very greatfull and i will try to help you in any why that i can

thanks

SOS My .fla Is Making Me Dork Out
Okay, here's the problem: my opening animation begins, and part of it is my buttons sliding in from the right. Once there, the idea is that you click on a button, bringing up the appropriate section within the same .swf.

So, I whipped up a quick-and-dirty fade-in text animation for my Contact section, made it into a movie clip ... and no combination of placement and ActionScript has succeeded in making the bloody thing work! Aaaaaah! I have the feeling that part of the problem is that there might be the right sort of organisation to my file, but at this point, I just can't wrap my head around it.

If a kind soul here wants to have a look at the .fla in question, you can download it from:

http://users.eastlink.ca/~pdeniger/Movie2.fla

On that file, I've taken out all the related button ActionScript, and the offending MC ('Contacttext') hasn't been placed anywhere.

TIA!!!

Making Screensavers
Could someone help me I want to take a movie I made and make a screen saver out of it. Thank in advance for the helpful info.

Making A Counter
Is there an easy way to make a counter for mywebsite and have the counter update a .txt file that i could view?
thanks.

Making A Random Arc
If an actionscript knows the x & y coordinates of a starting point for a moving MC and the x&y coordinates of its ending point, is there a way to make the MC move in an arc up and then down to the ending point? The x&y coordinates of the start and end points would change based on user keyboard/mouse events.... Can anyone point me in the right direction to look? Thanks....

Help Making Intro
I'm almost complete with my site but its missing an intro.. I've seen quite a few that use a strobe type effect? Can anyone point me in the direction of any good tutorials or help me create a fancy flash intro?

Cheers

Need A Little Help Making It Got Right To Left.
onClipEvent (load) {
BinaryNumbers.duplicateMovieClip("BinaryNumbers2", 1000);
BinaryNumbers2._x = BinaryNumbers_x+BinaryNumbers._width;
BinaryNumbersStartx = this._x;
BinaryNumbersSpeed = 13;
}
onClipEvent (enterFrame) {
this._x -= BinaryNumbersSpeed;
if (this._x<=(BinaryNumbersStartx-BinaryNumbers._width)) {
this._x = BinaryNumbersStartx-BinaryNumbersSpeed;
}
}

Well I have tryed all i can which with my limited knowlege of Acitonscript is prob not a lot, but this code above makes a great seamless animation of a row of binary numbers across my screen. Works great going from right to left..but I am also wanting for another row to go from left to right and I for the life of me cannot get it to repopulate when it runs out of the duplicate. below is the best attempt I got at changing the code. with this it makes the duplicate on the left side like it should but after the duplicate gets across the screen it will not make a new duplicate to make it appear seamless. Can anybody please help.

onClipEvent (load) {
BinaryNumbers.duplicateMovieClip("BinaryNumbers2", 1000);
BinaryNumbers2._x = BinaryNumbers_x-BinaryNumbers._width;
BinaryNumbersStartx = this._x;
BinaryNumbersSpeed = 15;
}
onClipEvent (enterFrame) {
this._x += BinaryNumbersSpeed;
if (this._x<=(BinaryNumbersStartx-BinaryNumbers._width)) {
this._x = BinaryNumbersStartx-BinaryNumbersSpeed;
}
}

i believe the only change i made was in the third line. If anybody would like a small fla file to show what i am trying to do let me know and I will shoot it off to you. thanx in advance guys.

Making A Test
I wish to make a test in flash with say 20 questions. Now, Is there a special way to script it so that at the end of the test it will give the total amount right and the percentage?

Making An Swf Interactive
I converted an avi file into a swf file for use on a client's webpage. But how do I make the movie stop and run by user input? Any suggestions? Thanks for your help.

Making More Of One Symbol
Hello all,

I was wondering if this can be done, just click a button and a symbol will appear. There will be no end to the symbols, like you can press the butten X number of times and there would be X amount of symbols

Thanks.

Copyright © 2005-08 www.BigResource.com, All rights reserved