Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > VodaHost Web Hosting Support > Non-VodaHost website development software products . > Macromedia Products

Notices

Macromedia Products Dreamweaver, Flash, Fireworks, etc...

Reply
 
LinkBack Thread Tools
  #1  
Old 05-28-2008, 05:47 AM
Private
 
Join Date: Apr 2008
Posts: 1
Question Flash Element Slide Show

Domain: anchorrealtyltdtc.com

CLIENT ID #23777



We have requested for more than 3 weeks assistance with our flash slide show not displaying on the index page of our website www.anchorrealtyltdtc.com

The support help desk constantly keeps telling me that it is a design issue.

My last question sent to them entails the following: How is it that when this link (below) is copied into the web broswer the flash silde show is working, but the link does not work in the embedded flash element when accessed through the website???

http://www.anchorrealtyltdtc.com/Show1/SlideShow.swf

Thanks.

Terrance Adams
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 05-28-2008, 07:24 AM
Collectors-info's Avatar
General
 
Join Date: Feb 2006
Location: London (UK)
Posts: 5,279
Default Re: Flash Element Slide Show

Hi, there must be some incomparability with the program your using. But! if you pop that url into an iframe, it works fine.

Good luck.
__________________
From Chris,

www.collectors-info.com
View sites in FF & IE, with res @ 1024 x 768 on 19” screens.

How to ask for help on the forum. - VH prices. - BV Tutorials. - Using PIXresizer - Image/Photo Tips

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 05-28-2008, 12:01 PM
Vasili's Avatar
Generalissimo
 
Join Date: Mar 2006
Posts: 9,286
Arrow Re: Flash Element Slide Show

Quote:
Originally Posted by tadams View Post
The support help desk constantly keeps telling me that it is a design issue.
My last question sent to them entails the following: How is it that when this link (below) is copied into the web broswer the flash silde show is working, but the link does not work in the embedded flash element when accessed through the website???
http://www.anchorrealtyltdtc.com/Show1/SlideShow.swf
This link is improperly written, as it demands the browser to look for a non-existant directory "Show1".......

The link needs to be written for a specific file that has been uploaded to your public_html directory/ individually: if the single .swf file is called "show1" then you link that is specified in the Flash box in BV would look like www.anchorrealtyltdtc.com/show1.swf and if you have simply named it "slideshow" (something I would consider renaming, to keep them identifiable), it would look like www.anchorrealtyltdtc.com/slideshow.swf


Each Flash file needs to be individually uploaded to your main directory to be recalled, and that must be the same directory as the page to which is calling it to present (the public_html/ directory, not "Show1").
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 05-28-2008, 03:03 PM
Alien Dude's Avatar
Dr Feel Good
 
Join Date: Apr 2008
Location: The Dark Side
Posts: 61
Default Re: Flash Element Slide Show

Depending on the way the slideshow was made depends on how it can brought to a page.
To start with this code is wrong.
Code:
 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="465" height="289" id="Flash1">
<param name="movie" value="http://www.anchorrealtyltdtc.com/Show1/SlideShow.swf">
<param name="quality" value="High">
<param name="scale" value="ExactFit">
<param name="wmode" value="Window">
<param name="play" value="true">
<param name="loop" value="true">
<param name="menu" value="false">
<param name="sAlign" value="L">
<embed src="http://www.anchorrealtyltdtc.com/Show1/SlideShow.swf" width="465" height="289" quality="High" wmode="Window" loop="true" play="true" menu="false" scale="ExactFit" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
should be

Code:
 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="465" height="289" id="Flash1">
<param name="movie" value="/Show1/SlideShow.swf">
<param name="quality" value="High">
<param name="scale" value="ExactFit">
<param name="wmode" value="Window">
<param name="play" value="true">
<param name="loop" value="true">
<param name="menu" value="false">
<param name="sAlign" value="L">
<embed src="/Show1/SlideShow.swf" width="465" height="289" quality="High" wmode="Window" loop="true" play="true" menu="false" scale="ExactFit" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>

the problem starts if the flash program used to make the slideshow uses a xml file and a images folder. When this is the case the swf will look for the xml file in the same directory. And when it can't find it one of two things will happen 1/ you get a blank screen, 2/ you just get the player controls .
In programs were all the information is stored on the swf file the above code should solve the problem.


To solve the problem if you have a xml file and folders you have two options.
1/ move the xml and the folders into the same directory of the page published
2/ by putting a ifame of the exact size of the movie on your page. Then make a new page put a html box on the page enter the code above but remove the /Show1/ from this
<param name="movie" value="/Show1/SlideShow.swf">
and this part
<embed src="/Show1/SlideShow.swf"
make the box the exact size of you movie, place this in the top left of the page.then in page properties, make the page the same size as your movie and check the center in page. Now save and publish to the same place as your xml swf and folder are in this case the /Show1 folder. Then no your with the iframe open the iframe and in the url enter the full url of the page you published in the Show1 . Close save and publish to the same place you puplished it before.

You can see two of this sort of iframe on this site notice the two menus. Here
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 05-28-2008, 07:21 PM
Alien Dude's Avatar
Dr Feel Good
 
Join Date: Apr 2008
Location: The Dark Side
Posts: 61
Default Re: Flash Element Slide Show

just a little tip if your using the iframe option then the address in the iframe should be http://www.anchorrealtyltdtc.com/Show1/thepageyoumade.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +1. The time now is 05:55 PM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2007 VodaHost.com - All Rights Reserved

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 50 51 52 53 54