Slide show jave or flash

Somebody now the step to present a banniere on top of my web page like 3 or 4 picture rotation slide show Java or Flash or any code for a simple slide
show inside my front page on iWeb.
Thank'S so much to help me
Michel

&Michel:
I can't help you with flash or java directly but here's an example of a ticker tape display of photos that you can put into any html page. I believe it's Flash based.
You just need to get an account on Twango.com (free), upload your pictures and then click on the link that will give you the code to enter into your page. I added a text box in that page that had "Twango goes here" in it. After publishing to .Mac, I went to the iDisk/Sites/Web/iWeb folder and located the folder my site and edited the page name.html file that is in it. I looked for "Twango goes here" and replaced it with the code from Twango. You can change the width and height of the ticker tape display and the photos will be scaled appropriately.
I a user clicks on the ticker tape they will be taken to your Twango.com page. But to circumvent that, put a shape over the area where the ticker tape goes and set it's opacity to 1% and turn off the lines. Then the user will get the cursor indication that there's a link but it won't work.
There's an application called MassReplaceIt that can make the editing a little easier. Click on the Do you Twango like next to my avatar for a sample of other types of displays that you can embed.
Do you Twango?

Similar Messages

  • Slide shows via Adobe flash player

    I'm using macromedia flash player (version=4,0,2,0) to
    display a slide show on my website (as an .swf flash video). Is it
    possible to add a variable to the player code so that the flash
    video does not start automatically but rather requires user input
    (such as a mouseclick) to start the video?
    As a newbie, I'd appreciate any help on this.
    Here's the embed code for the player: <OBJECT
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0"
    ID=crocky-2 WIDTH=500 HEIGHT=333>
    <PARAM NAME=movie VALUE=""> <PARAM NAME=quality
    VALUE=high> <PARAM NAME=bgcolor VALUE=#000099> <EMBED
    src="" quality=high bgcolor=#000099 WIDTH=500 HEIGHT=333
    TYPE="application/x-shockwave-flash" PLUGINSPAGE="
    http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></E MBED>
    </OBJECT>

    Start your slideshow on frame 2.
    Make a new layer and put a blank keyframe on frame 1 and 2.
    On frame 1, use the text tool to write the words, "Click to
    Play" or whatever you want.
    Using the Selection tool, right click the text and convert it
    to a symbol. Call it whatever you want. Once it is created, select
    it with the Selection tool and in the properties window give it the
    instance name "play".
    Create a new layer, title is Actions and in the first frame
    put the following action script in the action script window.
    stop();
    play.onPress = down;
    function down() {
    gotoAndPlay(2);
    Your embed code is peculiar in that the <EMBED src="" is
    blank. Not sure what that's about.
    If you're slideshow is looping, you may want to put this on a
    blank keyframe of the Actions layer on the last frame (or at the
    point in which you want it to start over again at frame 2):
    gotoAndPlay(2);

  • How can I export a slide show to a flash drive?

    How do I export a slideshow to a flash drive?

    export it to the desktop - this makes a QuickTime movie - and then drag that movie to the flash drive
    LN

  • Flash Slide Show Presentation Question

    I have created a slide show presentation in Flash format. On
    some of my slides, I have animations that run when the slide first
    loads. However, as I do not want the animation to continue looping
    preventing the viewer from reading the slide, I used actionscript
    to place a stop action at the end of the slide animation.
    The problem is that if the user uses the previous button in
    the slide show to return to the slide the animation does not run.
    It will only run again if the entire slide show is restarted. Is
    there a simple way to fix this?
    Thanks

    The steps are fairly simple. I create a listener ,a loader
    and an empty movie clip to load the images into. I write a
    listener_mc.onLoadInit function then I use the loader_mc.loadClip
    to load the images into the empty movieclip. When the loading is
    complete the onLoadInit function gets called and you can resize and
    center your images.

  • Flash 8 Caption Code needed for Slide Show

    I have a Flash Slide Show done in Flash 8. There's no xml
    files attach with this file. I only use Action Scripting along with
    this project. I'm trying to have a line of text showing as a
    caption for each images. Do you know if I need to create and xml
    file along with this document? Any help would be greatly
    appreciated.
    Thanks,
    Attach Code
    _global.numOfImage = 29;
    url = "";
    temp = 7;
    check.swapDepths(20000);
    for (var i = 1; i<=numOfImage; i++) {
    mc = this.attachMovie("btn", i, i+100);
    mc._x = ((i-1)%temp)*75+30;
    mc._y = Math.floor((i-1)/temp)*46+450;
    mc.oldx = mc._x;
    mc.oldy = mc._y;
    mc.point.loadMovie(url+"image/trail/image"+i+".jpg");
    mc.onRollOver = function() {
    this.fade.play();
    check.target = this._name;
    check.onEnterFrame = function() {
    this._x += (this._parent[this.target]._x-this._x)/4;
    this._y += (this._parent[this.target]._y-this._y)/4;
    mc.onRelease = function() {
    this._parent.attachMovie("loading", "loading", 10000);
    screen.original.loadMovie(url+"image/original/image"+this._name+".jpg");
    this._parent.onEnterFrame = function() {
    if (screen.original.getBytesTotal() ==
    screen.original.getBytesLoaded()) {
    this.loading.removeMovieClip();
    screen.gotoAndPlay(2);
    delete this.onEnterFrame;
    init();
    function init() {
    this[1].pressed = 0;
    this.stopDrag();
    this.attachMovie("loading", "loading", 10000);
    screen.original.loadMovie(url+"image/original/image1.jpg");
    this.onEnterFrame = function() {
    if (screen.original.getBytesTotal() ==
    screen.original.getBytesLoaded()) {
    this.loading.removeMovieClip();
    screen.gotoAndPlay(2);
    delete this.onEnterFrame;
    check.target =1
    check.onEnterFrame = function() {
    this._x += (this._parent[this.target]._x-this._x)/4;
    this._y += (this._parent[this.target]._y-this._y)/4;
    ////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////

    I have a Flash Slide Show done in Flash 8. There's no xml
    files attach with this file. I only use Action Scripting along with
    this project. I'm trying to have a line of text showing as a
    caption for each images. Do you know if I need to create and xml
    file along with this document? Any help would be greatly
    appreciated.
    Thanks,
    Attach Code
    _global.numOfImage = 29;
    url = "";
    temp = 7;
    check.swapDepths(20000);
    for (var i = 1; i<=numOfImage; i++) {
    mc = this.attachMovie("btn", i, i+100);
    mc._x = ((i-1)%temp)*75+30;
    mc._y = Math.floor((i-1)/temp)*46+450;
    mc.oldx = mc._x;
    mc.oldy = mc._y;
    mc.point.loadMovie(url+"image/trail/image"+i+".jpg");
    mc.onRollOver = function() {
    this.fade.play();
    check.target = this._name;
    check.onEnterFrame = function() {
    this._x += (this._parent[this.target]._x-this._x)/4;
    this._y += (this._parent[this.target]._y-this._y)/4;
    mc.onRelease = function() {
    this._parent.attachMovie("loading", "loading", 10000);
    screen.original.loadMovie(url+"image/original/image"+this._name+".jpg");
    this._parent.onEnterFrame = function() {
    if (screen.original.getBytesTotal() ==
    screen.original.getBytesLoaded()) {
    this.loading.removeMovieClip();
    screen.gotoAndPlay(2);
    delete this.onEnterFrame;
    init();
    function init() {
    this[1].pressed = 0;
    this.stopDrag();
    this.attachMovie("loading", "loading", 10000);
    screen.original.loadMovie(url+"image/original/image1.jpg");
    this.onEnterFrame = function() {
    if (screen.original.getBytesTotal() ==
    screen.original.getBytesLoaded()) {
    this.loading.removeMovieClip();
    screen.gotoAndPlay(2);
    delete this.onEnterFrame;
    check.target =1
    check.onEnterFrame = function() {
    this._x += (this._parent[this.target]._x-this._x)/4;
    this._y += (this._parent[this.target]._y-this._y)/4;
    ////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////

  • Slide Show output is Poor

    I did a search on this abd found nothing. The slide show output to only PDF is pretty sad especially since the PDF is limited itself. Come-On Adobe Flash is part of the Adobe family, you should be able to export the slide show to a flash gallery. The Web Flash gallery is not the answer either.
    Mark

    I did a search on this abd found nothing. The slide show output to only PDF is pretty sad especially since the PDF is limited itself. Come-On Adobe Flash is part of the Adobe family, you should be able to export the slide show to a flash gallery. The Web Flash gallery is not the answer either.
    Mark

  • Movie clip slide show

    Hello! I am placing the slide show template from Flash CS3
    inside of a movie clip, but it is not working! I’ve exhausted
    any ideas I had during the past 8 hrs! I’ve even tried using
    other slide shows, but no luck! What I am trying to do is, once a
    button is clicked from the home page (the site has only 1 scene), a
    movie clip slides in, holding a slide show… Is this possible?
    Would you be able to direct me to a tutorial or give me an idea of
    what I am doing wrong?
    I really appreciate your help!
    Thanks!

    I wasn't sure what was meant with the mention of a slideshow
    template, but I finally figured it out I think... When you want to
    open a new file in Flash CS3, the offerings at the far right
    involve a number of templates, one of which is a slideshow
    template. I opened it up, managed to open the timeline, and I don't
    think it involves any kind of classes, none I could find anyways,
    and it appears to be written in AS2.
    So I imagine it would be useable as is. It's a basic frame by
    frame piece, no dynamic loading. And it otherwise has all the
    controls (buttons) that one would need, which could save some time
    if tyou wanted to try to create your own.
    It's possible there's just some error in how it was brought
    in or something... I would just copy its maintimeline frames into a
    movieclip in the new file and try to work it from there. One
    potential problem is that because it is written in AS2, and it uses
    _root references, it may not feel at home when it's placed in a
    movieclip on its own. So you probably need to look into the code
    and make some adjustments for that kind of stuff.
    If the main file is an AS3 file, then you will need to change
    the slideshow to AS3 as well if it's gonna live in the same file.
    You could save it as a separate swf in AS2 and load it into an AS3
    file during run time, but you still may need to modify the _root
    references to be _parent types.

  • Just want to do slide shows

    Ok. I did a web site in go live. I added slide shows
    that i did in iPhoto. The slide show files are too big.
    I was told they need to be Flash so that they will load
    quickly. I bought Flash, I bought two books but all i want to do is
    get these slide shows to play on my web site. Nowhere in any of the
    books is there any discussion about something as simple as making
    slide show into a flash that I can then put on my web site.
    Help Please!!!!!
    Dennis McGill
    www.headwaterscorvetteclub.com

    I really like Slide Show Pro (
    http://www.slideshowpro.net).
    This is a $25 component for Flash.
    Needs Flash, you drop the component on the stage, adjust the
    component settings to taste and you're done.
    It reads your slide show galleries from an external XML file
    which is simple to code by hand and there are many tools to be able
    to create it you don't want to code it.
    Sounds like you don't know much about Flash or ActionScript
    so this still might be a little out of your league, though.

  • I have Photoshop elements 10 and have been trying to copy albums onto a flash drive to show slide show on my TV. 10 does not have a flash drive connection, so I am trying to put it on my harddrive. When I hit the export to harddrive or anything else, I ge

    I have Photoshop elements 10 and have been trying to copy albums onto a flash drive to show slide show on my TV. 10 does not have a flash drive connection, so I am trying to put it on my harddrive. When I hit the export to harddrive or anything else, I get a message saying it is trying to locate and reconnect missing photos, goes into a search mode and displays the identifiers of the located images. When I try to follow the directions for reconnecting I get nowhere. Can you help?

    Wrong forum; we don't do Elements here.
    You want:  Photoshop Elements

  • How do I create image pushing slide show in Flash?

    Hi. I am wondering if anybody can tell me how to create a picture PUSH. I have three images that I wish to work with. By pushing I mean having an image come in from the left (or right) and place itself on top of the other (or pushing the other out of view). Like a slide show of three images scrolling along but one stops for a brief period before the other image comes into view.
    Any help would be appreciated. Thanks!!!

    As Pat mentioned, this question might be best suited for the Flash Professional forum, I just happen to have the link handy
    Thanks,
    Chris

  • Flash Slide Show not Showing after Hosting Change

    Hey guys!
       I don't know if this question is for you or for the good folks at the Dreamweaver forum, but I thought I would try here first. I took over a website for a family member to help them update it from time to time (They were paying a company to do it). When I changed hosting from the companies hosting to my own personal GoDaddy hosting everything went right, except for 2 flash slide shows (Simple rotating images). They just apear as clear boxes now. You can see what I am talking about here: http://grangerfun.com/golf  and here  http://grangerfun.com/pizza . You will notice the empty large empty box on the right in both pages. When you right click on it the browser recognizes that it is flash. On the Piza site I tried taking out the original code and entering the flash object via Dreamweaver CS5, but that yeilded the same results (I only mention this because the code on that site will thus look a bit different). What am I missing here? If you need more info, please let me know! I apreaciate all of the help you guys have given me over the years! I hope to one day pay the favor back!

    You need to look at the Flash source file (.fla) to see what goes on inside.  If the files worked in the previous server, then whoever made the files should be able to determine where any supporting files need to be placed.  If that turns out to be the company that's been dumped you might or might not get help in finding that out.  The least you can try to do is to copy everything from the existing site into the same file/directory structure on the new server, which I would assume is what you have tried to do, so if it is possible to still check, see what else might be on the previous server that got missed.

  • Auto start flash gallery slide-show

    Is there a way to to have a flash based web gallery slide show created in Photoshop CS 3. I have looked in the preferences and so on and can't find anything in PS help files.
    Gerhard

    Sure,
    Hit File > Automate > Web Photo Gallery. After that just follow the basic wizard and let it run. It will create all the .xml files and thumbnails for you.
    Jay

  • Why doesn't Firefox run an adobe flash player slide show (no arrows to move to next/previous slide), but internet explore does?

    When I try to run a slide show in Firefox, the first slide displays but the arrows to move to next/previous slide do not appear. When I try in Internet Explorer, the arrows appear. Flash Player is enabled in Firefox. There must be another setting I need to adjust. I am running Windows 7. I don't see how to access Tools menu item in Firefox. I don't see where I can check my Firefox version. It is the current version as is Flash Player.

    When I try to run a slide show in Firefox, the first slide displays but the arrows to move to next/previous slide do not appear. When I try in Internet Explorer, the arrows appear. Flash Player is enabled in Firefox. There must be another setting I need to adjust. I am running Windows 7. I don't see how to access Tools menu item in Firefox. I don't see where I can check my Firefox version. It is the current version as is Flash Player.

  • Saving a slide show when catalog runs from flash drive

    A little background - I manage two separate classes of students who use the same laptop with PSE8.  Each student has their own flash drive to save a custom catalog for the PSE8. Each time students open PSE8 they load their custom catalog.  All image files are saved onto the flash drive.  We have been using custom catalogs because our computers have Deep Freeze installed. This system has worked well for images.
    When saving a slide show there is no way to specify where the slide show should be saved.  I assumed that the slide show would save to the catalog which is sitting on the flash drive.  Unfortunately, this is not the case.  How can I save a slide show on a external flash drive?  I want students to be able to save and be able to reopen their slideshows.
    thanks,
    Robert

    Robert,
    Right now,I am looking at my current PSE 7 install on Vista. There is a .psess file type which contains slide show project information. I suspect that this might be the file you are seeking.  And I think this file exists with the same purpose in PSE 8.
    For PSE 8, you might find those files under a folder structure of
    ..... \Elements Organizer\Catalogs\name of the specific catalog\projects
    I desginated the dots at the beginning of the folder structure because they could be different depending on what version of Windows is running and potentially even other installation choices specific to that machine.
    Therefore, you might try searching for the .psess slide show project file type.
    Note 1: I am not sure v8 will place the project folder and the .psess files in your case where you have used a custom location for the Catalog that is on a flash drive. Please post back here with the location where you do find the files
    Note 2:  I suspect that if you are teaching syncing to photoshop.com, you might also need to be concerned about the location of the syncdb folder. My guess would be that it is near that project folder. If you do determine the syncdb location, please also post it back here. Thanks.

  • How do I get Flash animated slide shows to work on iPads, iPods, and iPhones?

    How do I get Flash animated slide shows to work on iPads, iPods, and iPhones?
    I'm using a PC. Web Site Flash generated slide show works fine on PC's.
    Does not work on Apple platforms.
    What do I use to to enable animated slide shows to work on Apple platforms?
    cliffordf51127948

    Hello,
    Flash Player is only supported on Apple OS X systems (10.6 - 10.10).  It is not, and has never been, supported on any i-Devices.  There are no plans to support these platforms.
    Maria

Maybe you are looking for

  • Xf86-video-ati-git: problem with git bisect

    Hi, I want to do some git bisecting. To be exact from 2-27-2009 to 17-05-2009. As far as I know old ati code won't compile against new xorg-sever so I did a downgrade to 1.6.3 but source code still won't compile. What version of xorg-server should I

  • Skype To Go Not Working from Hungary

    I have just tried to set up skype to go from Hungary for my mobile (Tmobile). However, a recorded message tells me the format of the numbers has changed and I need to dial some other number. I suspect the Skype service that automatically generates th

  • HT2905 How do you display duplicates in iTunes 11?  I cannot find it.

    I downloaded the latest iTunes version, 11, and now can't find "display duplicates" anywhere.

  • I mac g5 issue. Needs restarting.

    Hi, I have an Imac G5 Mac osx 10.4(tiger) And my problem is at times I have a message that comes up very blurrey that states I need to restart my compiuter by pushing the power button when I am working on it. Why is it doing this? It is under 6 month

  • Premature VPN Disconnect following latest 10.3.9 Security Upgrade

    The only known change to my off-site iMac G3 running 10.3.9 is the latest security "fix" for 10.3.9. Noticeable following that change is my all-too-frequent loss of connection to my employer's intranet via CISCO Systems' VPN. Other than somehow rever