[DIR MX] Reset de QT VR

Buenas,
tengo unas imagenes con QT VR y me gustaria poder resetear el
punto de
partida cuando el usuario vuelve otra vez a una imagen con la
que ya ha
estado "jugando" un rato.
He estado probando/buscando algunas cosillas pero no hay
manera.
Alguna idea ??
Muchas gracias
Frate

This is a multi-part message in MIME format.
------=_NextPart_000_000A_01C707D9.6990E670
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Gracias Lucas, pero eso es precisamente lo que necesito. El
QT ya est=E1 =
cerrado.
F
"Lucas Sevilla" <[email protected]> escribi=F3
en el mensaje =
news:[email protected]...
desde el propio QTVR lo puedes hacer, otra cosa es que
quieres que =
cuando vuelva a mostrarse no se recuerde la posici=F3n que
dejo el =
usuario, pero no recuerdo la funci=F3n
Lucas Sevilla
www.lucassevilla.info
www.gestproyect.info=20
"Frate Aubets" <[email protected]> escribi=F3 en el
mensaje =
news:[email protected]...
Buenas,
tengo unas imagenes con QT VR y me gustaria poder resetear
el punto =
de=20
partida cuando el usuario vuelve otra vez a una imagen con
la que ya =
ha=20
estado "jugando" un rato.
He estado probando/buscando algunas cosillas pero no hay
manera.
Alguna idea ??
Muchas gracias
Frate
------=_NextPart_000_000A_01C707D9.6990E670
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2963"
name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Gracias Lucas,
pero eso es precisamente =
lo que=20
necesito. El QT ya est=E1 cerrado.</FONT></DIV>
<DIV><FONT face=3DArial
size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial
size=3D2>F</FONT></DIV>
<DIV><FONT face=3DArial
size=3D2></FONT> </DIV>
<DIV> </DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT:
5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Lucas Sevilla" &lt;<A=20
=
href=3D"mailto:[email protected]">[email protected]</A>&gt;=
=20
escribi=F3 en el mensaje <A=20
=
href=3D"news:[email protected]">news:eja760$g53$1@forums=
.macromedia.com</A>...</DIV>
<DIV><FONT face=3D"Trebuchet MS" size=3D2>desde
el propio QTVR lo =
puedes hacer,=20
otra cosa es que quieres que cuando vuelva a mostrarse no se
recuerde =
la=20
posici=F3n que dejo el usuario, pero no recuerdo la =
funci=F3n</FONT></DIV>
<DIV>
<P>Lucas Sevilla</P>
<P><A =
href=3D"
http://www.lucassevilla.info">www.lucassevilla.info</A></P>
<P><A href=3D"
http://www.gestproyect.info">www.gestproyect.info</A>
=
</P></DIV>
<BLOCKQUOTE=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT:
5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Frate Aubets" &lt;<A=20
href=3D"mailto:[email protected]">[email protected]</A>&gt;
escribi=F3 en =
el mensaje=20
<A=20
=
href=3D"news:[email protected]">news:eja48d$cik$1@forums=
.macromedia.com</A>...</DIV>Buenas,<BR><BR>tengo=20
unas imagenes con QT VR y me gustaria poder resetear el
punto de =
<BR>partida=20
cuando el usuario vuelve otra vez a una imagen con la que ya
ha =
<BR>estado=20
"jugando" un rato.<BR><BR>He estado
probando/buscando algunas =
cosillas pero=20
no hay manera.<BR><BR>Alguna idea
??<BR><BR>Muchas=20
=
gracias<BR><BR>Frate<BR><BR><BR></BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>
------=_NextPart_000_000A_01C707D9.6990E670--

Similar Messages

  • How to reset Home Dir permissions?

    I've had a few situations lately where I've had to either move files from one user's Home Dir to another's, or delete a user then move its files back after recreating it, or simply fix wonky privs, but I can't seem to find an easy way to do these things.
    Is there any way to automate the inheritance of privs? Like, I want to be able to drop a file into a user's home, and have it become owned by that user. I thought I'd at least be able to reset the owner while logged in as that user, by changing the setting in the Get Info window, but you aren't even given the option to authenticate as an admin...
    Am I missing something easy here?

    In short, there is no easy way to enable propagation of ownership to files that are dropped into a home folder.
    However, I use a bash script on or home folder servers to create/fix permissions on a user's apple home folder. The script will go through all folders in the user's home folder and reset the permissions and ownership to the correct values.
    1. Copy the script below into a file (eg. fixpermissions.sh) using emacs, nano or your favorite editor.
    2. Open a terminal on the machine hosting the home folder.
    3. Change to the top level of your home folder tree.
    Eg. If the home folder is /Users/jweston, change to the /Users folder <pre>cd /Users</pre>
    4. Run the fixpermissions.sh script with the username to fix.
    <pre>./fixpermissions.sh jweston</pre>
    5. Done! Note: If the folder does not exist it will be created. Otherwise, the script will fix permissions on the current contents.
    Here is the script...
    <pre>
    #!/bin/bash
    if [ -d ${1} ]
    then
    #Home Dir exists, reset permissions
    chown -R ${1}.admin ${1}
    chmod -R u=rwX,go= ${1}
    chmod -R go=rX ${1}/Public ${1}/Sites
    chmod go=wX ${1}/Public/Drop\ Box
    chmod go=rX ${1}
    else
    #Home Dir does not exist, create...
    mkdir ${1}
    mkdir ${1}/Desktop
    mkdir ${1}/Documents
    mkdir ${1}/Library
    mkdir ${1}/Movies
    mkdir ${1}/Music
    mkdir ${1}/Pictures
    mkdir ${1}/Public
    mkdir ${1}/Public/Drop\ Box
    mkdir ${1}/Sites
    chown -R ${1}.admin ${1}
    chmod -R u=rwX,go= ${1}
    chmod -R go=rX ${1}/Public ${1}/Sites
    chmod go=wX ${1}/Public/Drop\ Box
    chmod go=rX ${1}
    fi</pre>

  • TS2972 how to reset home sharing

    How do I reset home sharing in itunes, I don't know what computers, I put home sharing on, Most likely I had to reformat the hard drives, So they don't exist. I would like to do is set my account to zero.. thanks

    In short, there is no easy way to enable propagation of ownership to files that are dropped into a home folder.
    However, I use a bash script on or home folder servers to create/fix permissions on a user's apple home folder. The script will go through all folders in the user's home folder and reset the permissions and ownership to the correct values.
    1. Copy the script below into a file (eg. fixpermissions.sh) using emacs, nano or your favorite editor.
    2. Open a terminal on the machine hosting the home folder.
    3. Change to the top level of your home folder tree.
    Eg. If the home folder is /Users/jweston, change to the /Users folder <pre>cd /Users</pre>
    4. Run the fixpermissions.sh script with the username to fix.
    <pre>./fixpermissions.sh jweston</pre>
    5. Done! Note: If the folder does not exist it will be created. Otherwise, the script will fix permissions on the current contents.
    Here is the script...
    <pre>
    #!/bin/bash
    if [ -d ${1} ]
    then
    #Home Dir exists, reset permissions
    chown -R ${1}.admin ${1}
    chmod -R u=rwX,go= ${1}
    chmod -R go=rX ${1}/Public ${1}/Sites
    chmod go=wX ${1}/Public/Drop\ Box
    chmod go=rX ${1}
    else
    #Home Dir does not exist, create...
    mkdir ${1}
    mkdir ${1}/Desktop
    mkdir ${1}/Documents
    mkdir ${1}/Library
    mkdir ${1}/Movies
    mkdir ${1}/Music
    mkdir ${1}/Pictures
    mkdir ${1}/Public
    mkdir ${1}/Public/Drop\ Box
    mkdir ${1}/Sites
    chown -R ${1}.admin ${1}
    chmod -R u=rwX,go= ${1}
    chmod -R go=rX ${1}/Public ${1}/Sites
    chmod go=wX ${1}/Public/Drop\ Box
    chmod go=rX ${1}
    fi</pre>

  • Application doesnt show up in app manager

    Hi Folks,
    I ve encountered a strange problem:
    After a while playing with webstart, I have the problem now, that my app (loaded from the same host (tried localhost as well as network interface)) doesnt show up in the application manager (altought it definitely is downloaded (cache directory) and runs successfully).
    I even tried removing the whole .javaws dir to reset webstart somehow - no chance. It still works fine with SUNs Demo apps.
    Does webstart save any state/configuration in a location other then .javaws?!
    Any suggestions/ideas?
    \Daniel
    PS: I m using j2sdk 1.4.1 under Linux.

    The current versions of Java Web Start will only cache the jnlp file if it has an href attribute. (ie: a reference to itself) The Application Manager then considers the jnlp file to be the application, and everything else to be its resources.
    /Dietz

  • Why does my ping increase after a few minutes of resetting AirPort?

    I connect various phones and my Macbook Air to WIFI using my AirPort Express. I have been plagued with WIFI and ISP problems and recently upgraded my modem to try and fix this issue that persists to this day. I feel like I have narrowed down the problem to my AirPort Express.
    After resetting my Airport everything appears to be running smoothly. My download/upload speeds are adequate, I have a very strong WIFI signal, all is well. When I go to play online games I notice an increase in my ping within 10 minutes of resetting my Airport. It happens fairly abruptly - it is not an incremental change. For example I am usually jumping from ~100ms to ~450ms. This happens on multiple servers and can't be tied to one host.
    After resetting my AirPort my ping goes back down to normal but jumps up after a few moments. I have my Arris modem set to bridge, and I've tried connecting to the 5GHz channel through the router and there doesn't seem to be any difference.
    This problem started a month or so ago. The AirPort has worked absolutely perfectly for a couple of years now. It is really only the ping in online games that seem to be effected – my download/upload speeds are running well which has me stumped.
    AirPort Express
    Version 7.6.4
    Serial number C86HV4YPDV2R
    I really appreciate any help! I am out of warranty with the device to call apple and I've spent more than a lifetime on the phone with TWC.

    Wireless is extraordinarily complicated. It is more a wonder that it works that doesn't.
    Two follow up questions. First, I have taken both the phones in the household off wifi as well as my Roku and that didn't make any noticeable differences.
    It is worth a try.. it is wireless after all.. voodoo in another medium.
    your answer doesn't really help with two issues. My computer used to connect with no ping increase before this sudden change and why does this change start happening after a few moments of clarity and then skyrocketing pings?
    How old is your Express? Anything more than 3 years can suffer due to build quality.. apple is no different to other brands now. A sudden change can indicate poor internals.
    7.6.4 is lousy firmware.. test with 7.6.1 if that is possible. (newest ones may not downgrade)
    I personally have heaps of Extreme and TC but avoid the express.. it is expensive for what it is.. a very low end wireless AP that can double up as a router at a pinch.
    If you have an old Express that you upgraded the firmware.. you may not have noticed the upgrade coincided with the poor pings.. but it can happen.
    Also Mavericks.. if you upgrade installed mavericks it can have dire effects on the wireless.. even the latest update to Mavericks has been causing wireless issues. Mavericks and networking is somewhat akin to tin cans and wet string. With the string fraying.
    So reset to factory.
    Downgrade the firmware.. then reset to factory a second time..
    Test it with short names, no spaces and pure alphanumeric.. NOT apple names.. since mavericks changed to SMB networking from AFP in previous versions.
    Downgrade firmware by holding down the option key whilst you select version number. Pick from the list that will appear.
    Test close to the Express..
    Test with no wireless security.. remember it is a test.
    Run the wireless diagnostics on the computer to see if it shows anything.
    About Wireless Diagnostics
    The reason for increase in ping times, can be link speeds dropping, WMM failing.. as it seems to .. or just plain old bad drivers.
    I have made huge improvements in things like latency in routers that allow actual settings on the wireless to be changed.. packet size in particular.. one serious issue here is Apple have not given us access to any settings.. in airport particularly but even in the Mac.. this stuff is hidden from end users.

  • How to configure home network with Airport Extreme + D-Link DIR-665

    *hello everyone,*
    *I had these two working fine together until the D-Link took a dump the other day. No explanation. Just stopped working until I reconfigured everything.*
    *Which then led to my Airport Extreme being unable to connect to the network at all, much less the internet...*
    *My home network is set up like this:*
    *Optimum Cable*
    *Motorola Surfboard modem --> D-Link DIR-655 (via ethernet)*
    *- Provides wifi and ethernet connections on one side of my house*
    *DIR-655 --> Airport Extreme (via ethernet run to other side of house)*
    *- Provides wifi and ethernet connections on the other side of my house*
    *My MBP won't connect to anything other than my AE running N, so I have that set up primarily for my MBP over wifi, while feeding an ethernet connection to a Netgear router running B/G, for my iPhone and other devices.*
    **So here are the relative details:**
    *I decided to start fresh and do a factory default configuration with my Airport Extreme. My working system from earlier was essentially it's own wifi network, but the airport utility 'insists' that I need to run my AE in bridge mode. I've tried that, but I can't get online. I can see my shared connections, so something's getting through, but I cannot connect to them, in addition to being unable to get online.*
    *I'm not really sure how to best illustrate this problem, so I've ran through the process again and jotted down a few notes. Excuse the rambling nature of my narrative, this is a 'blow by blow' account of the Airport Utility setup process:*
    Airport version 7.4.2
    IP address 192.168.0.192
    router address: 192.168.0.2
    Configuring over Airport connection.
    - I want AE to join my current network
    -.. connect AE to my network using ethernet to extend or create second network
    - select device AE will connect to using ethernet - DIR-655 network (displayed w/ airport icon?)
    - create an additional network (through ethernet)
    AE updates..
    - problem 1 of 1 : unsecured wireless network
    wpa wpa2
    Bridge mode or share a single IP address using DHCP
    selected bridge mode
    results: AE has green light, airport utility is satisfied but no connection to network is possible. Shared connections are visible, but unable to access
    next try:
    manual setup
    Wireless mode: create wireless network
    radio mode: 802.11n only (5 GHz)
    channel: auto
    wireless security: WPA2 personal
    (bridge mode still active)
    (this is the exact setup that worked for years before..)
    updated…
    AE light is green, but no connection to internet or shared connections (though visible)
    back to airport utility
    manual setup:
    internet menu:
    connection sharing: share a public IP address
    update
    --> 2 problems
    DHCP Beginning address: 192.168.0.2
    DHCP Ending Address: 192.168.0.2
    chose 'assist me'
    (now one shared connection to Mac Mini becomes active? Had selected it earlier. Able to browse folders, but not share screen)
    AE refreshed now with amber light, with reported problems
    Problem 1 of 2: Internet Connection
    Your Apple Wireless device does not have a valid IP address. Make sure your Apple wireless device is connected to your broadband modem or local network… etc
    - changed IP address to match router IP address (?) Utility goes on to next problem
    Problem 2 of 2: Conflicting DHCP Range
    This Apple wireless device rejected a DHCP address in the same subnet as its internal DHCP server. You should probably switch your Apple wireless device to be in bridge mode. If you still want to be using DHCP and NAT to share a single IP address, you should change your DHCP range.
    - maintain selection: share a single IP address using DHCP and NAT (utility forces you to: ignore; skip; or select bridge mode - which doesn't work..)
    - chose 'skip' for problem 2
    - updated AE..
    New problem:
    Problem 1 of 1: Double NAT
    This Apple wireless device has a private IP address on its Ethernet WAN port. It is connected to a device or network that is using Network Address Translation (NAT) to provide private IP addresses. you should change you Apple wireless device from using DHCP and NAT to bridge mode.
    - selected Bridge Mode
    updated AE…
    "Setup Complete!"
    Unable to connect.
    ** At this point, I am still able to see my shared connections, and while iTunes is open, I can play my shared library that is on my Mac Pro, which connected to the DIR-665 via ethernet, through yet another D-Link router (DIR-615)! I am still connected to the Airport Extreme via wireless, so the system is working, to an extent.*
    *So I'm not sure what to do. How can I remedy my IP address issue? Bridge mode doesn't work (as far as I've experienced), so I'm struggling with my DHCP settings..*
    *Thanks to anyone who has any suggestions!*

    Hi Preston,
    I would recommend not starting the numbering scheme for the IP addresses using a '0'. Yes the range is 0-255, but some numbers are reserved, and not generally good practice.
    Also, assuming you have reset all factory defaults, start anew and have the modem --> router using NAT for dynamic IP addresses --> (other side of the house) Airport Extreme --> not a NAT configuration, but you need a simple switch. Do not use the NAT capabilities on this one. Maybe, just maybe the computer will work now. This will eliminate your double NAT and also help (hopefully) with the D-Link.
    Sorry I cannot help more, I do not own any of the products you talk about, however I have networking experience. Hope it helps.
    --Morris

  • I reset my macbook and now I cannot get past registration screen

    I reset my parents macbook because I have battery issues (was not showing a battery present) so i wanted to do a full reset
    i did the whole..command prompt.. mount -uw, dir....applesetupdone ... shutdown -h now..
    my computer restarted at the registration screen - once i finish it and put in my password it says creating account...then resets.. and i tried it over and over and over and the same thing happens
    i dont know what to do?

    The Mac is already registered when the first admin account was setup. The "faking" has led to a re-registration, and if you use a different Apple Id than one originally used, the Apple servers disallow a brute-force takeover of support profiles which tie Apple Id and machine serial numbers. Please skip registration and continue.

  • D-Link DIR-615 cannot access wirelessly with iPhone 3G

    I've added another router to my home to get better range in the far corners of the house. I added a D-Link DIR-615 hard wired to my first router. I can access this new router both by cable and wirelessly with my laptop, but not wirelessly with my iPhone.
    I've tried making the password all letters, (saw a post that said numbers don't work??) and even taking out the password and leaving it blank. The iPhone sees the router and identifies it by name. When I try connecting, after entering the password, it says "unable to connect to network". IO can connect to my first router with the iPhone.
    Any suggestions? I'm using WEP for encription, except when I tried it with no passwords! Thanks!

    A few ideas:
    Often the power on sequence is the determining factor in if/how DHCP will work. Especially when it comes to consumer-grade cable modems and routers. Try different power on sequences.
    Try to figure out if your cable modem is storing and enforcing the MAC address of one of your devices. Take the router out of the picture, attach your MBP, and see if it works. Then leave the modem on, unhook the MBP, and plug in a Windows laptop. If it doesn't work, then your modem wants/needs to only see one MAC address. If this is the case, look in your routers settings for "Spoof this computer's MAC Address" and you should be good to go.
    One trick I've used in the past is to assign an entirely new subnet for the router to hand out. For example if it used to give out 192.168.1.x, the new subnet would be set to 10.1.1.x. This forces every system and rebuild its caches. Too many times routers, controllers, OSes, apps, and even hardware like phones keep caches to help speed things up. It's not always obvious how to reset these. But by switching subnets you force every device to rebuild the caches.
    Good luck.

  • D-Link DIR-615 (Rev H1(!)) does not work with Airport Express?

    Hi there,
    I had my AirPlay working just fine with my Airport Express (AX) and my wireless N Router D-Link DIR-615 (Rev. B2). Now I changed my Internet provider and received a D-Link DIR-615 (Rev. H1) and I cannot find my AX anymore (I mean, it's still here, but the AirPort Utility cant find it!)
    Are there known issues between those two?
    (The Rev. H1/B2 is the Hardware Version of my D-Link DIR-615. The Firmware is up-to-date (8.01 I think))
    The status light is a solid, beautiful green.
    I already tried the following:
    - restart the AX, the D-Link and my MacBook (10.7.2)
    - changed from AES to TKIP (found that somewhere in the internet)
    - Reseted my AX to factory settings and configured everything new. (via Ethernet)
    Probably interesting:
    - After resetting to factory settings and configuring everything new, the AX showed up in iTunes, but when I tried to connect with it, it kept me waiting for 1-3 Minutes and simply did not connect w/o error message. The AX disappeared after restarting iTunes.
    I'm running out of solutions..
    Anyone a good question/suggestion or answer for me?
    greetings
    squob

    Only way I see out other than waiting, is to hook he Drive to a Mac, (FW preferable for speed), then get Tri-Backup...
    http://www.tri-edre.com/english/tribackup.html
    Which can be set to trigger Backups when Shares mount.

  • IPhone 3G won't connect to D-Link DIR-655 Wireless N Router

    My wife and I picked up iPhone 3Gs last week, and we got home and instantly had issues connecting to our home's Wi-Fi. I assumed at first it was an iPhone issue, but think it's likely more an issue with my router. The router is brand new (two months old). I have updated the firmware to the most current (version 1.11). Both iPhones apparently connect to the router (they show Wi-Fi bars and it shows full strength), however, when I attempt to access the iTunes store, I got an error that it fails to connect, that I need to be connected to via Wi-Fi to access. I've tried everything with the router I can think of (turning of wireless security, using only WPA vs. WPA2, and having a very simple password). With each setting, it shows the phone is connected, but iTunes says I'm not. I've successfully connected to 5 other wi-fi routers without issue. Some have similar settings to my home router. Other router models I've connected to include Linksys, Trendnet, and D-Link. However, none of those have been a N router. I set my DIR-655 to work only in the wireless b and g range only, reset networking on my phones, but still doesn't work. I just don't know if there's something I'm overlooking on the settings that might keep the devices from working properly together. Any thoughts.

    If it works on other networks it is most likely a compatible issue with your router (as you have surmised). Do you have MAC filtering enabled on your router? If so, have you entered the MAC address of the phone (In Settings/General/About it is called WiFi Address).
    When you are connected to your router go to Settings/WiFi and tap the arrow to the right of the network name. Look at the IP address of the phone. If its pattern is 169.254.x.y this means your router is not assigning an IP address to the phone. That is almost certainly a router issue.
    Next look at the DNS address. Is it the same as the DNS address on your other computers? As an experiment try changing it to a public DNS address like the ones provided by OpenDNS (www.opendns.com), 208.67.222.222.

  • WRE54G not working with D-Link DIR-655

    After having 2 Linksys WRT310N units fail within 14 months, I was given a D-Link DIR-655 to use for my home network.  When I originally purchased the WRE-54G for use with the 310N, the signal strength as indicated on a Tivo and PS3 went from 20%-40% range to 70%-85%.   These two components are approximately 30 ft horizontally, and 20 ft down vertically from the router.
    Upon replacing the router with the DIR-655, both of these units are again registering signal of 20%-40%, as if the WRE-54G is not functioning, and/or the TiVo and PS3 are getting their wireless signal directly from the DIR-655.
    I can access the WRE-54G's web interface, can ping it, can see it as active in the DIR-655's interface, and have two solid blue lights.  Everything has been powered down and reset multiple times.  I have the same issue whether or not the WRE-54G sits inside or outside my DHCP range.
    How can I determine if these components are getting signal from the router through the WRE-54G or if they are getting the signal directly from the router and bypassing the WRE-54G, and is there a way to "force" these components to take signal from the WRE-54G?

    Hello. Is the D-link an N router? The WRE doesn't really work well with N routers. The ppl that have say that security must be disabled. I think I have read posts that got this working, though. I'm wondering if the WRE is physically on the edge of your signal strength, e.g. if you got the WRE closer to the router it would work better. The only thing that is unusual is that you said you have two solid blue lights. The activity light should be blinking blue. So I guess I don't think the WRE is really doing anything right now, though you have all the indications except for increased signal strength.
    As far as forcing the equipment to connect, you'd just have to set up static IP's and say that the WRE IP addy was the gateway, not your router. But I don't think that is the problem as WIFI will connect to the stronger signal if it is present. I just don't think the WRE is repeating the router signal.  
    Edit: Did a search. See if this post helps:
    http://forums.linksysbycisco.com/linksys/board/message?board.id=Range_Expanders&message.id=2611&query.id=16490#M2611
    Message Edited by Luckydog on 06-19-2009 03:07 PM

  • Problem to connect to D-Link DIR-655

    I have MacBook Pro with Lion 7.1 and a router D-link DIR 655 (with latest firmware). I have had problem with the WiFi connection now and then. Just now I can not see my router in list but I can see many neigbours. It happends that I can see the router but then I connect I got timeout, I have iMac also with Lion which is connected to the same router with no problem. I have alse a IPad connected with no problem. I can connect to my wireless mobilmodem with help of a Dovado 3GN Router (WiFi connection). So what I can see I can connect things to the D-Link router but not the MacBookPro and I can connect the MacBook Pro to WiFi but not to D-Link DIR 655. What shall I do?

    Download the free KisMAC and in the driver preferences enable the Apple Airport PASSIVE mode in preferences and click scan.
    You will need to enter your Admin password.
    Use that to scan your neighbors wifi and determine the channels they use.
    Reset your router channel so it's as far from the others as possible.
    Also read the WIFI security  section of my post here
    https://discussions.apple.com/message/16276201#16276201

  • Have a D-Link DIR-655 Wireless Router and Having WEP or WPA issues? READ TH

    I just contacted D-Link with the following Letter and wanted to post this here for anyone that may need it:
    "I have to say that I do truly enjoy this product since I got it to work, but I have some things to clear up.
    Are your Level 1 techs truly trained in networking equipment? I called 3 times for help with this issue and no one was able to help me nor completely understand my problem... I apologize for the tone, but it is frustrating when a tech repeats a procedure 4 times (I can understand repeating something 2 times if needed) - when I tell him it doesn't work I feel we should move onto another trouble shooting step. So what I would like to do is tell you what I did to fix the issue in case another person runs into this and they call you for support.
    I have a an iMac (but this problem will be reproduced on any Mac with an Airport Extreme card) and I can only get on the internet wireleslly because of the location of my computer and the cable modem/router.
    The DIR-655 that I picked up from best buy was Hardware Revision A2 and the Firmware was 1.05 (the latest at this current time)...
    If I setup this router with the default settings. The wireless connectivity worked fine - although if I were to apply any type of security to the wireless settings (WEP, WPA 1 or 2 Personal) I would not be able to join the network. The Mac OS would keep telling me that there was an error joining the "xxxxxx" network (where xxxxxx was the SSID of my router). Anyways after tinkering for almost 3 hours and running back and forth resetting the router and testing with multiple Macs I was stumped and decided to get a copy of the 1.04 version of the firmware and downgrade the router back down to see if it was an issue with the latest firmware. Guess what - works perfect...
    I would love to see a version 1.06 come out soon that addresses this issue and has the bug fixes from 1.05. But I can guarantee you there is something in the 1.05 firmware that will stop Macs from wirelessly connecting to the router when any type of wireless security is in place.
    Please advise your techs of this issues and hopefully come up with a fix for this issue.
    Thank you for your time."
    I hate when tech support eats half your day with something that could have been fixed in minutes if people are properly trained.
    Message was edited by: Twiggs462

    I seem to remember that one post/thread had comments about successfully using this device but I can not seem to find it in either iChat 3 or the iChat 4 (iChat and iChat Sharing in Leopard)
    The closest I got was a reference to it in this thread http://discussions.apple.com/thread.jspa?messageID=7296647&#7296647 but no link.
    6:39 PM Saturday; August 16, 2008

  • Bridge CC freezes and I cannot reset preferences

    Built a new PC with Win 8.1. Downloaded CC. Bridge, which I use professionally, keeps stalling. Using arrow keys on keyboard to navigate photos doesn't work:  push an directional arrow key and Bridge goes into clocking mode (freezes while mouse cursor spins). Bridge has crashed multiple times causing my PC to reboot.
    The Adobe Help suggests resetting Preferences by pushing Shift+Ctrl+Alt. I do that and Bridge goes into clocking mode, but the reset preferences dialog never appears.
    Steps I've taken so far:
    The CC component is installed on my SSD drive, while all of the CC apps are on my WD Black hard drive. I noticed Bridge is using cache on the SSD. I created a new cache dir on the WD hard drive, but that didn't resolve anything.
    I disabled all startup scripts. No improvement.
    I uninstalled and re-installed Bridge. No improvement.

    Having spent my entire day troubleshooting, I have determined that I am combating 2 separate issues:
    1) Bridge CC freezing when navigating menus and photos, lengthy freezing when navigating photos in Content window with arrow keys. <-- RESOLVED
    2) Bridge CC and LightBridge CC crashing and causing PC to reboot when attempting to utilize cache containing RAW photos.
    For #1, I have nearly identified the culprit. I removed the brand new Gigabyte GeForce GTX 660 video card and uninstalled the GeForce 344.11 driver set, and am now using the onboard video (Intel Graphics HD). I re-installed Bridge CC and now the freezing has completely vanished. So the issue is either the latest driver or the GeForce card itself, or both. I plan to return the card.
    For #2, I think the issue is totally associated to the Adobe cache mechanism. Screenshot of LR error after LR crashed and PC rebooted...

  • Open Dir, SMB, AFP, Changing Password on first login (Windows)

    Hey all...
    I've read up on some documentation but have run into a roadblock trying to set up file sharing for Open Directory user accounts with OS X Server 10.5.6.
    I have AFP and SMB (and Open dir) services enabled.
    Using all default settings I am able to share files using other Windows and OS X machines.
    Under the Open directory service settings in Server Admin, I tried to enforce that user passwords be reset on first log in.
    When I log in using OS X, I get prompted to change my password and it works fine. When I'm using Windows (XP in this case), the username/password prompt that windows presents outright rejects the initial password. So when forcing users to change passwords, Windows users can no longer log in to share files.
    I've attached the SMB log that correspond to the attempted log in from the Windows machine.
    [2009/01/28 18:12:49, 0, pid=1913] /SourceCache/samba/samba-187.7/samba/source/auth/authodsam.c:opendirectory_smb_pwd_checkntlmv1(383)
    opendirectoryuser_auth_and_sessionkey gave -14161 [eDSAuthNewPasswordRequired]
    [2009/01/28 18:12:49, 0, pid=1913] /SourceCache/samba/samba-187.7/samba/source/auth/authodsam.c:opendirectory_opendirectory_ntlm_passwordcheck(598)
    I'd appreciate any advice =)

    Hey all...
    I've read up on some documentation but have run into a roadblock trying to set up file sharing for Open Directory user accounts with OS X Server 10.5.6.
    I have AFP and SMB (and Open dir) services enabled.
    Using all default settings I am able to share files using other Windows and OS X machines.
    Under the Open directory service settings in Server Admin, I tried to enforce that user passwords be reset on first log in.
    When I log in using OS X, I get prompted to change my password and it works fine. When I'm using Windows (XP in this case), the username/password prompt that windows presents outright rejects the initial password. So when forcing users to change passwords, Windows users can no longer log in to share files.
    I've attached the SMB log that correspond to the attempted log in from the Windows machine.
    [2009/01/28 18:12:49, 0, pid=1913] /SourceCache/samba/samba-187.7/samba/source/auth/authodsam.c:opendirectory_smb_pwd_checkntlmv1(383)
    opendirectoryuser_auth_and_sessionkey gave -14161 [eDSAuthNewPasswordRequired]
    [2009/01/28 18:12:49, 0, pid=1913] /SourceCache/samba/samba-187.7/samba/source/auth/authodsam.c:opendirectory_opendirectory_ntlm_passwordcheck(598)
    I'd appreciate any advice =)

Maybe you are looking for

  • Safari 6.0.5 unexpectedly quits

    Running 10.8.4 on my MacBook Pro and in recent days, Safari 6.0.5 unexpectedly quits. Not while I am working in it, but when the window is closed and the app is just running in the background. I get no alert that is has crashed, it just quits. I pull

  • Zen Micro Setti

    Hey I was wondering about a few things with my new Micro... Is there any way to have the date and time show at the top when music is playing (like the IPod Mini)? Or is the only way to show the time is through the menu's? I had another question, but

  • New MacBook containsa form of digital copy protection - TRUE?

    I was told that Apple's new MacBook lines includes a form of digital copy protection that will prevent protected media, such as DRM-infused iTunes movies, from playing back on devices that aren't compliant with the new priority protection measures. T

  • EyeTV Skips While Recording

    I just got an EyeTV hybrid USB tuner for my iBook G4 which runs Tiger (specs are on my footer) and I have problems with it when I record. It often skips and jumps (doesn't record every frame) when it records and makes the videos look like crap. This

  • Error restarting services after deploying a RPD.

    Hi all, I have recently performed OBIEE installation and, when a repository is deployed and all services restarted comes an error like this one and BI Server status is down: Operation Failed: start; OracleInstance: instance1; Component: coreapplicati