ActionScript 2.0 :: Flash Presentation - Make A MovieClip With A Logotypes Fading In And Out?
Dec 10, 2004
this is what I want to achieve:I want to make a presentation in flash with all my work. Sort of a PowerPoint presentation but in flash. Yes, I know there is a built in PowerPoint function I flash. But I want it to be some more dynamic and most of all. I want it to run without pressing the �Spacebar� between all the MovieClips.
I dont know if this is a good way, but my idea is to make a movie clip of each thing.I want to present. I.e.I make a MovieClip with a logotypes fading in and out. And one MovieClip with another logotype fading in and out.Then I just want to add these external swf files in the main timeline and when the first external MovieClip has finished next ones starts. And when all the swf files have been played. It starts all over again.
I want to make a presentation in flash with all my work. Sort of a PowerPoint presentation but in flash. Yes, I know there is a built in PowerPoint function I flash. But I want it to be some more dynamic and most of all. I want it to run without pressing the "Spacebar" between all the MovieClips. I don't know if this is a good way, but my idea is to make a movie clip of each "thing" I want to present. I.e. I make a MovieClip with a logotypes fading in and out. And one MovieClip with another logotype fading in and out. Then I just want to add these external swf files in the main timeline and when the first external MovieClip has finished next ones starts. And when all the swf files have been played. It starts all over again.
How to make trail behind movie clip. I suppose it should be some kind of duplicate mc function but dont know how to write it. For example there is rectangle (mc) on screen when I click on it should move to the left but it should leave copies of itself behind it with different opacity, closer copies should be more visible and they all should fade out (I mean trail not main rectangle), it should look like circular animation which are often used in some flash video players where rectangles are rotating around center point but they aren't all same opacity.
I'm using kirupa's flash and xml tutorial to make a fading in slideshow. I was trying to modify some of the code so that the image will also fade out before the next one fades in. Here is my code:
I'm trying to play 2 external flash movies. its already running ok but i need the scene to be somewhat to gradually become transparent so that the timebased scene2 will comeout to of the screen.
Here is the script of it:
var myLoader:Loader = new Loader(); var url:URLRequest = new URLRequest("scene2.swf"); myLoader.load(url); addChild(myLoader);
For a school project we have to make a presentation about our RME topic, and we can to it in any format we want. I want to do it in Flash so as to add interactivity. Problem is, I am not certain on parts of it.
How do you add buttons, so as to change the background? For example, it shows title screen. Then you click.Then it shows first slide like. Then you can click like, Introduction, The Pillars of Islam, ect.
I was taught to make a fading "slide show" in Flash CS3 using movie clips, key frames, and alpha channels. Is there a simpler way? I have a project with over 40 "slides." I am aware of some web sites like slide.com but they seem to include ads which I don't want on a professional site. Any suggestions on how to create a slide show like this one more quickly than with tweening movie clips? (I do have CS4 now.)[URL]
As it is said here: [URL] "If you do a Google search today for "MVVM and Flex", the first post is by somebody who claims that MVVM is not a good fit for Flex. I couldn't disagree more. Out of the box, the Flex framework makes it much easier to implement a Presentation Model than similar MVVM implementations in Silverlight. That is not to say that there aren't good third-party libraries that make it easier in Silverlight, but without any help, it is easier to do in Flex." So MVVM as LOGICAL CONCEPT can be implemented in both but the way it is implemented in Silverlight requires more Plumbing than Flex.
What prevents Silverlight MVVM to be implemented like Flex ? Doesn't Silverlight have same capability in event system to do the same? If yes why does Silverlight do things more complicated what's the advantages then ? Is it about using Class Interfaces which are more strongly typed? What are the disadvantages also ? For example as for implementing MULTIPLE VIEWS for 1 View-Model does Flex implementation make it also more obvious?
i need to make a little multimedia/presentation where depending on the options you take (normal buttons) a Mc plays and in the end you a get list of itmes depending on the choices you took. I cant remember how to do it, its been a few years since i last did something like this, is there any good tut where i can understand how to do it? cant find anything, basically what i want is to be able to save the choices the user takes during the "game" and with each lode a different .txt at the end. Is this possible with Fl8? its going on a USB Stick, and it'll be a .exe that will load a few swf . . .
i've been trying to make a presentation which is build out of several animations located on the main timeline.I wanted to use frame labels to navigate back and forth in the timeline, so I created back/next buttons and used switch/case code on them based on the frame labels.each animation has a label and a stop(); command at the end of it, right before the next animation.the code for the next button looks like this:
next_btn.addEventListener(MouseEvent.CLICK, click_handler); function click_handler(event_object:MouseEvent) {
[code]....
problem is at some point it stops working. i've added the "default: play();" code to try and fix it but it only goes so far.
I've looked around the net on this issue, and came up with the following code to fade out the volume on my movieclip:
var myTransform = new SoundTransform(); myTransform.volume = 1; loaderClip2[indexNumber].soundTransform = myTransform; audioTween = new TweenLite(myTransform, 2, {volume:0});
My movie clip is stored in the Array loaderClip2 at index position determined by the variable indexNumber. This code does not produce the desired fade.
I used a great tutorial posted on KIRUPA by Sam Kellett aka Sammo [URL] and i was wandering if i can make the snowflakes fade to transparent at the bottom of the movie?
I made a button that fades up a movieclip and then the movieclip keeps fading down and up until on rollout where it fades it down. Now, i use a delete this.onEnterFrame; on the fade out button but im not sure if i should delete this.onEnterFrame in the functions where i fade up and down aswell. If so where/how?Here is the AS:
Code: fadein = function(){ if (white_1._alpha<=100) { white_1._alpha += 5;[code]....
I've been playing around with the presentation screens and slide in Flash, from browsing the web there seems to be very little if any information of how to control MC's within different parts of a presentation i.e. removing them or changing alpha. I've loaded an MC and now I'm am trying to remove it from the stage been experiment on the same slide and I just cant seem to get control of it.
I was using _root.slide1.intromc._alpha = 0; But this doesn't work for. How I can get access to MCs in a slide if its possible !!!!
I am making a flyout menu and I have all the desired effects I need using actionscript but one: for the movieclip that fades in to fade out if the mouse has not been touching it for 3 seconds.
The way it works: The buttons in the navigation are movieclips. Each button movieclip has a submenu (which is also a movieclip). Each button movieclip is triggered to tween on Rollover and tween (alpha) in. As it is now, when the user rolls over a different button in the navigation, the submenu will disappear which is desired. The problem is that when a user rolls over a navigation item and triggers the submenu, but does not roll over another button, the submenu stays in view. What I want is for this submenu movieclip to fade out of view if the user hasn't had their mouse over it for 3 seconds.
on (release){ _root.drew._visible =false; gotoAndPlay(31); } Above is my code which I am using to try and fade out a MC when a button is pressed. The button (and the picture it shows when pressed) are within the same MC. I have placed this MC on the root timeline and given the MC I want to fade out the instance name drew // but still not having any luck making invisible.
I can't work out why - but when I try to fade out some text (by calling fadeoutSecondText), the text fades out, and then immediately fades back in. Fading in and out struggle against each other, resulting in rapidly flashing text!
when i test the movie all i see is a large grey box (border color) with a medium white box (box color) in the bottom right.when i edit the border and lose the grey box but leave its line borders then i get the image with the white box in the bottom right. i've got an image: instance named 'image', a box: instance named 'box' and a border: instance named 'border' and pasted in the actionscript in
i've done the Fading Grid tutorial that Voetsjoeba wrote but i seem to be de-railing somewhere when i test the movie all i see is a large grey box (border color) with a medium white box (box color) in the bottom right.when i edit the border and lose the grey box but leave its line borders then i get the image with the white box in the bottom right. i've got an image: instance named 'image', a box: instance named 'box' and a border: instance named 'border' and pasted in the actionscript in place but it still hangs.
I have a movieclip with an image fading in and out (using an actionscript tween class set to yoyo). This movieclip is loaded into a dummy movieclip when a button is pressed. The first time you click the button the fading movieclip plays as it should, fading in and out continuously. However, the second or subsequent times the button is clicked the fading movieclip goes crazy, half fading in/out and half jumping from one alpha value to another.
I have a presentation .fla from a client which is published to an .exe projector file. this is my first tome working on a file published for this so I'm a bit confused. Within the fla folder is another fla which is titled player. That file calls background music thru an xml file which I can figure later but my problem is this.
if I add the mp3 voiceover to the xml list when the published file plays it of course starts at 001.00 the voiceover needs to be edited to fit within the presentation. How can I drop the swf of the riginal presentation inside an app then add the voiceover on another layer and be able to edit to match sort of what I would do in IMovie. I have the CS5 master Suite so I'm sure one of the apps does this/
I'm going to be creating a Flash presentation that will run on a flatscreen TV at a trade show. I'm not certain what resolution to set up my Flash movie to. The TV is a widescreen Panasonic 42" TH42PH10BK with 1024 x 768 pixels, however when I set my animation to those values it looks 'squarer' than the TV. It looks like I need to set up the animation to a different resolution, but I don't know which!
I was wondering how I make my buttons go to the next slide in a flash presentation Only know the code to do it to the next scene in a regular flash project.
I've been wanting to create a flash presentation similar to the one on the page of this website.This is NOT my website by the way. Does this require actionscript? http:[url]........
I know it will take some time to learn and develop and I'm willing to put in the time to learn. I just would like to learn from a professional tutorial and not some random, generic looking tutorial that doesn't really teach a thing.
I have been doing days worth of research and this is a topic I have yet to find much useful information on. I create business presentations for a wide range of clients with adobe flash. Up until now all user control has been done through the computer or via a timer so the user wasnt interacting at all. We have started receiving requests for presentations where the presenter can interact with the presentation via a presentation remote. Basically they want control over the presentation just like someone can with a remote in Powerpoint.
All my research on this topic up until now has been pretty much in vein. We have tried to program flash with keystrokes and such but ran into issues as apperently all remotes do not use keystrokes to control the presentation (namely some logitech remotes do not). So here is my question.
Does anyone have an idea on how we could set up a flash presentation to work with ANY remote our presenters may have? I am hoping this is something we can program/build one time and then just copy and paste the code to each presentation. Versus the alternative of contacting each client, asking what remote they will be using, and programming based on acquired information.
I've been tasked with making a fairly simple Flash presentation that will be published to an exe and put onto a jump drive. I've done this before and at the time I just used the getURL command (IIRC) to open a PDF with a button click. I literally have 100's of PDFs to link to so I was wondering if there is a better way to do it (before I start using my old method) I'm using AS3 in Flash CS5. And I am NOT a big Flash user so maybe I just need to resort to the way i did it last time. Was just thinking there might be a more elegant way to approach this...that a novice could handle.