+ Reply to Thread
Results 1 to 9 of 9

Thread: Slide presentation
      
   

  1. #1
    chitragurung's Avatar
    chitragurung is offline Second Lieutenant
    Join Date
    Dec 2006
    Location
    Kathmandu, Nepal
    Posts
    125

    Default Slide presentation

    I want to display following slides in my page

    http://www.egtours.com/media/bhutans...an/bhutan.html

    How can I display above slide from my following page. I try to put but it does not work.



    http://www.egtours.com/index.php?pr=bhutan_slides

    my html code was as follows


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Bhutan Trip</title>
    </head>
    <body bgcolor="#FFFFFF">
    <p>&nbsp;<p>
    <style type="text/css">
    <!--
    .style1 {
    color: #006633;
    font-weight: bold;
    }
    -->
    </style>
    <!-- saved from url=(0013)about:internet -->
    <table align="center" border="0" cellpadding=0 cellspacing=0>
    <tr>
    <td align="center">Bhutan Trip</td>
    </tr>
    <tr><td align="center"><br /></td></tr>
    <tr>
    <td align="center">
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub...ersion=6,0,0,0" width="480" height="400" id="tech" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="http://www.egtours.com/media/bhutans...ath=slides.xml" />
    <param name="quality" value="high" />
    <embed src="http://www.egtours.com/media/bhutans...ath=slides.xml" quality="high" width="480" height="400" name="tech" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </td>
    </tr>

    </table>
    </body>
    </html>
    Chitra B. Gurung
    EVERGREEN Tours,
    Kathmandu, Nepal
    www.egtours.com

  2. #2
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,354

    Default Re: Slide presentation

    Its working perfectly when i view it..clear your cache.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  3. #3
    chitragurung's Avatar
    chitragurung is offline Second Lieutenant
    Join Date
    Dec 2006
    Location
    Kathmandu, Nepal
    Posts
    125

    Default Re: Slide presentation

    Hi Karen,

    Yes slide is working but I want to display this slide on the following page

    http://www.egtours.com/index.php?pr=bhutan_slides

    I put html code in above page but it does not work.
    Chitra B. Gurung
    EVERGREEN Tours,
    Kathmandu, Nepal
    www.egtours.com

  4. #4
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,354

    Default Re: Slide presentation

    did you try uploading it as just a swf and using the video icon to drop it on a page?

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  5. #5
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,354

    Default Re: Slide presentation

    Well thats a different script that you are now using...

    Code:
    <!--
    //*****************************************
    // Blending Image Slide Show Script- 
    // © Dynamic Drive (www.dynamicdrive.com)
    // For full source code, visit http://www.dynamicdrive.com/
    //*****************************************
    //specify interval between slide (in mili seconds)
    var slidespeed=3000
    //specify images
    var slideimages=new Array("http://www.egtours.com/promo/promo1....omo/prom**.png")
    //specify corresponding links
    var slidelinks=new Array("http://www.egtours.com/index.php?pr=...al_Bhutan_Tour")
    var newwindow=1 //open links in new window? 1=yes, 0=no
    var imageholder=new Array()
    var ie=document.all
    for (i=0;i<slideimages.length;i++){
    imageholder[i]=new Image()
    imageholder[i].src=slideimages[i]
    }
    function gotoshow(){
    if (newwindow)
    window.open(slidelinks[whichlink])
    else
    window.location=slidelinks[whichlink]
    }
    //--></script><a href="javascript:gotoshow()"><img name="slide" border="0" width="513" src="promo1.png" height="110" style="filter: blendTrans(duration=3)" /></a>
    <script language="JavaScript1.1">
    <!--
    var whichlink=0
    var whichimage=0
    var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 : 0
    function slideit(){
    if (!document.images) return
    if (ie) document.images.slide.filters[0].apply()
    document.images.slide.src=imageholder[whichimage].src
    if (ie) document.images.slide.filters[0].play()
    whichlink=whichimage
    whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
    setTimeout("slideit()",slidespeed+blenddelay)
    }
    slideit()
    //--></script> 
    </div>
    I rather suspect you left out the /images/ in your url

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  6. #6
    chitragurung's Avatar
    chitragurung is offline Second Lieutenant
    Join Date
    Dec 2006
    Location
    Kathmandu, Nepal
    Posts
    125

    Default Re: Slide presentation

    I have everything working in my domain. Only thing is I want to display slide with my page.

    www.egtours.com/media/bhutanslides/bhutan/bhutan.html

    I want to put this slide in my following page

    http://www.egtours.com/index.php?pr=bhutan_slides

    All slide componets are in www.egtours.com/media/bhutanslides/bhutan
    Chitra B. Gurung
    EVERGREEN Tours,
    Kathmandu, Nepal
    www.egtours.com

  7. #7
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: Slide presentation

    Hi, can you just pop http://www.egtours.com/media/bhutans...tan/bhutan.swf
    into an iframe??
    or enter the code below on your page.
    <iframe name="" id="InlineFrame1" style="width:476px;height:401px;" src="http://www.egtours.com/media/bhutanslides/bhutan/bhutan.swf" frameborder="0">Your browser does not support inline frames or is currently configured not to display inline frames.</iframe>

  8. #8
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,354

    Default Re: Slide presentation

    Quote Originally Posted by chitragurung View Post
    I have everything working in my domain. Only thing is I want to display slide with my page.

    www.egtours.com/media/bhutanslides/bhutan/bhutan.html

    I want to put this slide in my following page

    http://www.egtours.com/index.php?pr=bhutan_slides

    All slide componets are in www.egtours.com/media/bhutanslides/bhutan
    Yes... and as I said.. on the page where you want it to display use the VIDEO icon, drop it to the page and 1.) select the swf or presentation in the list that you have already UPLOADED, or upload it and then select it from the list.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  9. #9
    chitragurung's Avatar
    chitragurung is offline Second Lieutenant
    Join Date
    Dec 2006
    Location
    Kathmandu, Nepal
    Posts
    125

    Default Re: Slide presentation

    Thank you all of you,

    Finally I made it. Now you can view at

    http://www.egtours.com/index.php?pr=bhutan_slides
    Chitra B. Gurung
    EVERGREEN Tours,
    Kathmandu, Nepal
    www.egtours.com

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49