Flash Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb DesignFlash Help
The ASP Free website provides in-depth information on the latest developer tools available from Microsoft. Our cadre of writers, highly experienced industry experts, reveals the best ways to use established technologies as well as new and emerging technologies. Our coverage of Microsoft's development and administration technologies is among the most respected in the IT industry today.

ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month!
Download and Activate to enter!

Intel® Graphics Performance Analyzers is a powerful tool suite for analyzing and optimizing your games, media, and graphics-intensive applications. Used by some of the best developers on the planet, Intel GPA lets you maximize your app’s performance.


Tutorials
| Forums

Download to Enter
| Contest Rules

DOWNLOAD INTEL® GPA FOR FREE

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 25th, 2003, 02:13 PM
SWQI SWQI is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 4 SWQI User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question Flash menu dropping down over html ?

How to make a flash menu that drops down OVER the html?
Look for an example at the square green flashbuttons on the left in this site:

http://breedbandportal.kpn.com/bbp/show/id=44088

Can someone give me a clue on how to do this??
Tnx.

Reply With Quote
  #2  
Old November 26th, 2003, 09:09 AM
mushie mushie is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 58 mushie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 9
the nav is in a <div> forced to a z-index of 999 to make it sit on top of everything else - the background of the movie is set to transparent.
this is why when you browse to that address using anything except internet explorer 5.5 or above, you get a STUPID direct* to a 'whats wrong with your browser' page because the transparency isnt supported in all browsers (my main browser is moz firebird).

* i say direct and not re-direct because it doesnt even do that - idiots.

Reply With Quote
  #3  
Old November 26th, 2003, 05:04 PM
SWQI SWQI is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 4 SWQI User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Page doesn't seem to work in Mozilla either.

Maybe not such a great idea to use something like that.

Anyway, it seems I have to brush up on my dhtml... hope to get something like that working sometime soon.

Grtz.WQ

Reply With Quote
  #4  
Old November 27th, 2003, 07:29 AM
mushie mushie is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 58 mushie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 9
if you are going to use flash, why not use it full screen anyway (or a fixed size, like fixed width column with 100% height).
if you are going to incorporate flash why not go the whole hog?
they way they have done it is a VERY bad idea IMHO, there is no need to alienate browsers.
a combination of css, javascript and a full stretched flash movie that doesnt scale works wonderfully - you'll need to work out the javascript to force the resizes of <divs> if need be , it doesnt work properly in Opera at least (javascript will do it - get screen size, resize the <divs> using getElementById)
Code:
/*
* Code to adapt Stage size on resize = set HTML embed size parameters to 100%
*
*/
Stage.scaleMode = "noscale";
Stage.align = "LT"; // LT - Left Top [0,0]
Stage.addListener(this);
onResize = function () {
	// auto adjust layout etcetera here :)
	updateAfterEvent();
};

that will prevent the flash content scaling but will resize the movie to fit

hth

Reply With Quote
  #5  
Old November 28th, 2003, 04:10 PM
SWQI SWQI is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 4 SWQI User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Making the whole site in Flash is not an option. There are a lot of
articles, pictures, links etc. and the content is frequently updated - every day- and not just by me.

I'll take your idea on a fixed width column with 100% height for the buttons. A browser friendly solution.

Another thing is a Flash banner that has to 'unfold'. A request from an advertiser for more space. Made some progress there...
It did cost me some research in the world of <div> but it seems to work, in Explorer 5.5 and up.

This is what I came up with:

<div style="position: relative; height: 60px; width: 234px;">
<div style="position: absolute; height: 60px; width: 234px; overflow: hidden;" onMouseOver="this.style.height='120px';" onMouseOut="this.style.height='60px';">
put flash movie here width="234" height="120"
</div>
</div>

WQ

Last edited by SWQI : December 7th, 2003 at 07:15 AM.

Reply With Quote
  #6  
Old January 2nd, 2004, 12:23 PM
Shawn05 Shawn05 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Posts: 44 Shawn05 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m 43 sec
Reputation Power: 9
Quote:
Originally posted by mushie
if you are going to use flash, why not use it full screen anyway (or a fixed size, like fixed width column with 100% height).
if you are going to incorporate flash why not go the whole hog?
they way they have done it is a VERY bad idea IMHO, there is no need to alienate browsers.
a combination of css, javascript and a full stretched flash movie that doesnt scale works wonderfully - you'll need to work out the javascript to force the resizes of <divs> if need be , it doesnt work properly in Opera at least (javascript will do it - get screen size, resize the <divs> using getElementById)


How would I go about making the whole site flash? I have MX.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignFlash Help > Flash menu dropping down over html ?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 8 - Follow our Sitemap