Dynamic Flash Menu Trouble

I have spent way too long building a dynamic drop-down Flash
menu. Now it is time to publish but if I use wmode to remove the bg
my mouse events get all screwed up, plus from what I have read on
the forums I really don't want to use wmode if I can help it. Is
there any workaround here? The menu works great with the default
background covering up half of my web page but this is not a
workable solution from a design standpoint.
I am really hoping I did not just waste sooooo much time. Any
help is greatly appreciated.

Hi Speedee, I found this post that explains a floating flash
nav:
http://www.merhl.com/webdevblog/index.php?itemid=8&catid=3
Here is a sample of the nav idea:
http://www.merhl.com/samples/floatFlash.htm
The idea is to nest the embedding swf file into two divs.
Then give it a z-index. At the bottom of the page that explains it
at merhl.com is a script to put it onto a different z-index. This
may help.
I'm trying to build a flash menu that is populated with an
external xml file. I used the menuBar component. In doing so I am
looking for a way to use a 'Rollout' event like your menu rather
then the user having to click to hide the menu. Any ideas?
Peace and Good Luck.

Similar Messages

  • Need help with installing Yahoo style flash menu CS5

    I downloaded the Yahoo style menu bar from the the available widgets.  I got the menu bar to show in Dreamweaver, but need help:
    I have trouble understanding how to use the f-source  flash editor to edit the links.
    I don't seem to be able to drop the  f-source.com button from the menu bar.
    The bar  shows up as a tiny bar in IE8, not as I had programmed it in the widget programmer.
    I was instructed to Insert ==> f-source menus ==> Edit menu in Dreamweaver.  Doing this leads to the following message: "Install at least one f-source menu'.  I did install the f-source-UI G file in the Adobe Extension Manager CS5.  What else needs to be installed?  
    My OS is Windows7 and I am working with Dreamweaver CS5.  Please help.
    Thanks,
    Tony Uythoven

    Flash menus (Flash navigation, period) is a terrible thing from a functional standpoint. It looks really nice, but the honeymoon ends there. As far as SEO goes, your entire site, beyond the landing page, is invisible. A search robot will only see an embeded Flash object.
    You have to ask yourself a basic question.
    1. What is the purpose of building a website and putting it online?
    If it's for your own personal enjoyment and nothing more, then a Flash menu may be for you. If it's for a business or band, or a political group or social group, and you want people to be able to find it in Google, Yahoo, Bing, etc. then you want as many indexible links as possible on your landing page so they will show up in related searches like schedules, articles, galleries, etc.

  • Captivate 3 and Flash menu

    I have .swf files with closed captioning that are
    incorporated into a flash mx menu. The closed captioning text does
    not display (the bar displays) when played in the flash menu
    (neither do the tool tips on the nav bar).
    Any ideas/suggestions?

    You said...
    quote:
    The much bigger obstacle is that when I export a Captivate
    project that incorporates full-motion recordings with static slides
    displaying a text caption to Flash and then to .mov, I lose the
    full-motion recordings: they are replaced with a blank white or
    black screen (whatever the background color is set to be). The
    audio is gone too. I don't know what is causing this, but I would
    really appreciate any help you could lend me concerning this.
    I don't have a solution -
    maybe someone else here does - but would offer an
    observation ...
    Keeping in mind that I avoid monkeying with my own Captivate
    projects in Flash because of the various inconsistencie, some of
    which you have seen ... I am hopeful that the Captivate team does
    something to address the handling of full-motion slides. We all
    know that they are created as AVI clips which are then converted to
    SWF as separate slides, so it seems logical to me that there must
    be a way to offer the source, that is, the AVI or a FLA either of
    which would then be handled separately inside Flash (for those who
    like to do their tinkering in that environment).
    In the meantime, you might try to change the timing of the
    (errant) full-motion slide a bit. Like, perhaps add or subtract a
    tenth of a second to it or otherwise change its properties so that
    the import doesn't end up as a blank. Just thinking out loud in
    trouble-shooting mode... come to think of it, when the project is
    published to SWF/HTM, each full-motion slide is published as a
    separate SWF file. Would it be possible to publish the project,
    then try to bring that SWF back into Captivate as an animation?
    It's late here and I'm getting into fuzzy-thinking time, so if that
    doesn't make sense, it wouldn't surprise me.

  • XML flash Menu

    Hello Guys,
    I am stuck with a xml flash menu which contains quite a few great options to manipulate the text, url, button and even change the color to the menu externally from xml. The only thing missing here (which I massively need it) is the option resizing the buttons from the xml file itself. The buttons need to be resized so that they fit each text length. I have the feeling that someone that is good at XML and deal with ActionScript would be able to easily add this option.
    Thanks for commiting your time on this and I would be happy to help anyone in return who tackles this requirement I am after now.
    Please download the file attached and you can own it as well.
    Looking forward to hearing from you soon.
    Respectfully yours,
    Beko

    Ok, here we go:
    ACTION SCRIPT CODE:
    _parent._visible = false;
    // xml processing
    menu_cfg_xml = new XML();
    menu_cfg_xml.load(String(_url.slice(0, (_url.length-3)))+"xml");
    menu_cfg_xml.ignoreWhite = 1;
    menu_cfg_xml.onLoad = function(ok) {
        // create main menu after successful loading of XML
        if (ok) {
            create_menu();
        } else {
            trace("XML not loaded");
    counter = 1;
    function create_menu() {
        while (counter<menu_cfg_xml.firstChild.childNodes.length) {
            attachMovie("button_type", "btn"+counter, counter);
            set("btn"+counter+"._x", counter*80-100);
            btn1._y = 0;
            // set the buttons text
            set("btn"+counter+".the_text", menu_cfg_xml.firstChild.childNodes[counter].attributes.text);
            set("btn"+counter+".the_url", menu_cfg_xml.firstChild.childNodes[counter].attributes.url);
            set("btn"+counter+".the_target", menu_cfg_xml.firstChild.childNodes[counter].attributes.target);
            this["btn"+counter].onRollOver = this["btn"+counter].onDragOver=function () {
                this.effect.gotoAndPlay(2);
                this.textul1.textColor = "0x"+menu_cfg_xml.firstChild.childNodes[0].attributes.text_color2;
            this["btn"+counter].onRollOut = this["btn"+counter].onDragOut=function () {
                this.textul1.textColor = "0x"+menu_cfg_xml.firstChild.childNodes[0].attributes.text_color1;
                this.effect.gotoAndPlay(9);
            this["btn"+counter].onRelease = function() {
                if (this.the_url != undefined and this.the_url != "") {
                    getURL(this.the_url, this.the_target);
            //set buttons color
            this["button_color"+counter] = new Color("btn"+counter+".btn_color");
            this["button_color"+counter].setRGB("0x"+menu_cfg_xml.firstChild.childNodes[0].attributes .button_color);
            //set button effect color
            this["effect_color"+counter] = new Color("btn"+counter+".effect");
            this["effect_color"+counter].setRGB("0x"+menu_cfg_xml.firstChild.childNodes[0].attributes .effect_color);
            //set button text color
            this["btn"+counter].textul1.textColor = "0x"+menu_cfg_xml.firstChild.childNodes[0].attributes.text_color1;
            counter++;
        _parent._visible = true;
        info_clip._visible = false;
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    XML CODE:
    <?xml version="1.0" encoding= "UTF-8" ?>
    <!-- Menu created by www.adrianTNT.com -->
    <menu>
    <options button_color="000066" effect_color="87A10C" text_color1="87A10C" text_color2="FFFFFF">
    </options>
    <button text="Task force" url="http://www.google.com" target="_parent">width="250" height="136"</button>
    <button text="Service og turisme" url="http://www.google.com" target="_parent"></button>
    <button text="Fodbold" url="http://www.google.com" target="_parent"></button>
    <button text="Idraet" url="http://www.google.com" target="_parent"></button>
    <button text="Kunst and Design" url="http://www.google.com" target="_parent"></button>
    <button text="Teknisk/praktisk linje" url="http://www.google.com" target="_parent"></button>
    <button text="Gastronomi" url="http://www.google.com" target="_parent"></button>
    <button text="Laekker mad" url="http://www.google.com" target="_parent"></button>
    <button text="Musik" url="http://www.google.com" target="_parent"></button>
    <button text="Turbo-boglig" url="http://www.google.com" target="_parent"></button>
    </menu>

  • Problem with Flash Menu in iWeb...need help please.

    Ok, I designed a flash menu in iWeb and successfully placed it at the top of the site. I then used the "transparent shape" method to make the hyperlinks work properly. I made sure the flash menu was in the back and the transparent shape hyperlinks were in the front. The menu works just fine for me and anyone else using Safari or Mac computers. However, people on Windows using Firefox, IE or Chrome are unsuccessful in clicking the links. They do not work for them.
    Here's my website's homepage link. Keep in mind, if you look there on Safari, it will work but it does not when on a Windows computer. Any help is greatly appreciated.
    http://www.platinumsportspicks.com/Index/Home/Home.html
    It is clearly the problem that the flash menu is opening in front of the hyperlinked shapes but I'm not sure how to make sure they stay on front.
    Message was edited by: kwgrooms

    I don't know the answer to that one but you can use the Mouse Over and Click method I have described on this page....
    http://www.iwebformusicians.com/Tricks/MouseOver.html
    It works in IE.
    Its just a question of making up two different buttons with text for each link, taking a screenshot and cropping them and adding the JPEGs to your upload folder.
    You can make up the buttons on an iWeb page and then delete them when you have taken the screenshots. I usually do this sort of thing in Keynote so that I can save them in case I need to modify them.

  • I don't want my flash menu to reload on every page

    Hi everyone,
    I have a website that I am working on where I have a menu
    made in flash, the menu expands when you select a category item and
    executes a hyperlink when you click on a particular item within the
    category.
    This hyperlink load a new page and reloads the flash menu
    which causes the option pre-selected to get lost and you have to
    select again the category item and item over an over again.
    It is good to mention that I want to stay away from Frameset.
    Is there a way to load a particular part of the site instead
    of the while site, so my menu selection stays the same?
    I read about <DIV ID=", BASE, REL and REV and they don't
    seem to work for me. Is there a sample code that I can look at to
    have better understanding of it?
    Thank you in advance.

    A good way to make it so it does not reload on every page is
    to make a IFrame and make the target link of the flash buttons go
    to the Iframe ("
    http://staggdesigns.com" ,
    "_TARGETFRAME") that will work

  • My Mac has stopped playing you tube asking me to update flash player trouble is it is asking me for a password and I don't ever recall setting a password for this mac -!!!!!

    My Mac has stopped playing you tube asking me to update flash player trouble is it is asking me for a password and I don't ever recall setting a password for this mac …!!!!

    When the Mac was setup you had to create an administrative password.and account.  Yo have to sign into that account to install apps/plug-ins like Flash. To reset that password.
    Forgot Mac Password? How to Reset Your Mac Password (with or without CD)
    Change the Admin Password with Mac OS X Single User Mode
    Reset mac mini admin password: Apple Support Communities

  • Installed latest sec update and have flashing menu bar - cannot login

    I also just installed the latest security update running 10.3.9 with a original 1ghz 17" powerbook.
    Trying to boot afterwards I end up with a flashing menu bar and no disk icon on the desktop - obviously I can't login (set to single user)
    Trying to repair permissions with a CD boot results in an "internal error" with the disk utility. Disk repair reports no problems. The program then cannot continue, and I have to hold the power button to get it to shut down.
    Any ideas???
    This is the LAST time I use the auto update!!!
    17" powerbook 1ghz Mac OS X (10.3.9)
      Mac OS X (10.4.2)  

    Hey. I am having almost the exact same problem my menu bar is flashing and no HardDrive icon on the desktop!?

  • Flash Menu in a Template?

    I can’t get my flash menu I created to show up in the
    .dwt Template. It shows up in the editable region fine. When I
    preview just the template it shows up fine. But it won’t show
    up on pages based on the template. Hope that makes sense. Any
    ideas?

    If you want to use Flash for navigation, consider this -
    1. Some people don't have Flash installed - what do they do?
    2. Search engines don't parse Flash links - your site will
    not be spidered
    3. Screen assistive devices don't parse Flash links - what
    will those users
    do?
    4. DW cannot maintain links within a Flash movie, so if you
    move or rename
    a linked file, your navigation will break - what will you do?
    It's usually a very bad idea for these reasons...
    In general, because of the EOLAS fix to how IE handles Flash,
    and the
    subsequent changes in DW, links to Flash elements WILL NOT BE
    MANAGED BY
    DREAMWEAVER. To work around this, you must make all such
    links ROOT
    RELATIVE, not document relative.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "JakeAllen" <[email protected]> wrote in
    message
    news:feog58$h5d$[email protected]..
    >I can?t get my flash menu I created to show up in the
    .dwt Template. It
    >shows
    > up in the editable region fine. When I preview just the
    template it shows
    > up
    > fine. But it won?t show up on pages based on the
    template. Hope that
    > makes
    > sense. Any ideas?
    >

  • Setting the Default Value for a dynamic select menu

    Hi I have a php page with 2 forms on it, one feeds the other to achieve a drill down (manufacturer > model). In the second select menu I have a default static value "Select Aircraft Model", I want to set a value for the first dynamic select menu to read "Select Aircraft Manufacturer". When I add a static value to my list it tells me I alreay have a dynamic behavior on this menu and to choose a different one. I have included the code for both menus. Thank you in advance, I know this must be a stupid question, but it's got me stumped.
    Tom
    //This is the menu I want to add the default static value to//
    <td width="667"><select name="airMake" style="width: 200px;"onchange="this.form.submit();" id="airMake">
            <?php
    do {
    ?>
            <option value="<?php echo $row_rsAirManufacturer['aircraft_manufacturer']?>"<?php if (!(strcmp($row_rsAirManufacturer['aircraft_manufacturer'], ((isset($_POST["airMake"]))?$_POST["airMake"]:"")))) {echo "selected=\"selected\"";} ?>><?php echo $row_rsAirManufacturer['aircraft_manufacturer']?></option>
            <?php
    } while ($row_rsAirManufacturer = mysql_fetch_assoc($rsAirManufacturer));
      $rows = mysql_num_rows($rsAirManufacturer);
      if($rows > 0) {
          mysql_data_seek($rsAirManufacturer, 0);
          $row_rsAirManufacturer = mysql_fetch_assoc($rsAirManufacturer);
    ?>
          </select>
          </td>
      </tr>
    </table></form>
        <form action="quoteResult.php" method="post" name="quoteForm">
          <table width="100%" border="0" cellpadding="5px">
            <tr>
              <td width="260"style="color: #000; text-align: right;">Aircraft Model:</td>
              <td colspan="2"><span id="spryselect2">
    //This is the menu that works correctly//
                <select name="airModel" style="width: 200px;" id="airModel">
                  <option value="" <?php if (!(strcmp("", ((isset($_POST["airMakeField"]))?$_POST["airMakeField"]:"")))) {echo "selected=\"selected\"";} ?>></option>
                  <?php
    do { 
    ?>
                  <option value="<?php echo $row_rsAirModel['aircraft_model']?>"<?php if (!(strcmp($row_rsAirModel['aircraft_model'], ((isset($_POST["airMakeField"]))?$_POST["airMakeField"]:"")))) {echo "selected=\"selected\"";} ?>><?php echo $row_rsAirModel['aircraft_model']?>Select Aircraft Model</option>
                  <?php
    } while ($row_rsAirModel = mysql_fetch_assoc($rsAirModel));
      $rows = mysql_num_rows($rsAirModel);
      if($rows > 0) {
          mysql_data_seek($rsAirModel, 0);
          $row_rsAirModel = mysql_fetch_assoc($rsAirModel);
    ?>
                  </select>

    Change this -
    <select name="airMake" style="width: 200px;"onchange="this.form.submit();" id="airMake">
    to this -
    <select name="airMake" style="width: 200px;"onchange="this.form.submit();" id="airMake">
    <option value="-1">Select Aircraft Manufacturer</option>
    Then if the value of 'airMake' is -1 you know that no choice was made.

  • Next and Previous slide from Flash Menu

    We are currently tasked with updating SAP training that was
    created with OnDemand software. The current simulations have a
    Javascript menu on each screen which provides various functions
    including moving from current slide to next or previous slides.
    When the existing movie is played and captured, we lose the
    javascript menu functionality.
    I have created a Flash Menu and have imported it to the newly
    captured Captivate movie. All links on the menu work except Next
    Slide and Previous slide.
    The script I use for the button for the Next slide is as
    follows:
    this.next_btn.onRelease =function(){
    this._parent._parent..nextFrame();
    Also I have tried substituting for nextFrame "play" and for
    the target path "_root" for the first "_parent."
    The variables "rdcmndNextFrame" and "rdcmndPrevious" do not
    work unless you are using a playback bar, which detracts from the
    simulation.
    Has anyone ever created this type of functionality? It seems
    that it would be straight forward. It is most likely a target path
    issue. The captivate movie is the container for the flash menu. To
    access the captivate movie timeline and move to the next or
    previous slide is what I really need.
    Help!

    I resolved the issue by selecting to use a playback bar and
    then in the Flash file setting the visibility of the playback bar
    to "0".

  • Flash menu in DW, how do I link the buttons?

    Hi there!
    I have a problem, i'm creating a site in dreamweaver with a
    lot of flash objects. For examlpe I'm making a flash menu, wich is
    the hole problem! I'm importing the flash file to the left frame in
    dreamweaver and i'm trying to link the buttons (on the menu) to ex.
    "home" or "about me", though it doesn't work! I can't link the
    buttons because they're in this flash object. I know i'm doing it
    wrong with trying to link the buttons on the flash object but I
    don't know what else to do. And the thing is that i don't wanna use
    the buttons already existing in DW, i've made my own ones. The
    buttons are moving so there is one more problem, they're coming in
    from the right side (in the left frame) and bounces once, and then
    they stop. And that's when I wan't them clickable. So how do I make
    the buttons linking to the pages??
    Would really appreciate an awnser!
    Thanks !

    Flash links are made in Flash, not DW.
    I trust these links are not important, as search engines
    can't see them
    "Sabyonei" <[email protected]> wrote in
    message
    news:f1ktus$ct9$[email protected]..
    > Hi there!
    > I have a problem, i'm creating a site in dreamweaver
    with a lot of flash
    > objects. For examlpe I'm making a flash menu, wich is
    the hole problem!
    > I'm
    > importing the flash file to the left frame in
    dreamweaver and i'm trying
    > to
    > link the buttons (on the menu) to ex. "home" or "about
    me", though it
    > doesn't
    > work! I can't link the buttons because they're in this
    flash object. I
    > know i'm
    > doing it wrong with trying to link the buttons on the
    flash object but I
    > don't
    > know what else to do. And the thing is that i don't
    wanna use the buttons
    > already existing in DW, i've made my own ones. The
    buttons are moving so
    > there
    > is one more problem, they're coming in from the right
    side (in the left
    > frame)
    > and bounces once, and then they stop. And that's when I
    wan't them
    > clickable.
    > So how do I make the buttons linking to the pages??
    > Would really appreciate an awnser!
    >
    > Thanks !
    >

  • Flash Menu Style Help

    I need to build a flash based menu and want to learn how to
    do the same cool functionality that I see on the
    http://grandcentral.com website.
    Notice on the "features" menu how when you click on an item
    the arrow will scroll down to that menu item. I'd like to learn how
    to make a pointer move across multiple other items to get to the
    one that is being clicked on like that. I hope it is easy enough
    that I can do it!
    Any help is most appreciated as I have a project I'm doing
    right now that would really benefit from this.
    Thanks in advance!
    I work on a mac running osx and flash 8 pro.

    Flash menus (Flash navigation, period) is a terrible thing from a functional standpoint. It looks really nice, but the honeymoon ends there. As far as SEO goes, your entire site, beyond the landing page, is invisible. A search robot will only see an embeded Flash object.
    You have to ask yourself a basic question.
    1. What is the purpose of building a website and putting it online?
    If it's for your own personal enjoyment and nothing more, then a Flash menu may be for you. If it's for a business or band, or a political group or social group, and you want people to be able to find it in Google, Yahoo, Bing, etc. then you want as many indexible links as possible on your landing page so they will show up in related searches like schedules, articles, galleries, etc.

  • Flash menu target help

    Well because I am only a year old to flash I bought a program
    called Flash Menu Labs which helps me create a horizontal menu with
    many branches. I have figured out how to import this into my
    project using the loader component but i have some other questions.
    I can add links to my menu items within Flash menu labs using
    the open method and _self, _blank, _top, _parent but not sure which
    one to use or how to get it to gotoandplay or how to open another
    swf within my current project. So when I click one of my menu items
    it will actually open or goto a frame in the project that i put the
    menu.
    Hope that makes some sense. I have enclosed some pictures to
    help make some sense of this. The first picture shows the Flash
    Menu Labs menu i created and you can see it works using the loader
    component. The second picture shows the actual Flash Menu labs
    layout screen.
    Picture 1
    picture
    2

    mikeoffy69 wrote:
    > Well because I am only a year old to flash I bought a
    program called Flash Menu
    > Labs which helps me create a horizontal menu with many
    branches. I have figured
    > out how to import this into my project using the loader
    component but i have
    > some other questions.
    >
    > I can add links to my menu items within Flash menu labs
    using the open method
    > and _self, _blank, _top, _parent but not sure which one
    to use or how to get it
    > to gotoandplay or how to open another swf within my
    current project. So when I
    > click one of my menu items it will actually open or goto
    a frame in the project
    > that i put the menu.
    >
    >
    > Hope that makes some sense. I have enclosed some
    pictures to help make some
    > sense of this. The first picture shows the Flash Menu
    Labs menu i created and
    > you can see it works using the loader component. The
    second picture shows the
    > actual Flash Menu labs layout screen.
    >
    This is not fully featured Flash application but tool
    designated to crate just menus
    and out put them into SWF format - Flash Player compatible .
    You don't have the freedom
    to add on your own action script, except the getURL requests.
    You need actual Adobe Flash
    authoring program to create Fla/SWF files and be able to use
    action script at will.
    I don't believe you will be able to even work on "Flash Menu
    Labs" files. Beside export
    to SWF, this tool has nothing to do with Adobe Flash. Using
    Flash you will need to make
    your menus entirely from scratch.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Flash menu frame help

    Okay well for my site I want to make a flash menu that goes
    on the bottom frame and effects the top frame! A good tutorial
    would be nice! Because im also new to making flash menus. So please
    help!

    you are not thinking right - you can't really "effect" frames
    - rather you can target what *in* a
    frame or frames - preferrably a Movie Clip symbol. I'm afraid
    a lot more information is needed -
    hard to tell what your skill level is and what you are trying
    to specifically.
    --> Adobe Certified Expert (ACE)
    --> www.mudbubble.com :: www.keyframer.com
    -->
    http://flashmx2004.com/forums/index.php?
    -->
    http://www.macromedia.com/devnet/flash/articles/animation_guide.html
    -->
    http://groups.google.com/advanced_group_search?q=group:*flash*&hl=en&lr=&ie=UTF-8&oe=UTF-8
    Kirkius wrote:
    > Okay well for my site I want to make a flash menu that
    goes on the bottom frame and effects the top frame! A good tutorial
    would be nice! Because im also new to making flash menus. So please
    help!

Maybe you are looking for

  • I forgot pattern lock on my Sony Xperia Z1 and i need it back

    Hello, on my sony xperia z1 phone i forgot my pattern lock. I can't use the Forgot Pattern Lock because it uses Wifi conection which i can't connect to...(my screen is locked) I want to hard reset it somehow but i tried allmost every method on the in

  • How to publish with iWeb on other website instead of MobileMe?

    Hi, I used iweb 3.0 the last time one year ago to publish my website in my mobileme account. - how can I today publish on another domain? - do I need also a newver version of iweb to do it an dif yes do I need to buy it or is it aprt of OS-X Lion for

  • Cannot change image size dimensions

    the program will NOT let me enter values  or change dimension values, can anyone help?

  • How to create page reference to my item numbers?

    Hello! I need help to mark all my item numbers and then create a page reference to them so I can create an Index page. Sample of my item numbers to find: #12345 #12345-5 #12345-20 #12345-ABC #12345/N Please help and thanks in advance!

  • Can't get working as wireless bridge - help!

    Folks I am trying to setuy my base station as a wireless bridge to ultimately connect to a network printer. I try to first connect it to my wireless network form my netopia dsl wireless router, but am having no success. Here's what doesn't make sense