Notices
Computer & Technology Related Post here for help and discussion of computing and related technology. Internet, TVs, phones, consoles, computers, tablets and any other gadgets.

Web Page Creation Help Please ?

Thread Tools
 
Search this Thread
 
Old 02 September 2006, 11:48 AM
  #1  
DJ Dunk
Moderator
Support Scoobynet!
Thread Starter
iTrader: (5)
 
DJ Dunk's Avatar
 
Join Date: Nov 2001
Location: Not all those who wander are lost
Posts: 17,863
Received 0 Likes on 0 Posts
Default Web Page Creation Help Please ?

I have a flash gallery (simpleviewer) that I want to insert into a pre-existing web page but I'm struggling to get it to work (totally new to this).

Can anyone help me out if I point them to the 2 pages that need merging ?

Thanks.
Old 02 September 2006, 04:12 PM
  #2  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

if you have two separate html pages and you dont know how to merge them, you could cheat by adding an iframe to the original page that will open a new page in the current page (if that makes any sense)

Code:
<iframe src="moo.htm"></iframe>
http://www.htmlhelp.com/reference/ht...al/iframe.html

HTH

Jules
Old 02 September 2006, 04:13 PM
  #3  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

If this doesnt work, PM me the url's of the two pages and I'll have a look.

J
Old 02 September 2006, 05:52 PM
  #4  
DJ Dunk
Moderator
Support Scoobynet!
Thread Starter
iTrader: (5)
 
DJ Dunk's Avatar
 
Join Date: Nov 2001
Location: Not all those who wander are lost
Posts: 17,863
Received 0 Likes on 0 Posts
Default

Thanks, I managed to embed the flash into my page and make the menu overlap in the end. Thanks for the help anyway

Still having the 'Click to activate and use this control' problem in IE though (Firefox is fine). Tried some of the many solutions floating about but can't get it to work properly

Any ideas ?
Old 02 September 2006, 06:00 PM
  #5  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

Cool, that was the easier way

Control Activation Problem Description
This message appears because Microsoft has been sued and lost a law suit in the Internet Explorer browser software in regard to embedded controls/applets. In order to not have to pay millions of dollars in licensing fees, Microsoft have changed the behaviour of the Internet Explorer browser to require an activation click on the embedded control before a visitor is allowed to interact with the applet.

Microsoft has applied this patch as a mandatory upgrade for Internet Explorer 6.0 that was released early April 2006 and this affects ActiveX controls, Flash animations and Java applets - a significant and annoying change for users, especially where these elements are used for web site navigation. IE shows a tooltip when you hover over the control that says "Click to activate and use this control". The user then has to click once to activate and then again to press a button or click a link displayed by the Flash or Java applet.
Follow the destructions here:

http://www.mix-fx.com/flash-prompt.htm

I've had a look at the fitit.js file, and it looks safe and fine to include in your site.

Jules
Old 02 September 2006, 06:03 PM
  #6  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

Learn something every day. I'd seen that around on a load of sites for a while, and seen some sites with it not happening. I never got around to looking into it as I dont use flash that often. Interesting reading into it a bit.

J
Old 03 September 2006, 02:47 AM
  #7  
DJ Dunk
Moderator
Support Scoobynet!
Thread Starter
iTrader: (5)
 
DJ Dunk's Avatar
 
Join Date: Nov 2001
Location: Not all those who wander are lost
Posts: 17,863
Received 0 Likes on 0 Posts
Default

Thanks, but doesn't seem to work for me. I'm putting the <script type="text/javascript" src="fixit.js"></script> as the last line in my HTML, is that correct ? . . . and the js file in the same directory as the page.
Old 03 September 2006, 03:55 AM
  #8  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

I'll give it a try now, gimmie a sec.

J
Old 03 September 2006, 04:22 AM
  #9  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

yeah, thats it, it works for me:

Code:
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="300" height="160" VIEWASTEXT>
  <param name="movie" value="test.swf" />
  <param name="quality" value="high" />
  <embed src="test.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="160"></embed>
</object>
<script type="text/javascript" src="fixit.js"></script>
</body>
Jules
Old 03 September 2006, 08:54 AM
  #10  
DJ Dunk
Moderator
Support Scoobynet!
Thread Starter
iTrader: (5)
 
DJ Dunk's Avatar
 
Join Date: Nov 2001
Location: Not all those who wander are lost
Posts: 17,863
Received 0 Likes on 0 Posts
Default

Thats different to the code mine is using:

Code:
<embed src="viewer.swf" wmode="transparent"
FlashVars="xmlDataPath=imageData.xml"
bgcolor=#F80078 WIDTH=892 HEIGHT=600
TYPE="application/x-shockwave-flash"></embed>
. . . so there is no object tag

How can I use your code above but keep my transparency and variable ?

Many thanks
Old 03 September 2006, 05:22 PM
  #11  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

Should be able to yeah, there'll be "object" on the first line of the .js file change it to "embed"

Jules
Old 03 September 2006, 09:16 PM
  #12  
DJ Dunk
Moderator
Support Scoobynet!
Thread Starter
iTrader: (5)
 
DJ Dunk's Avatar
 
Join Date: Nov 2001
Location: Not all those who wander are lost
Posts: 17,863
Received 0 Likes on 0 Posts
Default

Hmmm, still struggling to get this working. The site has a 100% frame to mask the url as we're using a different host. Would this perhaps cause a problem ?
Old 04 September 2006, 02:04 AM
  #13  
judgejules
Scooby Regular
 
judgejules's Avatar
 
Join Date: Nov 2000
Posts: 1,227
Likes: 0
Received 0 Likes on 0 Posts
Default

Shouldnt be, post up or PM me a link to the site (or a test page) and I'll take a look.

Jules

Last edited by judgejules; 04 September 2006 at 02:39 AM.
Old 04 September 2006, 08:16 AM
  #14  
DJ Dunk
Moderator
Support Scoobynet!
Thread Starter
iTrader: (5)
 
DJ Dunk's Avatar
 
Join Date: Nov 2001
Location: Not all those who wander are lost
Posts: 17,863
Received 0 Likes on 0 Posts
Default

PM sent
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
Rbon91
ScoobyNet General
49
21 November 2018 03:23 PM
south_scoob
ScoobyNet General
22
03 October 2015 01:05 PM
oilman
Trader Announcements
15
01 October 2015 11:55 AM
TimberTronics
Subaru
0
17 September 2015 08:46 PM
powerwrx
Non Scooby Related
12
14 September 2015 08:35 PM



Quick Reply: Web Page Creation Help Please ?



All times are GMT +1. The time now is 06:29 AM.