Ask Seattle A Question
Tech Support
Answers
  • How do I turn off +body in MS Word?
    Min-wage_small

    You're using Word 2007 or 2010, right? If you look at the Font pulldown menu on the Home tab, you'll see Calibri (Body) under Theme Fonts at the top; if you scroll down past All Fonts, you'll see Calibri listed. I don't know why they are different, but I think the Calibri (Body) selection has some different spacing included in the style that's not easy to find.

    If you select the Calibri (Body) text and change it to the Calibri listed under All Fonts, it should match the rest of your document. Or you could select a paragraph that is formatted the way you want, click the Format Painter (the little paintbrush in the Clipboard section on the Home tab) and select the paragraph you want to change.

    Another option is to clear formatting - the easiest way is to select the whole paragraph (or whatever text is showing up as +body) and press Ctrl+Spacebar. That paragraph will be reformatted to whatever the default text setting is for your document, but you will lose any bolding, italicizing, hyperlinks, etc. Clear Formatting is also a button in the Font section.

    When I'm pasting text, I right click first and select Keep Text Only or Match Destination Styles from the Paste Options so it doesn't mess up the formatting. Or paste as usual, and a little clipboard shows up at the end of the pasted text; click the little arrow to see the Paste Options. You don't need a separate program to paste unformatted text.

  • How do I lower my CPU usage more?
    Dinolock_small

    You say you've done system restores but have you simply formatted the disk and installed a fresh OS? That is the next thing you need to do if it is an option for you. Remember formatting deletes ALL data so make a backup of the files you care about.

    Make sure you've got a good view of what is actually using your CPU. Open the Task Manager and try to account for all % used and have a valid explanation for each process running. Take this information with a huge grain of salt because viruses can hide themselves from this list and appear to be legitimate processes when they aren't.

    High CPU can be caused by a lot of things (viruses included), but it can also be caused by hardware problems. If you format/install and still have 90% CPU usage on your first boot of a fresh install of Windows, I'd start leaning towards hardware problems (and would be surprised it even made it through an install).

    How's your memory usage look in Task Manager? I wouldn't expect it to cause high CPU usage, but your memory could be having issues which has caused some of it to not be used, which is causing the computer to use the hard drive for memory (aka swapping), which is extremely slow and will bog down your computer immensely. You should see 90%+ memory usage if this is happening. Memtest86 is a great (free) program that searches out buggy RAM in your computer; let it run overnight.

    Finally, going after things that bog down entire computers quickly, it could be the thing most likely to fail in your laptop (IMO): your hard drive. The easiest way to diagnose a bad drive is to remove it and test it in a known-good computer.

    Anyway, definitely FORMAT and reinstall (if you can handle a format without losing anything).

    And degragging is the most overrated fix to anything in the history of computing. Hard drive fragmentation is not causing your problem, nor will it ever in home computing. I don't remember the last time I defragged anything, and I've never seen defragging fix anything.

    Defragging's main purpose is to get users like yourself off of the phone for a few hours when you're out of troubleshooting ideas. Linux/Unix doesn't even have a concept of defragging in the majority of their native filesystems.

  • What are the easiest ways to improve browser speeds?
    11443802614723fe566385e_small

    Install both a flash and ad-blocker plugin for Chrome (and Firefox while you're at it).

    I'm assuming this is an old Windows machine (like Win 98 or something); if it's an old Mac running OS 9 or earlier, you can put together a custom set of startup extensions which are limited to what you need to get online.

    If it's a Windows machine, you can find out what everything you see in the Taskmanager actually does, and whether it's something you can kill. Just plug "what is " into Google (no quotes needed, usually) and you'll get websites that describe all the weirdly named processes do.

  • For maximum battery life, should I plug my laptop in at every opportunity, or occasionally let the battery drain?
    Qlandav2ex_small

    Depends on the battery technology (chemical makeup) being used. With a fairly new laptop you must be using a Lithium-ion battery.

    In general you can recharge a Lithium-ion battery whenever you want in the battery discharge cycle without causing any problems with ability to hold a charge or the battery's depth of charge, that is there is no such thing as "memory effect".

    Here is some text from Apple that explains the versatility of this type of battery.

    Of course, what you want is to not run out of power when you are working, so in any case, be sure to have some type of battery monitor installed that gives you plenty of warning if you are running low so you can get it plugged in or save your work and close it down in time.

    If you are using some other type of battery this story will be different.

  • How many "seconds" am I allowed to add on an Upload longer than15 minutes on YouTube?
    Photo_on_2012-01-03_at_17

    I actually thought the time limit for non-"Directors" was 10 minutes and they would let you get away with a few seconds more. They used to give people "Directors" accounts back in the day for people who made longer vids. I upload to YouTube all the time and I'm fairly certain the time limit is 10 minutes though. If you don't mind waiting around while it loads, you could always try to upload your video, but you will likely get an error message.

  • How can I place a video in the center on my blog??
    Dinolock_small

    I suck at web development but I'll throw some basics out.

    There are a lot of ways to tell something to be centered in HTML, and a lot of reasons why these ways won't work under various circumstances. It's hard to say exactly what your HTML needs to look like without a link to the page in question.

    IMO the easiest and most generic way to center something is by putting <center> tags around it.

    Something like this for a Youtube video:

    <center>
    <iframe width="420" height="315" src="http://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen></iframe>
    </center>

    But that might not work for a lot of reasons, top of which is that <center> is not even a standard HTML tag, but a relic from the olden days. It just happens to still work in pretty much every browser.

    Other tags that may put you in the right direction:
    <div align="center">
    <table width="100%" align="center"> (or possibly <td align="center">)

    Additionally, this is a super common problem, so I bet if you put "how to center an image in wordpress" (or whatever) into Google you can figure it out. I suggest figuring it out with images before videos just to make it easier to Google, but it shouldn't matter in the end.

    This page is awesome for learning HTML/general web development: http://www.w3schools.com/

    PS: if you need to post literal tags in a QL post like I did above, you need to use the "entity" codes from this chart in place of the < and > symbols - http://htmlhelp.com/reference/html40/entities/special.html (specifically the less-than and greater-than codes)

  • Most effective procedures for decluttering computer files?
    Dinolock_small

    You should check out this spiffy and free Windows utility called WinDirStat: http://windirstat.info/

    It gives you a visual overview of your disk space usage. I've found it really useful before to track down where all my disk space went.

    What you really need is to get the drive mounted in a Linux environment and go to town with your favorite scripting language. I'd start with a perl script that builds a list of files and their md5sums, then starts looking for duplicate md5sums.

    A quick Google for "windows 7 find duplicate files" shows some promise too, but I can't say I've used any of the utilities that come up.

  • Blog doesn't show up on search engines?
    Job_small

    I'd also give it a little time. Google doesn't re-index every site at every moment (so changing your keywords won't bring about instantaneous results). If you've got other blogger friends, outside links to your site will push you up in the rankings. Suggest a link swap.

  • What do I do with my old, broken iMac?
    555_pinout_small

    Probably just need to recycle it. Here's some info:
    http://blog.questionland.com/free-recycling-computer-parts-in-seattle-wa

    As far as the hard drive is concerned, the safest thing to do is just take it out and destroy it. If you have a very strong magnet then you can use that to wipe anything off the drive permanently.

  • Accessing the Internet on my MacBook through my iPhone?
    11443802614723fe566385e_small

    Yes, it's possible and very easy if you do it the proper way. Just go into Settings -> General -> Network -> Set up Personal Hotspot. The phone will prompt you to call AT&T or Verizon to set up a tethering plan, which runs around $30 a month.

    Doing it without paying for it is not terribly hard, but it is getting more and more difficult to get around the carriers themselves. You'll need to jailbreak your phone, which, if you're not running anything before iOS 5 is easy (the iOS 5 jailbreak isn't out yet if you upgraded with a non-hacked firmware package). Then you just buy a jailbreak tethering app.

    However, AT&T and Verizon have both started cracking down on unauthorized tethering, and if you do tether they'll just sign you up for a tethering plan. There is one jailbreak tethering app that claims to get around this (http://junefabrics.com/iphone/index.php) but I haven't looked into it that much as I de-jailbroke my iPhone with iOS 5.

  • How to find wifi password???
    Min-wage_small

    Well, if the desktop is connected via wireless you might find the password in the control panel. It's Windows 7, right? Click on the Start menu icon, then type "manage wireless networks" in the search bar on the start menu. It might take a second or two, but the link to that control panel will show up. Click on it - if it's connected via wireless you should see the name of the wireless network. Right click on that, then go to properties, then click on the security tab. You might have to click the box for "show characters", but you should be able to find the password there.

    If the desktop is not connected via wireless you can sometimes find the default password by searching online for the router name and model number. It's also possible that the wireless router has a guest network, which is why it looks like you can connect - those types usually take you to what looks like a website to enter the password. If you wind up searching online for the default password check for this option too.

  • Is there any way to disable video ads in my browser?
    Gold-head_small

    If you mean an ad inside a video, that has to play before you can watch the video you want, I don't know how, but if you're just talking about ads elsewhere on the page, you want Adblock.

    http://adblockplus.org/en/chrome

    You can also block videos that start with Flash (almost all of them) with Flashblock. It allows you to start the Flash items you want (say, a menu or something) while leaving blocked the ones you don't (Ford ad, autostarting video, etc.)

  • x-box red ring of death. Now what?
    Dinolock_small

    Shoreline? Drop by Game Gurus on Lake City Way and 125th Ave.

    They fixed my Rock Band drums once years ago, and seemed like good people.

    Good reviews on Yelp too:

    http://www.yelp.com/biz/game-gurus-seattle

  • Problems joining Steam...
    Medium_2868373187_b2c11c89cf_o_small

    Are you sure you are in the "new account" portion and not the "login" section?

  • Where to digitize audio cassettes?
    Avatar_default

    If you do it yourself, be very careful with the cassettes, first off. Make sure they have proper tension before jamming them into a tape deck. Just use your fingers to hold the supply reel and gently wind the take-up reel until you feel tension. Then exercise the tape since they haven't been played in a long time. Give them a full fast-forward and then a rewind once you're certain the tension is good. Then you can press play. Make sure they are fully wound one way or the other once you are finished with them. Store them in a case that has some sprockets to keep the reels from unspooling.

    As far as gear, a TASCAM or Marantz deck should be suitable. I would avoid those all-in-one USB devices if you care about sound quality. You should, however, check out M-Audio, Apogee, MOTU, etc for a USB or Firewire audio interface. You only need two channels, but there are lots of options. Each of these should be $300-500. You will also need editing software. Audacity is crap because it is free, so look for software you can afford. Use the highest resolution your USB/firewire interface provides (prob 24bit, 96kHz wav). You will need some extra hard drive space, but down the line you will be happy you did it. Especially if you plan on releasing any of it.

    This is absolutely a project you can do yourself over a period of time. It's always best to monitor the complete transfer, but once you master the software you can set the recording time to a minute or two past the cassette side length and let it run. If something goes wrong you'll find it later. Just always spot check your recordings once you are finished.

  • How can I embed a video into a QR code?
    Dinolock_small

    That's not quite how it works. There is no easy way for people to directly access the video file on your desktop over the internet.

    QR codes are essentially bar codes. They only contain text. So a QR code that "embeds a youtube video" is actually just a QR code that points to a youtube.com URL like http://www.youtube.com/watch?v=dQw4w9WgXcQ

    QR codes are easy to make. Here is a seemingly decent website where you can make them:

    http://qrcode.kaywa.com/

    And here is one I made:

    http://qrcode.kaywa.com/img.php?s=8&d=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DdQw4w9WgXcQ

    So, for you, the first thing you need to do is get your video hosted somewhere you can easily share it with others. Youtube is obviously an option -- maybe as a private video? There are other Youtube-like sites as well like Vimeo.

    Or, if you don't care about your video playing in a web browser, and simply want to share the file, Dropbox would be a good option. They have a "Public folder" where you can upload files and then link them via http://something.dropbox.com/something -- but this will not put the video in a nice player with play/pause/seek and such. It will just provide the file itself.

    I hope that is helpful! Feel free to use comments if something doesn't make sense.

  • Is there a way to make sure I don't miss tweets by a few specific important people I follow on twitter?
    Cateyes_small

    Tweet-deck is the answer, I think. It's been ages since I've used it (I abandoned my Twitter account a few years ago), but it will allow you to group various feeds together. So, you could have a "work" group, and it would appear as a separate column in the TweetDeck dashboard. (You could do the same thing with your 90 bajillion news feeds.)

  • Why can't I hit CTRL+W to close a browser window that has flash content (such as youtube)
    Bierce1_small

    Depending on how it's embedded or how you're hovering over it, it might trap the keyboard keypresses.

  • Will I be able to stream netflix and other video if I use CenturyLink (fka Qwest)?
    Icon_small

    I manage fine, and I pay for the second-to-slowest CenturyLink option.

    Hulu used to play pretty choppy on my DVD player, but I recently switched to a Roku, and it streams like a dream.

  • Did the "Move" function in XP survive in Windows 7?
    Imgp0063_small

    In any Windows 7 application like Explorer, if the top menu (File, Edit, etc..) isn't visible, you can hit Alt and it'll show it. So just press Alt and look under the Edit menu, and you'll find "Move to folder" and "Copy to folder".

  • How do I intentionally pixelate a photo?
    Cappa_small

    I will suggest the cheap, multi-platform, open-source GIMP:

    http://www.gimp.org/

    The online manual is pretty comprehensive, but here is a quick Google-derived primer to get you going after installation:

    1) Open your image file in GIMP, go to the top bar, and select Image > Mode > RGB

    2)Select Layers > Duplicate Layer

    3)Select Filters > Blur > Pixelize - for starters, set the height and width to 20 px and adjust to taste

    4)If you want to emphasize the borders between pixels, select Filters > Enhance > Sharpen and set the sharpness to your liking (e.g. 88)

    Good luck!

  • How do I plug in these speaker cords to my amp?
    Spaceship_small

    Seriously, if it's that complicated, get a friend who is stereo savy or familiar and confident to help you set it up. Don't experiment... the wrong crossed cords could blow up the amp and cause costly repairs. (Plus, if the system is already blown...[do you trust your seller?] you want to know about it BEFORE you do any damage. A tech savy friend would recognise this before you might.)

  • what the hell is going on with the slog rss feeds?
    Profile-pic_small

    This website is headed for a disaster of biblical proportions. Human sacrifice, dogs and cats living together, mass hysteria!

    We had a glitch yesterday with the RSS feeds, should be better now (but please let us know if you're still seeing problems). You're always welcome to write us at webmaster@thestranger.com if you see anything amiss. Thanks!

  • How can I disenfect my phone without using liquids?
    Ozomahtli_small

    If it was me, I'd try the following:
    1. REMOVE THE BATTERY (very important)
    2. Scrub the phone inside and out with soapy water
    3. Rinse thoroughly (deionized water is better than distilled water which is better than tap water)
    4. Dunk everything in isopropyl alcohol
    5. Let dry completely (be conservative)
    6. Reinstall the battery ... if it works, great, if it doesn't, get a new phone.

  • How to minimize virus threat when downloading torrents?
    John_collins_200x300_small

    Becoming infected by a website is possible, but most web-based malware involves third-party code, not a passive exploit. Unless you're running an ancient browser, you're going to be prompted before it runs anything like that. First of all, you won't need to run third-party code to download a torrent. So don't do it. You can minimize the chances of web-based malware by downloading the torrent directly from a reputable torrent indexing site, like Pirate Bay. Make sure you don't click on the plethora of fake "download" links and ads. Finally, if you're running a modern OS like Vista or Windows 7, don't run your browser as administrator or under an administrator account.

    My money would be on executable files in the torrent. You shouldn't have to run an EXE to watch a movie. A legit release will just be the media file, like AVI, and a readme. If you're pirating software, watch out for any other executables like keygens or installers, but in that case you're going to have to at least trust the cracked software. Look for releases from a "reputable" group at the original source, like a torrent or newsgroup posting.

    Academic point: media files *can* cause viruses or other malware if they exploit the software that is reading them.

    Yes, the vast majority of infections come from directly running an exe file or a tainted installer. But everyone knows not to run weird exe files. That's where exploits like buffer overflows come in. They can use malformed data to trick the program into running arbitrary code.

    That said, that type of thing is extremely rare and usually patched quickly. Keep your media player up to date and you should be fine.

  • Is there a way for me to somehow filter out the content removed by the QLand mods from my Google reader?
    John_collins_200x300_small

    From what I can tell it's an issue with the feed reader. If you look at the RSS feed, you'll notice the deleted posts aren't actually there anymore. It seems that once Google Reader gets a hold of an item, it leaves in in the list forever, regardless of whether it's been removed from the source feed.

  • Has anyone been able to get the new homesharing with iOS 4.3 to work?
    Img_0733_small

    Yes. I had to turn off home sharing and log in again in iTunes for the Shared option to show up on my iPhone but it is working as expected. Maybe that will work for you too. Under the Advanced drop down Turn Off Home Sharing, then turn it on again. Double check your username and password are entered correctly on your iOS device. On the iOS device, open iPod, click More and you should now see the Shared option.

  • What is a good freeware converter for ipod video
    07_06_27_007_small

    Handbreak. Period.

  • Any way to save my Facebook posts?
    Imgp0063_small

    Facebook lets you do this yourself. Just go to Account Settings, and at the bottom click "Download Your Information"

  • Problem with Apple TV V1
    Bike-scope_small

    You can try holding down a few buttons to try to get to the Recovery screen as outlined here:

    http://support.apple.com/kb/HT1560

    From there you can then do a Factory Restore, if that's what you're looking to do. Assuming you have access to the menus, you can also do the factory restore via the easier method mentioned here:

    http://support.apple.com/kb/ht3199

    You may also want to post this question and other Apple TV (1st Gen) questions to the following apple discussion board as it's a fairly active board:

    http://discussions.apple.com/forum.jspa?forumID=1185

  • more answers in Tech Support »
Questions
Recent Comments
  • Comment on SNAPHEAT's answer…
    Il_570xn

    Unfortunately the ipa file is coded with my userID for iTunes. It can't be shared. I wasn't able to get my file to work on my wife's computer.

  • Comment on SNAPHEAT's answer…
    186989_100002144377301_4103750_n_small

    Or email it or something? I'm really dying to see if I can get it to work.

  • Comment on SNAPHEAT's answer…
    186989_100002144377301_4103750_n_small

    Could you possibly upload this file? I just need the ipa file and I can get it to work.

  • Comment on John Bailo's answer…
    211942_100000013708988_5015435_n_small

    Thank you. This is helpful. Hank

  • Comment on sublevelthree's answer…
    Bierce1_small

    Yeah, Notepad works wonders for this.

  • Comment on asteria's answer…
    Subcultureoftwo_small

    This is awesome. Have a shroom on me!

  • Comment on ShrewdLou's answer…
    Subcultureoftwo_small

    Thanks for the tip!

  • Comment on sublevelthree's answer…
    Subcultureoftwo_small

    Oo, this is excellent cheating. Thanks!

  • Comment on Black Beetles in Amber's answer…
    Atessoue_small

    It doesn't feel really hot but I haven't ever opened it up to clean it and the laptop is 5 years old so...

  • Comment on Black Beetles in Amber's answer…
    Bierce1_small

    Reformatting isn't a terrible solution, everyone should remove the clutter now and then. But I would simultaneously try using compressed air on your exhaust ports, perhaps take off the cpu fan panel and give it all a good de-dusting, check to ensure that the fan is spinning properly.

  • Comment on Black Beetles in Amber's answer…
    Atessoue_small

    I have no clue what the problem is. XD At this point I'm on the brink of reformatting and I've been asking people around me if they know any people who fix computers. But I can look into this angle this weekend.

  • Comment on protosaurus's answer…
    Atessoue_small

    Reformatting is the last thing I'll do but I may have to. I will lose programs if I do that and I don't want to really have to go buy them again. I did go into safe mode and I was dragging there too. The weird thing is that when I have the task manager open, Firefox doesn't take up too much CPU units but it comsumes huge amounts of memory. But now since chrome is dragging and my OS is dragging, it's something else.

    I'll try to do the mem test this weekend after I buy a cd to burn it to. It almost feels as though was happening to my computer is changing by the day.

  • Comment on O my captain's answer…
    Atessoue_small

    I did think it was a virus. And I analyzed my computer and it told me a defrag was unnecessary. I have 150 GBs free on a 230 GB HD. Then I went into safemode and scanned both my internal and external HDs with Malwarebytes. Everything came up clean.

    While I'm not so sure about some anti-virus/malware programs, Malwarebytes has saved me multiple times and this time it found nothing.

  • Comment on FormerRebelTurnedParentalUnit's answer…
    Wa_usa_small

    This is useful information, thank you for sharing.

  • Comment on sublevelthree's answer…
    Ava_small

    Weird. I've never had that problem before. Is this happening with all video or just specific video files? The only other suggestion I would have is to re- install your browser in case it got some sort of malware. Hopefully some pc people will have some suggestions

  • Comment on Ed B's answer…
    John_collins_200x300_small

    http://userscripts.org/scripts/show/48591

    It should still work, but I haven't tested it in a long time. It doesn't work on RSS feed readers, just on the main page.

    Look in the right sidebar and you'll be able to check to hide authors that the plugin has seen before.

  • Comment on sublevelthree's answer…
    Beef_small

    well, VLC seems to play video BUT no audio. And playing any video in my browser still crashes everything.

  • Comment on Russ Campbell, NWEBS's answer…
    Qlandav2ex_small

    It is now approaching two weeks since you wrote about your drowned iPod.

    What was the outcome?

  • Comment on Kristin Bell's answer…
    Photo_on_2012-01-03_at_17

    Expect subscribers! Your channel/videos are unique and wonderfully made!!! And yes, that is me. :) Thanks for posting your video. What an intense process! I LOVE BOOKS, so it was great to see! :)

  • Comment on SNAPHEAT's answer…
    Avatar_default

    Hi, thank you very much for your swift reply. Unfortunately I don't have any backups... This is my 1st iPhone and I never connected it to iTunes since I restored it a year ago so that I can use it to listen to radio & as an Airfoil Speaker...
    Too bad. Thanks anyway!

  • Comment on Kristin Bell's answer…
    Mr_small

    ou are my subscriber? wow. I really didn't expect anyone to subscribe to my channel, so what a surprise. Thanks. Let me know if you want to know anything particular regarding my trade, - I'll make a tutorial videos of the subject in the future. Thanks again.

  • Comment on Kristin Bell's answer…
    Mr_small

    Well, just a few weeks ago, I started a blog where I write about my work, and someone asked me create a tutorial video of my profession and post it on my blog. So, I needed to upload them on Youtube. I initially made the status of videos "unlisted", but I changed it to "Public" last night, so I think you can watch it? (humm, I'm new to this, so I'm not sure.) Anyway, the channel is "BookbindersChronicle" and if you can't watch videos there, they are on my blog: bookbinderschronicle.blogspot.com.

  • Comment on Kristin Bell's answer…
    Photo_on_2012-01-03_at_17

    Thanks! I'm glad I could help!!! :) What is your youtube channel and what sorts of things are you posting?? :)

  • Comment on Kristin Bell's answer…
    Mr_small

    ahh.. you were right.. I'm not so familiar with things like this as I'm new to the field. Anyway, I asked one of my friends to let me use his cell number to apply for the ability to upload videos longer than 15 min. And now my account's able to do that. Thanks for your response, Kristin.

  • Comment on michiko swiggs's answer…
    Michiko_small

    If you are visiting sites like etsy, turning off images or javascript is not going to work.

    A typical page on etsy has around half a megabyte of content it needs to download, which is quite a bit when you are talking about slow internet connections.

    I have typically found chrome to be faster than firefox for general browsing.

    Another trick you can try is using safari, turning on developer tools and changing the useragent to safari ios-iphone. It will trick the website into thinking you are on an iphone. Many sites (like etsy) have mobile optimized versions of the site, which has a smaller page loads.
    Of course, the website will look different, but you can still access the content. This might fall under the "delving too deeply" scenario though.

  • Comment on internet_jen's answer…
    Cats_small

    Classic theme is worth a shot if it's there. I've never used Vista. XP's graphics would bog down my old machine, if Vista is "prettier" than XP then maybe it takes even more RAM just show you the start menu and what not.

  • Comment on michiko swiggs's answer…
    Subcultureoftwo_small

    She uses it for a lot of artsy stuff (like Etsy), so text-only isn't an option. I'll give the Java some thought, though. Thanks!

  • Comment on internet_jen's answer…
    Subcultureoftwo_small

    Nope, Vista SP2.

  • Comment on Lilting Missive's answer…
    Subcultureoftwo_small

    Adblock for Chrome just installed. The OS is Vista, SP2. I'll have to give that "what is" a try. Thanks!

  • Comment on protosaurus's answer…
    Mr_small

    !!!!!THANK YOUUUU!! The "" thing worked !!! Thank you very much for taking time to write such detailed explanation!