Video And Slideshow Combination?
Oct 5, 2009
I need to create a flash file with video but at specific frames/times in the video I need an image to appear next to the video. This is the result of a research conference where the speakers were filmed as they talked through their presentation. The flash file needs to show this video alongside the slides from the speakers powerpoint presentation.
I already have the video converted using the media encoder and the slides from powerpoint converted to jpegs.I just need to know how I select a time/frame in the video and presumable generate some actionscript code to load an image at that playback time in the flash file.
A rather clunky version of what I am trying to di can be found at: http:[url]....
View 2 Replies
Similar Posts:
Jul 6, 2011
I want to convert swf slideshow to video using php / asp.net, how can such thing be achieved , i tried ffmpeg but it discards effects in the slide show.
View 3 Replies
Jun 10, 2009
I have done work in dreamweaver before but decided to try and move into the flash scene some. Well I'm putting together a multimedia photography site and made a slide show with Flash Slideshow Maker Professional to create a .swf slideshow file. I am using actionscript 2 and have a placeholder with the instance name of empty. So the script I'm using is:
[Code]....
View 9 Replies
Aug 16, 2010
I am designing a slideshow comprised of photos, video and some animations. I decided to use Flash because I thought it would offer me more flexibility than other options and because I have some experience coding in ActionScript 2.0 (though oddly very little experience designing swf's).
Here's the thing. In frame 1 I want a video to play. I can make that happen using this code, copied straight from the help:
[Code]...
View 9 Replies
May 19, 2011
I've been asked to write a standalone slideshow app which supports images (jpg, etc), video (divx, avi) and webpages (embedded html, rss).
I've done some digging and it looks like flash with flash air could be used to produce a standalone app which would run on both windows and Linux.
Before I start this long (and difficult) process, are my assumptions correct?
View 5 Replies
Jul 24, 2009
I have used a trick which has worked fine so far in our company's project.here how it works:
NOTE:
If you want to use AS1, ignore my soloution and just use isDown("18") with combination of othjer keys.
if you want to use AS2, you can not use isDown("18") in AS2.
if you want to use AS3 read the following:
1) Trap Alt keys using .isDown("18") in a SWF published as ActionScript 1.0;
3) In a SWF (AS 1.0) defined your keys like (All the letters you need, ex: A,B,...) with combination with Alt
4) Create a SWF published as Action Script 3.0.
5) Create an instance of the Local Connection Class available in SWF(AS 3.0)
6) Create an instance of the Local Connection Class available in SWF (AS1.0)
7) Talk between AS1 and AS3 using the local connection
NOTE: In order for your key combination to happen only once but not continusly, you need to do a trick like the following: THIS IS Action Script 1.0 SWF
stop();
var lastKey = 0; var keyListener = new Object(); var sending_lc = new LocalConnection(); var resetFromAS3 = new LocalConnection();[code].........
View 3 Replies
Dec 15, 2011
Attached is a fla and it requires one xml file to load but the same has been missing. The name o the xml is playlist.xml. how the xml file to be write so that the player easily load the data from xml and will display
View 5 Replies
Feb 19, 2010
I am currently putting together a simple game where people have to pass my tests to join a club. At the end I would like them to be given a unique name. I imagine this could be done if I make 3 lists of 50 words, and right a piece of code that randomly selects one word from each list to create a unique combination almost every time. I am using actionscript 2 because I am fairly novice and this is about as complicated as my code is going to be, but is this to bigger job for action script 2?
View 4 Replies
Oct 18, 2011
I would like to build a website in flash and use 3D models that I have made in Rhinoceros 4.0. Is it possible somehow to import Rhino 3D models into flash?
View 2 Replies
Mar 22, 2007
I was using the class from Michael there nice class btw I was wondering is it possible to use the ALT key in flash for trigger events? I tried using the class from Michael but didnt work for me or maybe I was doing something wrong. When I tried when this class it open the menu on top of the flash player or html page.
View 2 Replies
Feb 4, 2009
Im in the very start of trying to make a little game. he problem is when you hold down the up arrow(speed) + left arrow(left turn) + space bar(brake). But the same combination, just changing the left turn with a right turn(right arrow), that works. he code is boat badly written and partly in Norwegian, sorry, but here it is:
Code:
package {
import flash.display.*;
[code].....
View 5 Replies
Sep 11, 2008
Can an action be initiated through pressing a key combination? Here's a snippet instructing a MovieClip to move right when SHIFT+Z are pressed...
Code:
stage.addEventListener(KeyboardEvent.KEY_DOWN, testFn);
function testFn(event:KeyboardEvent){
if(event.keyCode == 16 && 90){
dot.x += 5;
}
}
Only the first key is recognized, i.e. the dot moves when SHIFT only or SHIFT+Z together are pressed; the swf's ignoring the second key.
View 4 Replies
Nov 12, 2011
The objective is when user clicks on any combination of 2 buttons you would then gotoAndPlay a new page based onthe two specific buttons you have selected? Ideally user would be able to intermix the button combinations. Code below only works for two specific buttons, but doesn't allow to intermix button clicks.
[Code]...
View 5 Replies
Aug 15, 2006
I've followed the thread there: [URL]
I understand that this class allow the script to detect when keys are pressed in combination.
But what is exactly the implementation when a key is used both in single and combination states. Let's say that you've the "q" key used alone and "shift-q"...how would one proceed to achieve this detection?
View 2 Replies
Nov 11, 2011
The objective is when user clicks on any combination of 2 buttons you would then gotoAndPlay a new page based onthe two specific buttons you have selected? Ideally user would be able to intermix the button combinations.
I've attached a simple diagram that visually explains objective of actionscript.
Code below only works for two specific buttons, but doesn't allow to intermix button clicks.
[Code]...
View 4 Replies
Jun 1, 2011
Within a specific canvas, I would like a user to be able to press a combination of keys which will trigger an event.(a bit like a cheat in an old megadrive game). Not sure where to start though. Anyone know if it is possible and if so could you give me a clue with how to start?
View 2 Replies
Jun 15, 2010
capturing any of the keyboard combinations below in the Flash Player. I am building this as a stand alone .swf file, so there won't be any conflicts with a internet browser, though my concern is reserved operating system shortcut keys.
F3
Press
Alt + X
Alt + X + .
[code]....
View 1 Replies
Aug 4, 2002
I am running an if statement to determing whether the data entered by a user is a number or a combination of letters and/or numbers. How could I determine whether the data is just numbers? Like:
PHP Code:
if (textbox == notanumber) {
do something
}
I have tried using NaN and "undefined" without much success.
View 7 Replies
Aug 13, 2007
I have a variable in the _root called section.Now I want to call hemmaAnimation(); within a the global function (see below).So I set the section variable to hemma & tried these:
_global.sectionAnimation = function(){
this[section+"Animation"]();
};
[code]...
but no luck.
View 1 Replies
Mar 29, 2011
I've created a fly in of 40 boxes which will form a block of 800x500 with a picture in it. On my site [URL] I've actually done the background image with 40 actual 100x100 pictures cut out of the original image. Then (on these forums) I learned how to cut up an image using bitmapData. To have dynamic backgrounds I would like to figure out how to combine these two.
Code:
//Import of greensock TweenLite
import com.greensock.*;
import com.greensock.easing.*;
[Code]....
View 7 Replies
Jun 21, 2003
I have a movie clip = circle
When the user clicks the circle I want the user to be able to drag and drop a new instance ie circle1.This whole process needs to be repeatable.......ie next time user clicks the original circle ie circle the code must know the last instance number ie circle1 exists and when the user clicks circle that circle2 is created dragged and dropped.....so on and so on.
This is easy you may say - duplicatemovie and startdrag etc........the problem is that when the user clicks on the original circle the mouse focus is on the original circle and not the new instance just created ie circle1 which then needs to be dragged and dropped.Just to complicate things the user needs to be able to delete a circle at any time by using the keyboard 'del' key.
View 14 Replies
Aug 31, 2009
I am acquiring the contents of a table to fill a dropdown box in a Flex 3 application:
<mx:ComboBox dataSource="{myList}" />
The list is populated by the contents of a database table of persons:
Public, John Q
Doe, Jane
...
The combo box, however, also needs to have some other meta-entries in it that do not come from the database:
ALL
ALL MEN
ALL WOMEN
Public, John Q
Doe, Jane
...
View 1 Replies
Feb 6, 2011
Aside from using browser headers, I want to blacklist/whitelist browser and plugins from my site so that I can prevent these older unpatched systems from (1) being a general user of my site (2) removing those 'targets' from would-be-attackers reach.Is there a standard way to use Whitelisting or Blacklisting to control browser access to my site? For example, I want to prevent any browser that has outdated Flash, but I want to permit them if they have no Flash at all.
View 1 Replies
Feb 6, 2008
I have created a pie preloader(preloader.zip) which is working fine. Same preloader I am trying to incorporate in a xml based slideshow(slideshow.zip) to show image loading process but some how I got stuck. I am new to flash. Suggestions are welcome.
1. How to solve the problem of preloader2. Is it possible to integrate everything in a movie clip (including AS). I mean no AS on main time line but inside the movie clip. It would be much easier then to to create multiple slideshows by duplicating mc and changing the xml file.
View 1 Replies
May 29, 2008
i have a question about text in a slideshow. i know how to make a basic photo slideshow with external images. but now what i want to do is add 4-5 paragraphs of text next to each photo (with possible scrolling). the text will be different on each photo.
View 1 Replies
Aug 11, 2009
How can i make a combination of keys make a movie clip visible? Basically i want something like this to work:
if(Key.isDown(Key.Alt && Key.A)){
reminder._visible = true;
}
So when someone presses the Alt and A keys down at the same time the 'reminder' mc becomes visible?
View 2 Replies
Jan 10, 2011
I'm trying to make chart which is combination of bar and line chart using Flex Charting API . Here x axis would be common and y axis would be different. note that y axis got different range of value one is % and other is amount. Any one got idea how to make this chart. Here line chart would be staked on top of bar chart . The line chart and never over laid or drawn on top of bar chart.
View 1 Replies
Aug 18, 2011
I've created a GUI in Flash Builder 4.5-1 with localization (copylocal as admin, created the files, implemented in he GUI...) and all works fluid and very well.I now want to generate a PHP service from my DB and that also works ok.When I try to run the application I get the error he doesn't find: Unable to open 'c:Program Files(x86)AdobeAdobe Flash Builder
4.5eclipsepluginscom.adboe.flexbuilder.project.nl1_4.5.1.313231
len_US nl_BE fr_BE de_DEdcradSwcs4.5locale'
When I retrieve the compiler options (additional languages) it works without errors.Do I need additional steps to be able to use "Locale" and "Services" combined?I used to work with Flex Builder 3 and didn't have the issues....
update, still having the issue, isn't there nobody out there? This is the error i get...unable to open 'C:Program Files (x86)AdobeAdobe Flash Builder 4.5eclipsepluginscom.adobe.flexbuilder.project.nl1_4.5.1.313231
len_US de_DE nl_NL
fr_FRdcradSwcs4.5locale' XofferSales Unknown Flex Problem
it happens from the moment I want to use localization + php services....
View 1 Replies
Aug 18, 2011
Recently i have visited so many video enriched flash site like this one [URL] Most of them shows video in full size. I downloaded the video using FF plugin. Video framesize is very small compared to the stage size. When i tried to add video and resize the video acoording to the page size , it slows the browser. I tried to embed the flv inside an swf and loaded the swf using normal loader and plyed it.. but the quallity and performance comapred to these site is very low..
View 3 Replies
Dec 18, 2010
I made a video in After Effect and export it to flash as a FLV video.. and write de code to load it into flash.. but I need it to loop.. Here is the code
[Code]...
View 1 Replies