Items filtered by date: December 2015

Wednesday, 12 September 2012 21:37

Fixing the Green Screen Flash Player Problem

Have you ever loaded a video on the Internet and, instead of the video playing, you got a weird, greenish-tinted screen that moved a bit but didn’t let you see the video? I had that problem for months, and finally solved it about a week ago. I’d been planning to write a post, but apparently now I don’t have to. Amit Agarwal, as he always does, explains how to solve the green screen problem:

If you refresh the web page, the ‘green screen’ problem might vanish temporarily but it is very likely to stage a comeback in your next browsing session. And this problem is not specific to YouTube but any video website that uses the Adobe Flash Player.


The fix is however simple. While you are on a video page, right click anywhere inside the Flash Player and choose settings. Now click the first tab that says Display (look for the monitor icon) and uncheck “Enable Hardware Acceleration.”

If that doesn’t make sense, watch the screencast in his post to see exactly how to do it.

Published in Applications
Wednesday, 12 September 2012 21:19

Manually remove SPTD driver


To remove SPTD you should do the next:
 

- Open Register Editor, navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Servic es\SPTD and change Start value to 4.
- Now do a reboot, navigate to this key again and change permissions on this node (key) - right click on the node, permissions and set Full Access to Everyone.
- Delete this key, do a reboot and install DAEMON Tools again.

and

If your system has some problems with SPTD installation you can do as follows:
 

If your OS is already running then go to step 2 directly.
If you cannot boot your PC at all then start from step 1.

1. Boot in safe mode and press ESC key when you see on bottom line of display:
"Press ESC to cancel loading SPTD.sys". This will abort loading of SPTD layer.

2. Open registry editor (run regedit) and browse to the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\sptd
Change the value "Start" (DWORD) to 4 (i.e. disabled).
[To re-enable SPTD service change the "Start" value back to 0.]

3. Reboot again in normal mode and check if your issue is solved.


Are either of these procedures the answer I'm looking for? I'm new enough that, while I did locate the key, and "Start"(DWORD), I don't know *how* to change the value to 4.


To just disable the driver

1.Create a new Text Document (.txt) File.
2.Rename it as "SPTD.reg".
3. Right-Click the file and select "Edit"
It will open in notepad or wordpad.
4. Copy and Paste the following below in the "SPTD.reg" and save and Double-Click it to run and click yes when asked to and restart your computer and your SPTD Service is disabled.(Copy as is)

{code}Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\sptd] "Start"=dword:00000004 {/code}

Published in Applications

I recently installed Adobe Acrobat X on mac, and when I opened up firefox I noticed that I got a new addon titled "Adobe Acrobat - Create PDF 1.0." The uninstall and disable buttons are not greyed out, but when I try to uninstall the addon and restart firefox it's still there. I could not find a settings in adobe acrobat to disable this addon, but one peculiar point was in preferences under "internet" the "display pdf in browser using" option was checked and greyed out. However, I do not know whether this is pertinent to this problem. How do I get rid of the addon? Adobe acrobat x did not install any additional plugins. Any help would be appreciated.


The reason you can't remove it in the way you were expecting is because it loads via a plug-in instead of as an add-on extension.

There are a few methods of removing it from Firefox, depending on what degree of removal you want:

- Turn off the toolbar in Firefox.
1. Choose View > Toolbars.
2. Click to uncheck Adobe Acrobat - Create PDF.

- Disable the plug-in in Firefox.
1. Choose Tools > Add-Ons.
2. Click the Plugins tab/section.
3. Locate and then click on the Adobe Acrobat - Adobe PDF Plug-In For Firefox.
4. Click Disable. Restart Firefox for the change to take effect.

- Uninstall the plug-in.
1. Open the Add Or Remove Programs (Windows XP) or Programs And Features (Windows 7/Vista) item in the Control Panel.
2. Locate and then click on Acrobat X.
3. Click Change (or Uninstall/Change).
4. Click Next.
5. Click Modify.
6. In the list, expand Create Adobe PDF.
7. Expand Adobe PDFMaker.
8. Locate Mozilla Firefox.
9. Click the install options button to the left of Firefox and choose This Feature Will Not Be Available.
10. Click Next, and then click Update. Once the installer finishes, the plug-in should be removed.
Published in Firefox

im getting an when visiting my website or uploading something to a website, ie uploading a module zip file in joomla.

Bad Request Your browser sent a request that this server could not understand.
or
Size of a request header field exceeds server limit


This can be solved by one of 2 ways

  • Use another Browser
  • It's a cookie problem. Either clear your cache and delete your cookies, or go into the cookies folder and delete the cookies for that site manually.

 

Published in General

It’s all set for Firefox 7 final release on September 27th of this month, Mozilla follows Chrome and Opera removes http:// protocol and trailing slash by default in the location bar for user friendly and better readability, that means you can only view or for that matter Firefox shows www.Example.com in the address bar. It may be confusing for novice users, here is how to enable or show http:// in the location bar again.

NB: But Firefox will display https:// prefix in the URL bar to let the users know they’re are on secured page and when you copy and paste URLs Firefox will include http prefix.

Answer

  1. Type “about:config “ in the address bar
  2. Search for browser.urlbar.trimURLs
  3. Double click on the browser.urlbar.trimURLs key to change its boolean value from true to false.

Now type any website URL in the browser, HTTP:// will be shown greyed out (not highlighted) for a change in Firefox 7 when compared to previous versions.

Update: Set “browser.urlbar.formatting.enabled” preference to false after the above mentioned steps to remove the highlighting.

Links

Published in Firefox
Wednesday, 12 September 2012 17:55

autochk.exe program not found-skipping autocheck.

I am receiving this error everytime i  boot my windows. It can possibly cause a BSOD.

This can be caused by an incomplete removal / uninstall of ad-aware


delete the following registry key{code}HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\BootExecute{/code}

Published in Applications
Wednesday, 12 September 2012 00:00

Redirecting to a relative URL in JavaScript

I have a problem: I want to redirect via JavaScript to a directory above.


You can do a relative redirect:

{code}document.location.href = '../'; //one level up{/code}Or{code}document.location.href = '/path'; //relative to domain{/code}

  • see why you should use window.location.replace stackoverflow.com/questions/503093/…
  • When you want to simulate a link, you should use window.location.href. You should only use window.location.replace when you want to simulate an http redirect (thus not generating a history item).
  • By the way, document.location was intended as a read-only property. It is safer to use window.location. See this question.
  • If you use location.path you will get your domain.com part. Then location.pathname will give you /path/folder. I would split location.pathname by / and reassemble the URL. But unless you need the querystring, you can just redirect to .. to go a directory above.
Published in Javascript
Wednesday, 12 September 2012 00:00

Galaxy S2 keeps rebooting

I have the S2 for 3 days now and just now and yesterday the phone just shut itself down and restart again. I think it happened 3 times in two days. So, I want ask if anyone experiencing the same thing and should I return the phone and get a new one?


It is most likely caused by an application that is on the SD card. Not all applications are 100% compatible with being on the SD Card.

  • Move all applicatioins of the SD Card on to the main phone memory
  • if the above does not work uninstall applications until the problem is resolved.

Even if it is not an application being on the SD Card that is the issue it is most likely an application.

Published in Android
Tuesday, 11 September 2012 21:55

Turning PSD into webpage

Since you received a PSD file and you want to turn it into a webpage, here is what you do, in a nutshell...

1) Open the PSD document in Photoshop and edit it the way you want.

2) Once you are done, and this is important...use the SPLICE TOOL to break up the PSD document into images...each splice will be a jpg file that you would save.

3) Go to File--Save for Web and you'll see your splices pieced together.

4) Select JPG HIGH for your resolution so that your images don't appear all blocky and pixel-like...

5) Save the PSD file as a .html file (i.e. index.html, whatever.html, etc.)

6) Next, open Dreamweaver, or your favorite HTML editor. Go to File--Open to open the PSD document...

7) Center the document...

8) If you need to add meta tags or keywords for SEO purposes, do so in the document.

Also there are some occompanying videos. Google "How To Create A Squeeze Page From Scratch"...

Published in General
Sunday, 09 September 2012 20:47

How to Edit SWF Files

Flash animation is the standard for Internet video. Videos on YouTube and other websites use SWF (.swf) files, which are the Web-optimized output of Flash (.fla) files. An SWF file in and of itself cannot be edited. It is akin to a Photoshop (.psd) file that has been flattened to a .jpg, .gif or .pdf file made from an Acrobat file. The only guaranteed way to edit an SWF file is to have access to its original Flash file. Third party decompilers can do some of the conversion, but they do not successfully convert all Flash elements as well as Adobe Flash.

Published in General
Page 61 of 96