Conflict with drop-menus

Hi all,
I've created a page that has a horizontal drop menu along the
top, and I wanted to make a side vertical menu for a few pages.
When I apply both menus to the page, one seems to nix the other one
out- ie: the top menu will expand, and the side menu won't.
Anyone know of a soultion? I've tried renaming the .js file
on one of them, doesn't seem to work. Thanks in advance!

moggiegirl wrote:
> Anyone know of a soultion? I've tried renaming the .js
file on one of them,
> doesn't seem to work. Thanks in advance!
You need to create both in the same Fireworks document and
export both
together.
Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
http://www.projectseven.com
Fireworks Newsgroup:
news://forums.projectseven.com/fireworks/
CSS Newsgroup: news://forums.projectseven.com/css/

Similar Messages

  • Help with Drop Menus

    I am designing a site that has multiple pages of images.
    (Photographer website) I added a drop menu to keep the site
    organized but I am now running into problems. Because of the
    multiple pages, whenever she wants to upload pictures I have to
    adjust the drop menu on like 15 pages. So I did the site over using
    frames thinking this would help. But no. Now the frame cuts the
    drop menu off.
    So my question is. Is there a way to create a link or
    javascript that I can link to on each page and then only edit that
    one item. So when I go to that link/script and edit it, it will
    just link to all other pages that contain that link/script. I don't
    know if this is an easy fix, but I have just been pulling what
    little hair out I have.
    Thanks in advance.
    Kevin

    Investigate using DW's Library items, or Templates, or
    ordinary Server-side
    includes. It's the only way to do it.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Chester_22" <[email protected]> wrote in
    message
    news:f8cqap$gra$[email protected]..
    >I am designing a site that has multiple pages of images.
    (Photographer
    >website)
    > I added a drop menu to keep the site organized but I am
    now running into
    > problems. Because of the multiple pages, whenever she
    wants to upload
    > pictures
    > I have to adjust the drop menu on like 15 pages. So I
    did the site over
    > using
    > frames thinking this would help. But no. Now the frame
    cuts the drop menu
    > off.
    >
    > So my question is. Is there a way to create a link or
    javascript that I
    > can
    > link to on each page and then only edit that one item.
    So when I go to
    > that
    > link/script and edit it, it will just link to all other
    pages that contain
    > that
    > link/script. I don't know if this is an easy fix, but I
    have just been
    > pulling
    > what little hair out I have.
    >
    > Thanks in advance.
    > Kevin
    >

  • Drop menus with mask and invisible movie clip

    please see this navigation interface:
    http://www.hearightnow/yogamater/
    when the mouse is outside of the drop menus, the drop menus "hide" behind the outside of a mask, when the mouse enters the drop menus, they move up. An invisible movie clip the traces the frame of the photos is in place to insert ROLL_OVER and ROLL_OUT code to "block" the event listener that functions the "yoga" drop menu.
    This is all done in one frame, the scripts do all the animation of the drop menus.
    the current code for this menu allows the mouse to travel from the photos to the "yoga" drop menu without triggering the menu to go up, however if the mouse travels from the "yoga" drop menu to the photos, the drop menu locks up until the mouse leaves the photos.
    any ideas how this can be fixed? also, how do I apply the script on the invisible clip to all the drop menus?
    definitely a newbie to AS3 so all help is greatly appreciated!!
    here is the main script:
    stop();
    addEventListener(Event.ENTER_FRAME,upyoga);
    addEventListener(Event.ENTER_FRAME,upteach);
    addEventListener(Event.ENTER_FRAME,upsched);
    addEventListener(Event.ENTER_FRAME,uppriv);
    addEventListener(Event.ENTER_FRAME,upcont);
    var speed:Number=.222;
    function upyoga(e:Event) {
    if ((yoga_menu.mouseY<yoga_menu.height&&yoga_menu.mouseY>0) &&
    (yoga_menu.mouseX<80&&yoga_menu.mouseX>0)) {
    yoga_menu.y-=(-58+yoga_menu.y)*speed;
    } else {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function upteach(e:Event) {
    if ((teach_menu.mouseY<teach_menu.height&&teach_menu.mouseY>0) &&
    (teach_menu.mouseX<80&&teach_menu.mouseX>0)) {
    teach_menu.y-=(-65+teach_menu.y)*speed;
    } else {
    teach_menu.y-=(-118+teach_menu.y)*speed;
    function upsched(e:Event) {
    if ((sched_menu.mouseY<sched_menu.height&&sched_menu.mouseY>0) &&
    (sched_menu.mouseX<80&&sched_menu.mouseX>0)) {
    sched_menu.y-=(-42+sched_menu.y)*speed;
    } else {
    sched_menu.y-=(-96+sched_menu.y)*speed;
    function uppriv(e:Event) {
    if ((priv_menu.mouseY<priv_menu.height&&priv_menu.mouseY>0) &&
    (priv_menu.mouseX<80&&priv_menu.mouseX>0)) {
    priv_menu.y-=(-28+priv_menu.y)*speed;
    } else {
    priv_menu.y-=(-74+priv_menu.y)*speed;
    function upcont(e:Event) {
    if ((cont_menu.mouseY<cont_menu.height&&cont_menu.mouseY>0) &&
    (cont_menu.mouseX<80&&cont_menu.mouseX>0)) {
    cont_menu.y-=(-40+cont_menu.y)*speed;
    } else {
    cont_menu.y-=(-88+cont_menu.y)*speed;
    and here is the script on the invisible clip:
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, invisClipOver);
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, menuBack);
    invisiClip.addEventListener(MouseEvent.ROLL_OUT, invisClipOut);
    function invisClipOver(event:MouseEvent):void {
    removeEventListener(Event.ENTER_FRAME,upyoga)
    function menuBack(e:Event) {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function invisClipOut(event:MouseEvent):void {
    addEventListener(Event.ENTER_FRAME,upyoga)

    I was having trouble attaching a zip or fla to this post so they can be retrieved at
    http://www.hearightnow.com/yogamater/menu_45b.zip
    or
    http://www.hearightnow.com/yogamater/menu_45b.fla
    the "menu" layer contains the mask that the drop menus hide behind
    the "invis" layer contains the invisible movie clip that has the code that removes and adds the event listeners that move the "yoga" drop menu
    the photos seen at http://www.hearightnow.com/yogamater/ are added with HTML DIV tags.
    thanks!

  • Drop menus with mask and invisible clip

    please see this navigation interface:
    http://www.hearightnow.com/yogamater/
    when the mouse is outside of the drop menus, the drop menus "hide" behind the outside of a mask, when the mouse enters the drop menus, they move up. An invisible movie clip the traces the frame of the photos is in place to insert ROLL_OVER and ROLL_OUT code to "block" the event listener that functions the "yoga" drop menu.
    This is all done in one frame, the scripts do all the animation of the drop menus.
    the current code for this menu allows the mouse to travel from the photos to the "yoga" drop menu without triggering the menu to go up, however if the mouse travels from the "yoga" drop menu to the photos, the drop menu locks up until the mouse leaves the photos.
    any ideas how this can be fixed? also, how do I apply the script on the invisible clip to all the drop menus?
    definitely a newbie to AS3 so all help is greatly appreciated!!
    here is the main script:
    stop();
    addEventListener(Event.ENTER_FRAME,upyoga);
    addEventListener(Event.ENTER_FRAME,upteach);
    addEventListener(Event.ENTER_FRAME,upsched);
    addEventListener(Event.ENTER_FRAME,uppriv);
    addEventListener(Event.ENTER_FRAME,upcont);
    var speed:Number=.222;
    function upyoga(e:Event) {
    if ((yoga_menu.mouseY<yoga_menu.height&&yoga_menu.mouseY>0) &&
    (yoga_menu.mouseX<80&&yoga_menu.mouseX>0)) {
    yoga_menu.y-=(-58+yoga_menu.y)*speed;
    } else {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function upteach(e:Event) {
    if ((teach_menu.mouseY<teach_menu.height&&teach_menu.mouseY>0) &&
    (teach_menu.mouseX<80&&teach_menu.mouseX>0)) {
    teach_menu.y-=(-65+teach_menu.y)*speed;
    } else {
    teach_menu.y-=(-118+teach_menu.y)*speed;
    function upsched(e:Event) {
    if ((sched_menu.mouseY<sched_menu.height&&sched_menu.mouseY>0) &&
    (sched_menu.mouseX<80&&sched_menu.mouseX>0)) {
    sched_menu.y-=(-42+sched_menu.y)*speed;
    } else {
    sched_menu.y-=(-96+sched_menu.y)*speed;
    function uppriv(e:Event) {
    if ((priv_menu.mouseY<priv_menu.height&&priv_menu.mouseY>0) &&
    (priv_menu.mouseX<80&&priv_menu.mouseX>0)) {
    priv_menu.y-=(-28+priv_menu.y)*speed;
    } else {
    priv_menu.y-=(-74+priv_menu.y)*speed;
    function upcont(e:Event) {
    if ((cont_menu.mouseY<cont_menu.height&&cont_menu.mouseY>0) &&
    (cont_menu.mouseX<80&&cont_menu.mouseX>0)) {
    cont_menu.y-=(-40+cont_menu.y)*speed;
    } else {
    cont_menu.y-=(-88+cont_menu.y)*speed;
    and here is the script on the invisible clip:
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, invisClipOver);
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, menuBack);
    invisiClip.addEventListener(MouseEvent.ROLL_OUT, invisClipOut);
    function invisClipOver(event:MouseEvent):void {
    removeEventListener(Event.ENTER_FRAME,upyoga)
    function menuBack(e:Event) {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function invisClipOut(event:MouseEvent):void {
    addEventListener(Event.ENTER_FRAME,upyoga)

    I was having trouble attaching a zip or fla to this post so they can be retrieved at
    http://www.hearightnow.com/yogamater/menu_45b.zip
    or
    http://www.hearightnow.com/yogamater/menu_45b.fla
    the "menu" layer contains the mask that the drop menus hide behind
    the "invis" layer contains the invisible movie clip that has the code that removes and adds the event listeners that move the "yoga" drop menu
    the photos seen at http://www.hearightnow.com/yogamater/ are added with HTML DIV tags.
    thanks!

  • New FIOS customer with dropped VOIP calls and Internet connection

    I am a new FIOS customer. Got my 50/25 connection a week ago, switching from a TWC 6/1 connection. Ever since the new connection, I've had numerous issues.
    My VOIP (Ooma) connection constantly drops and re-connects during conversations
    I've had random Internet connection losses, which picks up again after a few minutes
    My home alarm starts chirping every once in a while
    I've contacted Verizon several times due to these problems and have received varying answers with no resolution of the problem.
    The first time I spoke with support, the tech logged into my router and changed the WiFi channel saying that would fix the problem. It didn’t.
    The second time I contacted them, the tech ran a bunch of diagnostics and said everything looked fine so it must be an IP address conflict with my devices, because I had a couple devices using static IP addresses. He said everythinf should be DHCP and the last two digits could not be higher than 99 (192.168.1.99). He said FIOS does not support 3-digit numbers at the end.
    So I changed all my devices to DHCP and ran some online VOIP tests. It showed a packet loss of 2-5% and MOS score of 1 (which is bad). I was still getting dropped connections, so I disconnected all devices and connected just one computer to the router and tested again. I was still getting packet loss.
    Then I called support a third time, this time the tech said there were no 2-digit IP restrictions and that he was detecting there was no UPS baterry backup for the ONT which was probably causing the problem, so he dispatched a field tech to my house.
    Today the field tech came (same guy as before), he took one look at the box and said it was too close to my Electric meter and the RF from the meter was causing interference to the FIOS connection and resulting in dropped connection.
    He moved the ONT to another location and said that should fix it.
    Well, I'm still seeing packet loss and low MOS score when I run the VOIP test.
    I don't know how much of what the techs are saying is true and how much is made up stuff.
    Has anyone had similar issues and have thoughts on solutions or likely causes for dropped VOIP calls and connections? Could RF be causing this?
    I thought going from a 6/1 Cable connection to a 50/25 FIOS connection would be awesome, but this has turned out to be a nightmare, and I may have to switch back to cable if the problem is not resolved.
    I would appreciate any help.
    Thanks!

    Don't know where the packet loss is happening. I ran the VOIP test on myspeed.visualware.com and it shows a packet loss of 2-5% at different times and a MOS score of 1.
    The report says MOS should be around 4 for good VOIP calls.
    The Verizon tech who came to the house just blamed the electric meter box for RF interference and move the ONT farther away.
    My concern is that I'm getting different answers from different techs at Verizon.
    Regarding IP addresses. The Router shows a DHCP range from 192.162.1.2 to 192.168.1.254 as available for devices on the network. So, if I need to assign a static IP to a device should I use a number below 99 or above 151?
    Thanks!

  • Problem with contextual menus after 10.9.3 update

    Hello, since the update to 10.9.3 i am experiencing problems with contextual menus. The problem is more frequent when I use an external screen.
    First problem: I am losing the icons in the top bar of the finder. This happens mostly on external screens.
    Second problem: The arrows indicating submenus upon a right click are lost. This problem is also present when I use the internal screen of my Macbook.
    Sometimes, the icons in the left menu bar of the finder are also lost (mostly Dropbox):
    Is there anything I can do? Is this a known problem?
    My current system:
    Macbook Pro Retina 13" (late 2013)
    2.8 GHz Intel Core i7
    8 Gb Ram
    Intel Iris
    Thanks!

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • VoiceOver conflict with arrow keys ??

    I have just found that VoiceOver is in conflict with the Up/Down/Left/Right Arrow keys. If it is on the four keys do not work. I tried another keyboard to check whether it was a hardware problem and exactly the same happened with VoiceOver on. Why?
    Until yesterday everything worked fine but suddenly I lost the arrow key functionality. Any ideas, anyone?
    Note: I am not referring to the number pad and its keyboard mouse keys.

    Hello Helen,
    First of all, VoiceOver makes very heavy use of arrow keys, so you are right in suspecting that this is an oddity, and not a "feature" of VoiceOver.
    I've managed to reproduce this behaviour with the following sequence:
    1) Turn VoiceOver on (Cmd-F5).
    2) Activate QuickNav (left and right arrows simultaneously).
    3) Interact with an element containing only one item, via down + right arrows.
    4) Arrow keys will only "bong". No movement possible until QuickNav turned off again. Otherwise, turning VoiceOver off will also restore the arrow keys to normal—until it's turned back on again, when it will once more get "stuck". Of course, stopping the interaction via left+down arrows also restores free movement—but with QuickNav active, only the VO cursor moves, not the focus, so that can be disconcerting when trying to navigate menus, etc.
    So the solution may be to turn VoiceOver on, then ensure QuickNav is off (left + right arrows), then VoiceOver off again.
    Hope this clears it up!
    Archie

  • PCI USB2 Controller card conflicts with network card

    I've installed a PCI USB2 controller card since my motherboard (IWill K266-R) only has support for USB1. However, the card seems to conflict with one of my network cards, because traffic on the internet-connected NIC is very slow, and often drops completely. Traffic to and from the other (local) NIC seems to work fine, though.
    I have tried moving around all three cards in different PCI slots, I think I've tested almost every possible combination by now. I've also tried disabling as much as possible in BIOS, such as onboard sound, serial and parallel ports etc. I've tried lowering the FSB.
    For now, I've removed the controller card, and is using the USB1 ports on the motherboard instead. This is very frustrating, though.
    Does anyone have any suggestion on what I can try next? I've browsed forums, both this and others, but I haven't found any more hints on what to try. Could there be some setting in Arch that could affect these sorts of things?

    "I guess the ATA100 card will work fine correct?"
    If you mean large drive support, it may provide that or may require a firmware update to do so. You should check the manufacturer's web site for specifics. All ATA-133 cards do provide 48-bit LBA for large drive support. I'd return the Ultra ATA-66 card to the eBay seller, although many refuse to pay for return shipping, even when the mistake is their own, either through ignorance or deliberate misrepresentation. In cases such as this, it's sometimes more cost-effective to swallow the loss and keep the incorrect part.
    "Will adding a jumper apply for a ATA100 card as well? I'll need a blue and gray ribbon correct?"
    If you use an 80-conductor ribbon cable with color-keyed connectors, set the drive configuration jumper to CS and connect the drives to the cable as you wish (in terms of physical placement in the computer). If the ribbon cable doesn't have color-keyed connectors, set the jumper for the device connected to the end connector as Master and the drive (if any) connected to the middle connector as Slave.

  • Bluetooth mouse lags often. Maybe conflicts with Wi-Fi, using same band?

    My Bluetooth mouse, a Logitech v470 laser mouse, lags often on my MacBook Pro. I'm thinking that maybe it could be conflicting with my Wi-Fi, which is also enabled, and which uses the same band as Bluetooth – 2.4 GHz? Could this be the reason for the lag? My Wi-Fi also drops sometimes, so I don't know if the two are related or not.
    Could someone care to shed some light on this? I've read several other threads on these forums and noticed that other people are having similar issues, and would greatly appreciate a response.
    Thanks in advance!

    Yes, they can interfere.  Try using a lower channel number on Wifi or switch to the 5Ghz channel if possible.
    http://support.apple.com/kb/HT1365
    Regards,
    Captfred

  • Working with Sub Menus

    I've been having some issues with the latest version of iDVD 7.0.1 in working with sub menus. Sometimes I need a sub menu button to click through to 1 full screen still image with the option to hit the "back button" to get to the main menu. How I've been doing this is when in the main menu, I click "add sub menu," then it brings me to a new menu where I can drop something in the drop zone, etc. I bring my full screen static image in and drop it while holding down the option or cntl key, which gets rid of the drop zones and gives me a full screen image. This has worked fine for me in the past. But now I get issues where the "back" button won't work to get back to the main menu. The "back" button simply flashes and won't let me select it once the disc has been burned.
    Am I going about this all wrong? Should I be utilizing the slideshow function instead?
    Thanks in advance!

    Needless to say, it had been a while since I sorted through my hotmail account. Last I looked I had 861 messages and I was starting to feel a bit like Jim Carrey in the movie Bruce Almighty....
    Better late than never.

  • IPhone 4 wifi portal login with drop down menu

    Hi,
    I'm extremely happy with my iPhone 4. I use it often in WiFi hotspots (hotels, university, train stations etc) and the new portal log in system is really handy. Previously I used a third party WiFi portal logging in app which is now no longer necessary. HOWEVER, there seems to be a problem with the iPhone 4 remembering log in protocols for WiFi portals that include selecting an item from a drop down menu before logging in. For instance, the WiFi hotspots in trainstations here in the Netherlands work with several protocols depending on through which organisation you can log in. Before entering your log in details you have to select through which organisation you have access to such a hotspot. The third party logging in app was able to remember how to do this, but the iPhone 4 auto logging in thing (sorry, I don't know the term) does not remember. It's frustrating to have to fill the details in every time. And I can't even use the third party app any more because it needs primary connection to the local WiFi before it can log in, and the iPhone 4 won't give a primary connection if you don't fill in the details to log in (and if you do, you're already logged in and the third party app is useles...)
    Sorry for my rant, I'm wondering if there's a way to make the iPhone 4 log in tool-thing remember the protocol for logging in with drop down menus, or if there will be an update to fix it...
    Thanks,
    Tasmin
    P.S. I'm running iOS 4.1

    are you sure your stop() are in the right place??
    eg.. on the last frame of the onRollOver animation??
    also... why have you got on(releaseOutside); ???
    onRollOut will suffice.

  • Invisible or transparent drop-menus in firefox 38.0 beta

    Hello, Firefox community
    i'm facing a problem with the last update of firefox browser related to the drop-menus
    all the menus became invisible, i can barely see the borders only but no content.
    i'm using firefox 38.0 on Vista SP2
    below are some screenshots depicting my problem ..
    1 - Right click context menu
    2 - Toolbar menus
    3 - Address bar menu
    How to fix this? any suggestions ..

    hello Ultim4t3, maybe that's an issue with hardware acceleration - please try [[Upgrade your graphics drivers to use hardware acceleration and WebGL|updating your graphics driver]] or in case there is no new version available at the moment or this doesn't solve the issue, disable hardware acceleration in the firefox ''menu ≡ > options > advanced > general'' (that setting will take a restart of the browser to take effect).

  • Drop menus not working in Safari on iPhone 3.0 software

    There is a website that I use for work that has links that once touched used to drop down a sub-menu. This used to work before I upgraded to 3.0 yesterday. Any suggestions? I've checked to make sure that all options are the same in the Safari menu for JavaScript, Plug-Ins, and Block Pop-ups - they are all set to ON as they were with the older iPhone software.

    Why don’t we use a site that everyone can use and play with as an example.
    www.BESTBUY.com
    This site is loaded with drop down menus for product selection. The Iphone 3.0 will still allow the drop down menu to appear. But as mentioned earlier, the header is already activated. There is no chance making a selection from the drop down menu. I find it hard to believe that APPLE didn’t test this. Must be a bug introduced with a last minute security patch.
    APPLE fix it.

  • Flash Player Conflict with OSX 10.4.11 ??

    Hi All! I recently tried to upgrade to new version of Flash Player 9. Install was successful, but I can't access any online Flash content. Tried to uninstall and reinstall several times, to no avail. Any suggestions for troubleshooting? Any other known software conflicts with Flash Player 9? Thanks for any suggestions you can offer! Sue

    Hello and welcome, there was once a problem/conflict with Quicktime. Sometimes Quicktimes preferences has it set up as the default viewer for flash content.
    To change this open Applications>System Preferences(or just click on it if it's in your dock) and click on QuickTime. From the tabs in the window select "Advanced".
    At the bottom of this window click on the "MIME setting..." button. A drop down list will appear. At the bottom is "Miscellanious" click the small triangle to expand it. In that list is "Flash media" UNcheck it. Click OK and restart your computer.
    Hope this helps...Cheers,
    Glynn

  • K7N2 DELTA ILSR has conflicted with ram....

    K7N2 DELTA ILSR has conflicted with this ram....
    http://www.kingmax.com/product/pro_superMPXB62D-383.htm
    I got 2 * 256MB DDR 400 of the above ram.
    Is there any conflicted with K7N2 DELTA??
    amd 2500+
    thank you
    BIOS version 7.4

    Quote
    Originally posted by utada
    I have already brought kingmax
    These boards are very picky with RAM. As Bonz has pointed out their is an approved list near the top of the Forum but unfortunately I don't beleive Kingmax is on it. Sometimes the generic RAMS run, sometimes not. It seems to be hit or miss. If you want a recommendation of good quality RAM I would suggest MUSHKIN first and CORSAIR second. Good Luck
    Rob

Maybe you are looking for