Problems with design view after moving to new imac

Moved CS4 Dreamweaver from my Mac Mini intel duo to a new i5 Imac last night: suddenly design view is not showing various CSS styles, especially certain links.
For example, instead of this:
HOME | ABOUT | CONTACT | HELP
it will show this in design view:
|||
Meanwhile, in a browser live on the web, everything is fine.
I did a fresh install of dreamweaver CS4 last night from original install disks to new i5 Imac.
Help!

Culprit is the classic MS Windows font ARIEL. I installed it one at a time from two different sources (a 1999 TT build and a 2001 TT build) and both immediately caused problems, particularly in Dreamweaver with vanishing text in design view for any fonts setting sassigned the "ariel, helvetica sans serif family").
Since problem only is happening on the 2011 i5 Imac (but not on my old Mac Mini 1.6 or emac G4) I will guess the dilemma resides with fontbook or something peculiar to font management on the iMac.
Removing font of course solved all problems.

Similar Messages

  • Hi guy! I have been using iPhone since 2010 but now I'm facing problem with hardware still after i reclaim new iPhone some times my phone just completely blackout!! any idea??

    hi guy! I have been using iPhone since 2010 but now I'm facing problem with hardware still after i reclaim new iPhone some times my phone just completely blackout!! any idea??

    If there is a problem with your AppleID, you - and not the provider - must
    straighten out the matter.
    AppleID disabled:
    http://support.apple.com/kb/TS2446
    http://www.apple.com/support/itunes/contact/
    https://getsupport.apple.com/Issues.action

  • Problem with Materialized Views after an export

    Hi @ everybody,
    At an Oracle 11g R2 (11.2.0.3.0) instance, all actual CPU's/SPU's are installed, on a Red Hat 6 Machine i have a problem with Materialized Views from a schema, which i have exportet from an old database machine on Oracle 10g (10.2.0.1.0) to the new machine.
    I've exportet with the old exp and imported with imp, because i know, that i get some strange errors because of the materialized views when i'm using the new expdp and impdp tools.
    At the old machine the materialized views are so programmed, that they get an update of data at a defined time like this:
    START WITH TRUNC(SYSDATE) + 21/24
          NEXT SYSDATE+1
    ...But after the export this "update function" of the materialized view is not available. So i have deleted that views and recreated them with the START WITH parameters. So now they are running.
    But why do i have this problem?
    Is this "START WITH" somewhere written as a job or so in, for example, DBMS_SCHEDULER or something else? So i had forgotten to export these jobs or where is that defined?
    Is this a bug?
    Thanks for answers and help!
    Best regards,
    David

    I can't remember the error of expdp/impdp. That is some days ago, i have to rebuild this.
    I think in my scenario for the import i don't need the TABLE_EXISTS_ACTION, because by importing at the new server i've just createt the naked tablespace for the data and the users, not more. So he didn't has something to overwrite.
    And i have to tell you: i'm just the dbA. The desining of the tables and materialized views is many years ago by installing the old server. I'm just to young in my company to know about the design of the instance and why it was designed so.
    Anyway: my problem is, that after the import of the schemas to a new server the "START WITH" option in the materialized views is not there anymore and i just want to why so i can think about a solution for that and create it with the database designers of my company.
    EDIT: And here are the SQL Statements for creating the Materialized Views:
    First, at the OLD Server (Oracle 10g 10.2.0.1.0)
      CREATE MATERIALIZED VIEW "DUPONT_CCG2_P"."PR_PRODUCT_ITEMS"
      ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "DUPONT_14523"
      BUILD IMMEDIATE
      USING INDEX
      REFRESH COMPLETE ON DEMAND START WITH sysdate+0 NEXT SYSDATE+1
      USING DEFAULT LOCAL ROLLBACK SEGMENT
      DISABLE QUERY REWRITE
      AS (SELECT DISTINCT
          PR_CUSTOMER_MASTER_DATA.CLIENT_ID,
          PR_CUSTOMER_MASTER_DATA.ILN_USER,
          PR_ARTICLE.EAN,
          PR_ARTICLE.CODE,
          PR_USED_ARTICLE_TEXT.ARTICLE_TEXT,
          PR_USED_ARTICLE_TEXT.LANG_CODE,
          PR_ARTICLE.SUP_ITEM_NO,
          PR_ARTICLE.OLD_ITEM_NO,
          PR_COMPANY_ITEM_MATCH.ITEM_BY_NO,
          PR_COMPANY_ITEM_MATCH.UOM_UNIT,
          PR_COMPANY_ITEM_MATCH.PRICE_UOM,
          PR_COMPANY_ITEM_MATCH.PRICE,
          PR_COMPANY_ITEM_MATCH.CURRENCY,
          PR_COMPANY_ITEM_MATCH.PRICE_QTY,
          PR_COMPANY_ITEM_MATCH.SALES_UNIT,
          PR_COMPANY_ITEM_MATCH.START_DATE,
          PR_COMPANY_ITEM_MATCH.END_DATE,
          PR_ARTICLE.UPDATED_AT
            FROM PR_ARTICLE, PR_COMPANY_ITEM_MATCH, PR_USED_ARTICLE_TEXT, PR_CUSTOMER_MASTER_DATA, PR_ADDRESS
            WHERE PR_ADDRESS.ORDER_TYPE='REP'
          AND PR_CUSTOMER_MASTER_DATA.ILN_USER=PR_ADDRESS.ILN_USER
          AND PR_COMPANY_ITEM_MATCH.ILN_USER=PR_ADDRESS.ILN_LINK
          AND PR_CUSTOMER_MASTER_DATA.SALES_ORG=PR_COMPANY_ITEM_MATCH.SALES_ORG
          AND PR_CUSTOMER_MASTER_DATA.CLIENT_ID=PR_COMPANY_ITEM_MATCH.CLIENT_ID
          AND PR_CUSTOMER_MASTER_DATA.CLIENT_ID=PR_ADDRESS.CLIENT_ID
          AND PR_ARTICLE.SUP_ITEM_NO=PR_COMPANY_ITEM_MATCH.SUP_ITEM_NO
          AND PR_COMPANY_ITEM_MATCH.SALES_ORG=PR_USED_ARTICLE_TEXT.SALES_ORG
          AND PR_ARTICLE.SUP_ITEM_NO=PR_USED_ARTICLE_TEXT.SUP_ITEM_NO
          AND PR_CUSTOMER_MASTER_DATA.LANG_CODE=PR_USED_ARTICLE_TEXT.LANG_CODE
          AND ( PR_COMPANY_ITEM_MATCH.END_DATE IS NULL OR to_date(PR_COMPANY_ITEM_MATCH.END_DATE,'YYYYMMDD') - sysdate > 0)
          AND ( PR_COMPANY_ITEM_MATCH.START_DATE IS NULL OR sysdate - to_date(PR_COMPANY_ITEM_MATCH.START_DATE,'YYYYMMDD') > 0)
    )And here the at the NEW Server (Oracle 11g R2 11.2.0.3.0)
      CREATE MATERIALIZED VIEW "DUPONT_CCG2_P"."PR_PRODUCT_ITEMS" ("CLIENT_ID", "ILN_USER", "EAN", "CODE", "ARTICLE_TEXT", "LANG_CODE", "LANR", "OLD_LANR", "ITEM_BY_NO", "UOM_UNIT", "PRICE_UOM", "PRICE", "CURRENCY", "PRICE_QTY", "SALES_UNIT", "START_DATE", "END_DATE", "UPDATED_AT")
      ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255
    NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
      BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
      TABLESPACE "DUPONT_14523"
      BUILD IMMEDIATE
      USING INDEX
      REFRESH COMPLETE ON DEMAND START WITH sysdate+0 NEXT SYSDATE+1
      USING DEFAULT LOCAL ROLLBACK SEGMENT
      USING ENFORCED CONSTRAINTS DISABLE QUERY REWRITE
      AS (SELECT DISTINCT
          PR_CUSTOMER_MASTER_DATA.CLIENT_ID,
          PR_CUSTOMER_MASTER_DATA.ILN_USER,
          PR_ARTICLE.EAN,
          PR_ARTICLE.CODE,
          PR_USED_ARTICLE_TEXT.ARTICLE_TEXT,
          PR_USED_ARTICLE_TEXT.LANG_CODE,
          PR_ARTICLE.SUP_ITEM_NO,
          PR_ARTICLE.OLD_ITEM_NO,
          PR_COMPANY_ITEM_MATCH.ITEM_BY_NO,
          PR_COMPANY_ITEM_MATCH.UOM_UNIT,
          PR_COMPANY_ITEM_MATCH.PRICE_UOM,
          PR_COMPANY_ITEM_MATCH.PRICE,
          PR_COMPANY_ITEM_MATCH.CURRENCY,
          PR_COMPANY_ITEM_MATCH.PRICE_QTY,
          PR_COMPANY_ITEM_MATCH.SALES_UNIT,
          PR_COMPANY_ITEM_MATCH.START_DATE,
          PR_COMPANY_ITEM_MATCH.END_DATE,
          PR_ARTICLE.UPDATED_AT
            FROM PR_ARTICLE, PR_COMPANY_ITEM_MATCH, PR_USED_ARTICLE_TEXT, PR_CUSTOMER_MASTER_DATA, PR_ADDRESS
            WHERE PR_ADDRESS.ORDER_TYPE='REP'
          AND PR_CUSTOMER_MASTER_DATA.ILN_USER=PR_ADDRESS.ILN_USER
          AND PR_COMPANY_ITEM_MATCH.ILN_USER=PR_ADDRESS.ILN_LINK
          AND PR_CUSTOMER_MASTER_DATA.SALES_ORG=PR_COMPANY_ITEM_MATCH.SALES_ORG
          AND PR_CUSTOMER_MASTER_DATA.CLIENT_ID=PR_COMPANY_ITEM_MATCH.CLIENT_ID
          AND PR_CUSTOMER_MASTER_DATA.CLIENT_ID=PR_ADDRESS.CLIENT_ID
          AND PR_ARTICLE.SUP_ITEM_NO=PR_COMPANY_ITEM_MATCH.SUP_ITEM_NO
          AND PR_COMPANY_ITEM_MATCH.SALES_ORG=PR_USED_ARTICLE_TEXT.SALES_ORG
          AND PR_ARTICLE.SUP_ITEM_NO=PR_USED_ARTICLE_TEXT.SUP_ITEM_NO
          AND PR_CUSTOMER_MASTER_DATA.LANG_CODE=PR_USED_ARTICLE_TEXT.LANG_CODE
          AND ( PR_COMPANY_ITEM_MATCH.END_DATE IS NULL OR to_date(PR_COMPANY_ITEM_MATCH.END_DATE,'YYYYMMDD') - sysdate > 0)
          AND ( PR_COMPANY_ITEM_MATCH.START_DATE IS NULL OR sysdate - to_date(PR_COMPANY_ITEM_MATCH.START_DATE,'YYYYMMDD') > 0)
    )The own differences i can see is at the "header". In the new one is the NOCOMPRESS LOGGING Option and in the first line the code has the columns diretcly defined.
    But, i think, for my problem this line is determining:
      REFRESH COMPLETE ON DEMAND START WITH sysdate+0 NEXT SYSDATE+1And this line is the same at both server.
    Edited by: David_Pasternak on 12.04.2013 00:06

  • Problem with Design View in DW5

    I've recently inherited responsibility for my group's website (despite the fact that I'm kind of a noob at all this) and am dealing with an interesting challenge that I hope someone can help me with.
    It seems that our pages are based on a number of templates that for some reason were not saved along with the rest of the site. Short term this is not a huge issue, as the pages have the source code from the templates embedded in them, but this code is not editable and I can't figure out a way to override the fact that I'm "locked out" from making any changes (at least from within Dreamweaver). Up to now I've just been editing the pages individually in Komodo, which is tedious but not horrible, given that our site isn't that big, but it's clearly no way to do business in the long term.
    So I'm trying to re-engineer some templates that I can work with. What I did was use Komodo to strip away all of the template-related language from one of the site pages, and re-imported the code back into Dreamweaver, in the hope that I can then save that as a new template. I'm close, but not quite there. My problem is that DW's Design View isn't rendering the page properly, even though it displays fine in Live View and in browsers. Maybe this isn't a huge deal, but it's really bugging me because: 1) I do rely on Design View, since I'm not an experienced programmer; and 2) I'm kind of anal retentive.
    To see what I'm talking about, here is the page I used as the foundation for creating a new template:
    http://iodp.ldeo.columbia.edu/TOOLS_LABS/TRIPLE/aps.html
    ... and here is my new "template" (although I haven't saved it yet as a DW template):
    http://iodp.ldeo.columbia.edu/TOOLS_LABS/TRIPLE/test3.html
    The second page displays correctly in Live View, Safari and Firefox, but not in DW's Design View, where it looks like this, at least on my computer:
    As you can see, there's an odd "break" between the banner image and the menus on the left, and the body of the page, which should appear to the right of the menus on the left, is instead underneath them. I'm at a loss as to why the same code displays properly for the first page, but not the second.
    I guess my questions are as follows:
    1) Does anyone else get the same messed up display in DW's design view if they import the second page into DW?
    2) And if so, can you pinpoint where the problem is?
    I hope I've explained this clearly and would really be grateful for help. Thanks!

    Validate your code and fix errors.  #1 problem is the lack of a valid Document Type Declaration (DTD) on line 1 of HTML code.
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    To add a DTD in DW:
    Go to Modify > Page Properties > Title/Encoding.
    Select document type from drop list.  I recommend HTML 4.0 Transitional.
    Hit Apply & OK. 
    Repeat Steps 1 - 3 on remaining site pages.
    I'm not a huge fan of DW Templates (.dwt).  I don't know how big your site is but it might be simpler to disconnect from Templates, giving you freedom to edit anything you wish.  Then use Server-Side Includes (SSIs) for common site wide elements such as menus, headers & footers.
    The great thing about SSIs is that you only need to edit one file, save it and upload to server.   Site pages are automatically updated by the server. With Templates, you have to upload every child page each time you change your template.  Even on small sites, this is tedious.
    Server-Side Includes
    http://www.smartwebby.com/web_site_design/server_side_includes.asp
    More on Server-Side Includes
    http://forums.adobe.com/message/2112460#2112460
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Problem with junkmail folders after moving gwia from netware to linux

    Recently moved our gwia that handles internet email from Netware to Sles
    11 GW8.0.3 hp3. Email is moving in and out ok, but I'm getting some
    really weird strangeness with Junkmail settings. Just like the old
    gwia, this gwia has it's own domain/mta. Postoffices are under
    different domains/mta's.
    1. Email flagged with "x-spam-flag: yes" is no longer automatically
    being moved to the junkmail folder. Yes the box is checked for this
    particular's gwia settings, and I've even uncommented it in the gwia.cfg
    file to to be sure it's enabled.
    2. With the "view" column enabled in the client I can see that normal
    email coming in gets set with the tag "internet" Email coming in with
    "x-spam-flag: yes" in the header gets set with the tag "IPM.Novell.ND"
    If I right click on one these to try to manually set it as junkmail, I
    get a message that the message is "Not Eligible for Junk Mail Handling"
    and when I click on that a window pops up saying "This is a POP message.
    Only internet mail sent to your Groupwise account is eligible for Junk
    Mail Handling"
    For whatever reason instead of moving the email to the junkmail folder
    when the x-spam-flag is set, it changes it to type IPM.Novell.ND and
    then the client thinks that it's some sort of POP message instead of an
    internet email. If I redirect incoming email back through the old
    Netware gwia instead, everything works fine.
    What could possibly be going on?

    Originally Posted by Mike
    Recently moved our gwia that handles internet email from Netware to Sles
    11 GW8.0.3 hp3. Email is moving in and out ok, but I'm getting some
    really weird strangeness with Junkmail settings. Just like the old
    gwia, this gwia has it's own domain/mta. Postoffices are under
    different domains/mta's.
    Did you create a new Gateway ( gwia ) object? Or recycle the old one ( which is usually a huge no-no. ) I suspect you created a new one, as you refer to the old NetWare GWIA. But you never know.
    Originally Posted by Mike
    1. Email flagged with "x-spam-flag: yes" is no longer automatically
    being moved to the junkmail folder. Yes the box is checked for this
    particular's gwia settings, and I've even uncommented it in the gwia.cfg
    file to to be sure it's enabled.
    Its only enabled if the run-time config says it is. ;-) Look at the settings listed in the HTTP console for the GWIA or the GWIA logs, which dumps the settings actually being used. You may find the setting is not really effective. Check for differences between the two GWIAs effective config.... something may stick out.
    In the message properties there is a junk mail handling section, can you give us an example of working / non-working versions?
    Note also:
    Support | Junk mail delivered to Inbox <-- buggy or unexpected behavior
    and
    Novell Doc: GroupWise 8 Administration Guide - Blocking Unwanted E-Mail from the Internet <-- xspam.cfg
    -- Bob

  • Problem with external editors after moving photos

    I moved my photos from an external HD to the drive in my new iMac.  I did not change the names of the folders or files.  Lightroom still works.  The problem is that external editors, such as OneOne Perfect Photo and Color Efex, no longer work.  I can't open photos from Lightroom to be edited in those programs.  OneOne suggested fixing the disk permissions in Utilities.  I tried that but it didn't work.  I'm not sure the iMac even fixed the permissions, and the photos will won't open with an external editor.  Any suggestions?

    Reload the firmware update and make sure it completes.

  • Problem with Photoshop CS4 after migration to new Mac

    I just migrated from an old Mac to a new Macbook Pro running Mavericks. I'm having a problem with Photoshop CS4. Specifically, two things:
    1) When I open an image in Camera Raw, I get this error:
    Fatal error - missing component
    /Library/Application Support/Adobe/Adobe Version Cue CS4/Client/4.0.0/VersionCue.framework
    2) When I try to save anything, it tells me it can't because of a program error.
    I've looked around for a solution. Apparently I had to install Java, but that hasn't solved the issue. A couple of people mentioned that reinstalling would work for a similar problem. My problem with that is that my disk is on the other side of the world and my new macbook doesn't have a disk drive anyway. So I logged into my Adobe account hoping to see a download link for software I have licences for, but there isn't one.
    So my question is firstly, whether there is a simpler solution to the errors I am getting and, if not, if there's a solution to reinstalling Photoshop CS4 without the disk.
    Thanks!

    Did you use Apple's migration tool?  It misses a lot of support files, especially in the Application Support directories.
    You'll have to copy those files manually, or reinstall the app.

  • Problem With Image View After Cropping

    Hi All,
    I have a problem when I try to crop an image in CS4.  The crop tool works perfectly, however sometime the cropped image has parts of the image “out of line”  I believe the problem is just with the view, not the actual file.  I have saved the image and opened it in MS Picture Viewer and the image is perfect. 
    I was using Windows XP without a problem.  I have only experienced this since I upgraded to windows 7 64 bit.
    Below is a screen shot of the problem, not the bottom right of the image.  Any suggestions please.
    Thanks  - Vicki

    No, it was me.  Feel free to review the thread history at this URL if you'd like:  http://forums.adobe.com/message/4206899
    Your display driver IS out of date.  You really don't want the one from Microsoft's WHQL
    If you would like to be able to use the OpenGL-specific features, listed on the page below, as well as not have display corruption, I recommend you update SPECIFICALLY to Catalyst 11.7 (which carries driver version 8.872).  Anything up to 11.12 is probably okay, but 12.1 has some very specific problems with Photoshop.  Several of us on the forum here have had particularly good, solid results from 11.7.
    http://kb2.adobe.com/cps/405/kb405745.html
    -Noel

  • Problem with Design View display

    Hi,
    Working happily in Design view using RH 10, and from one moment to the next the Design View display changed. The font display has changed to a truncated style and the word wrap has disappeared.
    I tried rebooting and then reinstalling and no luck in getting rid of the issue.
    The output is fine and as expected, so I am presuming that it isn't the CSS. Which I haven't edited for eons anyway so it really shouldn't be that anyway.
    This is happening on all my help projects - each with a different CSS - so it can't be the css unless RH did some sort of strange global change behind the scenes without my knowledge.
    Any thoughts on how to get Design View to display normally would be much appreaciated,
    Thanks,
    Tannis

    Hi there
    One possible suspect you may be unaware of is pressing and holding the Ctrl key as you rotate the wheel of a mouse. There may be a keyboard shortcut that would do this too.
    Cheers... Rick

  • Problem with design view (DW8)

    Page display correctly in IE7 browser but not in design view.
    Right sidebar is appearing in the middle of the page. Page is using
    CSS and the div is using float left.
    Can someone tell me what the possible issues could be?
    Thanks

    jdrhost wrote:
    > Page display correctly in IE7 browser but not in design
    view. Right sidebar is
    > appearing in the middle of the page. Page is using CSS
    and the div is using
    > float left.
    Design view is not WYSYWYG. It's very good, but not perfect.
    Preview in
    browser is the only accurate check of how a design will be
    rendered.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Problem with 2 External Drives on my new iMac

    I am having a problem when I daisy-chain a second external HD to my first external HD connected to my new iMac. This is the second external HD I've tried this with, with similar problems arising.
    My setup: OS 10.5.6. First external HD: G-Tech Q 1TB; 2nd External HD: also a G-Tech Q 1TB (the first time I was daisy-chaining a LaCie 250GB drive to my first external drive).
    Problem: when my second external HD is daisy-chained to the first external HD my system starts to go wonky. I can't force quit apps for one. My system hangs. On reboot I don't get past the blue screen. If I remove the daisy-chain all is fine.
    I initially had this problem with another external HD I tried to daisy-chain to the first. Same issue.
    I was trying to partition the second external using Disk Utility. When I hit the Partition button, Disk Utility just hung with the beach ball.
    When I attached a second external the first time I tried to do this all sorts of havoc ensued. A lot of apps were hanging and I couldn't Force Quit them. The whole system seemed to go wonky.
    Can anyone tell me what might be happening here?

    I've been doing a bit of research on these boards about daisy-chaining problems and am reading that sometimes daisy-chaining can overwhelm the Firewire bus and even corrupt data. This is what I had experienced the first time I tried to daisy-chain. Someone recommended a powered Firewire repeater (like this: http://tinyurl.com/kl84n5) would be a better solution.
    Given I've got only 1 Firewire port on my iMac, what do you think?

  • Problems with Yahoo and security on my new iMac

    I just got my new iMac last weekend and I have had a Yahoo email account for years.
    Now all of sudden last night, I got an email from Yahoo saying I was signed up for some Phone Out Service and there was an account set up in my user name. (so they must have gotten my user name and password somehow)
    It looks like a Japanese name and some other credit card number on my account. How does this happen? Should I be worried? Has anyone else had this happen to them?
    The billing dept. got back to me and took all that Phone Out stuff off my account, but they didn't say how it got there in the first place! I'm really concerned about this. I think I'll close out my whole Yahoo account. (I have changed my password, etc.)
    Has anything like this happened to anyone else? I'm just really concerned about how this happened, someone must have gotten into my account somehow (with my user name and password), makes me worry they could get into something else more important. Is there anything I can do to prevent this?
    I was told I didn't need antivirus or internet protection, etc. I just turned on my firewall the other day and did log into my email a couple times before I turned it on. But maybe my info was stolen somewhere else (I have logged in my email on public computers).
    Any advice anyone? Is my iMac safe? Should I get some kind of internet protection? I'm still waiting to hear more from Yahoo as to how this happened.
    Thanks so much.

    traces7 wrote:
    I'm just nervous that they somehow got into my new iMac and still can. Is there more I should do to protect it?
    Thanks again!
    Are you on high speed internet behind a hardware firewall such as a router? Or are you on a dial up modem?
    If you are high speed and don't have a router I'd highly recommend you purchase one. They are not very expensive. If you do have a router its unlikely they got into your computer and more likely someone got the information from a public source. A router protects you by only allowing in solicited data from the site you are visiting and blocks uncalled for probes. If you are on dial-up its a good idea to turn on the software firewall.
    It's very easy for someone to go to a public computer, install a small piece of monitoring software from a usb memory stick, remove the stick and then leave the program running for a period of time collecting user names and passwords. After a week or so the thief returns to the computer, re-inserts his usb stick, downloads the collected information to the stick and leaves with the data.
    Other ways they can get information is from public wifi spots such as cafes or hotel rooms. All someone has to do is join the network, and from their own computer monitor the internet traffic on the unsecured connection and collect data.
    Unless you store your passwords on the computer there's nothing there for anyone to get into. If they tried to install a piece of software you would have had to have given permission to install it just like any other piece of software. But if you do think your computer has been compromised the only sure way to know it's safe again would be to re-format the hard drive and re-install your OS and data.
    Message was edited by: pogster

  • Problems with focus traversal after moving to j2sdk_1.4.1_02

    Hi,
    Just moved to j2sdk_1.4.1_02 and we are having problems where
    focus stays on wrong UI component e.g. a user(user2) is taking edit/write permissions from another user(user1) that has write permissions. User1 is told that they will lose write permissions in
    the next 15 minutes ( information dialog displayed on their screen ) while at the same time on user2's window a text label is updated
    every 5 seconds to say how long before they will have write permissions,
    however, the information dialog displayed on user1 hangs and
    the user can't remove this dialog. Control seems to stay with user2.
    This used to work with the previous java version we used.
    Hope someone can help,
    Thanks

    Didn't say what version you came FROM, but I'm guessing if
    you're having focus related problems it was from PRIOR to 1.4
    when focus handling was revamped.
    You probably need to make sure you are using requestFocusInWindow()
    everywhere instead of requestFocus().
    Check here and possibly search for 1.4 and KeyboardFocusManager
    for new focus handling tutorials.

  • Problem with missing files after moving folders around

    Hi,
    I keep my music files manually organized. This is mostly because I have a LOT of music and I don't want to take up all the space on my MBP HD. So my music is split up between 2 external drives and the MBP drive.
    I was moving around some folders since I wanted to reorganize my music folders, and iTunes can't seem to find the files anymore, and in order to fix it I see I need to find each and every file I moved (which is really not practical).
    I tried editing the "iTunes Music Library.xml" file, but it seems to get rebuilt from some other place where this information is stored.
    I also tried putting aliases in the old folders' locations pointing to the new ones (iTunes kept saying the files are missing)
    Is there any way to simplify the process of moving folders?? This is really strange that such a feature is missing.
    Thanks
    Yaron

    If you have the 'keep' option enabled and let iTunes do the work - take a sound track album as an example - that has various artists and you didn't tell iTunes that the album was a compilation album - then iTunes will put all the tunes into into the iTunes Music folder as Artist>Album>Song - if you have the compilation option enabled for the tunes on that same album - iTunes will nest it as iTunes Music>Compilation>Album>Song. This helps reduce the clutter in the iTunes Music folder with a thousand artists and only one tune for that artist.
    With the 'keep' option selected iTunes will move tunes automatically within the iTunes Music folder. Since iTunes moved the files it can keep track of the links.
    To create a second library launch iTunes with the 'option' key down and follow the dialog box instructions. I have a 'Master iTunes Library' on my internal HD and several ext HD's with other libraries which I give unique names i.e.: Really Big Music. I give the library data base file its' own unique name so I don't accidentally erase the wrong file. I also keep all the files that you would normally see for an iTunes library on the ext HD (iTunes library. .xml, art work etc.,). If you are into lots of movies and TV Shows you could create a library on and ext HD with only video content and name it accordingly. You would keep all the files for that library including the library 'management' files on the ext HD in the same nesting as you would find on your internal HD.
    This strategy works for me. I tried to manage the files by myself at one point and just had to many problems so I decided to not fight City Hall and go with the flow and it works for me.
    MJ

  • Problem with phone line after moving flats

    I have moved to a new flats 3 months ago.  We transferred our BT line (BT is our phone and internet provider) to our new flat, internet works fine, but the phone line doesn't! We are not able to call anyone, or receive any calls. Is it something we can do to fix it on our own or should we call an engineer? Will it cost us anything if we call a BT engineer?
    THank you in advance!
    Elen

    Try the self help guide first
    Fixing phone faults
    If you are sure the fault is not within your premises, then you can report the fault here
    Reporting Phone Faults
    Provided that the fault is external to your house, then you should not be charged.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for