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...

Closed Thread
 
Thread Tools
  #1  
Old 05-28-2008, 06: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!
  #2  
Old 05-28-2008, 08:24 AM
Collectors-info's Avatar
General
 
Join Date: Feb 2006
Location: London (UK)
Posts: 7,532
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.
__________________
Regards Chris,
Sites are view in FF & IE, with res @ 1024 x 768 on 19” screens.

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


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old 05-28-2008, 01:01 PM
Vasili's Avatar
General & Forum Moderator
 
Join Date: Mar 2006
Posts: 10,939
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!
  #4  
Old 05-28-2008, 04:03 PM
Alien Dude's Avatar
The Dark Side
 
Join Date: Apr 2008
Location: The Dark Side
Posts: 373
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!
  #5  
Old 05-28-2008, 08:21 PM
Alien Dude's Avatar
The Dark Side
 
Join Date: Apr 2008
Location: The Dark Side
Posts: 373
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!
Closed Thread


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 Off



All times are GMT +1. The time now is 01:21 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203