Ask a Question related to Dreamweaver AppDev, Design and Development.
-
DarleneW #1
How is it done"
:confused;
I will be creating a new site for my office using Dreamweaver MX and Fireworks
MX - We also have Flash MX. I have used the Dreamweaver quite a lot and have
started using Fireworks (not really proficient yet) but have not used Flash.
My boss likes the way the MM site's menu bar at top shows the next menu when
moused-over. Can someone let me know what program was used to develop this?
Any 'tips' will be appreciated.
DarleneW Guest
-
Proj cannot run on LCDS 2.6 ES due to "Unable to resolveresource bundle "datamanagement" for locale "en_US"
hi, all, We have developped an application on Flex Build 3 (run successfully), but failed when we try to deploy it on Tomcat with LCDS 2.5 ES... -
CFINPUT type="radio" w/ "value" requires "label"
On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'... -
#26162 [NEW]: $a="0abcdefg";if ($a==0) echo "OK"; result is "OK" ?!
From: zhuminglun at yahoo dot com dot cn Operating system: linux/win2000 PHP version: 4.3.4 PHP Bug Type: *General Issues... -
dr("field").toString returns "400.0000" instead of "400"
I have just installed VS.NET 2003 on my computer. I have a project that I have been developing on VS.NET 2002. I haven't upgraded this project to... -
"Start" "Program" "Menu" list is empty
For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your... -
Murray *TMM* #2
Re: How is it done"
On many pages, those menus are Flash. However, having Flash as your main
navigation element is (in my opinion) a mistake UNLESS you also provide some
duplicate (non-Flash, i.e., plain HTML) navigation links somewhere.
Otherwise, those who do not have Flash Player installed will not be able to
navigate your site AT ALL.
On other pages, those menus are ordinary HTML text with a very funky system
for displaying the submenus. You can see them up close and personal (in
DMX2004) by using FILE | New > Page Design (CSS), and selecting anything
HALO. Having done that, the first thing you should do is to rip the menu
system out, and rebuild it with Show/Hide Layer - a simple job. Then you
will be golden.
You can read more about the Halo menus here -
[url]http://www.macromedia.com/devnet/mx/dreamweaver/articles/dissecting_halo.html[/url]
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"DarleneW" <webforumsuser@macromedia.com> wrote in message
news:d4tm9g$pvp$1@forums.macromedia.com...> :confused;
> I will be creating a new site for my office using Dreamweaver MX and
> Fireworks
> MX - We also have Flash MX. I have used the Dreamweaver quite a lot and
> have
> started using Fireworks (not really proficient yet) but have not used
> Flash.
> My boss likes the way the MM site's menu bar at top shows the next menu
> when
> moused-over. Can someone let me know what program was used to develop
> this?
> Any 'tips' will be appreciated.
>
Murray *TMM* Guest
-
DarleneW #3
Re: How is it done"
Thanks for that info - any other suggestions to do the following:
We have approximately 450 -500 pages in our existing site. The new site needs
to have interactive 'menus' - one on the main page(s) that will be on every
page in the site. and then sub-menus for each section (and possibly even a
sub-sub-menu on some sections. I have tried pop-up menus - they do not seem to
work with either 'Library' or Templates.
DarleneW Guest
-
Murray *TMM* #4
Re: How is it done"
> I have tried pop-up menus - they do not seem to
Unfortunately, they work fine with both Library items and Templates, but you> work with either 'Library' or Templates.
do have to understand how to make them do so. That's not to say it's black
magic, but it does require an understanding of how to manage the support
javascript.
If it were me (heck it IS me - I am just finishing a site like that), I
would use server-side includes for the section specific menus, and then a
series of Template logic tests to determine which one to use - I have done
just that in this markup (this is just a fragment of the entire logic set) -
<!-- TemplateBeginMultipleIf --> <!-- TemplateBeginIfClause
cond="(id=='products') && (productSubsection=='none')" -->
<!--#include virtual="/newsite/includes/prodproductmenu.html" -->
<!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
cond="(id=='products') && (productSubsection=='dummy')" -->
<!--#include virtual="/newsite/includes/proddummymenu.html" -->
<!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
cond="(id=='products') && (productSubsection=='practice')" -->
<!--#include virtual="/newsite/includes/prodpracticemenu.html" -->
<!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
cond="(id=='products') && (productSubsection=='training')" -->
<!--#include virtual="/newsite/includes/prodtrainingmenu.html" -->
<!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
cond="(id=='products') && (productSubsection=='amkor')" -->
<!--#include virtual="/newsite/includes/amkormenu.html" -->
In this case, each child page is given several parameter values that define
which section it belongs to. Based on the values of those parameters, the
proper include is selected for the menus.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"DarleneW" <webforumsuser@macromedia.com> wrote in message
news:d4tq0n$26c$1@forums.macromedia.com...> Thanks for that info - any other suggestions to do the following:
>
> We have approximately 450 -500 pages in our existing site. The new site
> needs
> to have interactive 'menus' - one on the main page(s) that will be on
> every
> page in the site. and then sub-menus for each section (and possibly even
> a
> sub-sub-menu on some sections. I have tried pop-up menus - they do not
> seem to
> work with either 'Library' or Templates.
>
Murray *TMM* Guest
-
DarleneW #5
Re: How is it done"
WoW! Guess I've got some studying to do - I've not had the opportunity to use
Server Side Includes and some other issues too. I downloaded the MX2004 - have
not installed yet -- Since I'm already running DW MX (I think 2000) will the
2004 overwrite my version? I don't want to cause myself problems. When I
changed from DW4 to MX the MX 'took over' - which was okay since I was going to
use it anyway -- but the download is only a trial basis. That makes me a
little nervous. PS - You have been very helpful. Can you direct me to the
website that you mention in your last message?
DarleneW Guest
-
Murray *TMM* #6
Re: How is it done"
You mean the one from which that markup snippet was taken? It's not quite
ready yet....
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"DarleneW" <webforumsuser@macromedia.com> wrote in message
news:d4u6og$jdj$1@forums.macromedia.com...> WoW! Guess I've got some studying to do - I've not had the opportunity to
> use
> Server Side Includes and some other issues too. I downloaded the MX2004 -
> have
> not installed yet -- Since I'm already running DW MX (I think 2000) will
> the
> 2004 overwrite my version? I don't want to cause myself problems. When I
> changed from DW4 to MX the MX 'took over' - which was okay since I was
> going to
> use it anyway -- but the download is only a trial basis. That makes me a
> little nervous. PS - You have been very helpful. Can you direct me to
> the
> website that you mention in your last message?
>
Murray *TMM* Guest



Reply With Quote

