AutoHotkey Community

It is currently May 26th, 2012, 1:21 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 13 posts ] 
Author Message
PostPosted: November 24th, 2008, 6:23 am 
Offline

Joined: June 11th, 2005, 9:34 am
Posts: 264
Location: England ish
Moderator note: see also [Confirmed] Flash 10 problem: No more Copy Code to Clipboard

Just to save you guys future troubles.

I found out that google chrome damages scipts if they're copied from the forum using the "copy" button.

I.e I've copied:
http://www.autohotkey.com/forum/viewtop ... 294#233294

but when I ran it, the code failed at line 8, telling me that the line wasn't recognised....

[edit]
as a workaround, you can manually select the whole text, instead of using the copy button
[edit close]

Just thought it would be worth knowing.... :


P.s other than that, google chrome rocks.

_________________
::
I Have Spoken
::


Last edited by TheLeO on November 28th, 2008, 3:23 am, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 24th, 2008, 6:54 am 
Offline

Joined: November 9th, 2008, 12:33 am
Posts: 14
Hmm. When that happens to me, from any browser, I have found that replacing all the quote marks (single & double) within the script usually fixes the problem. I have no idea why, but it does.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 24th, 2008, 7:09 am 
Offline

Joined: April 18th, 2008, 7:57 am
Posts: 1390
Location: The Interwebs
Just manually highlight the whole script and copy it, rather than using the copy button.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 24th, 2008, 8:19 am 
my vista ultra doesnt even do anything when i click that button with firefox.
not only ahk forum, but other sites like photobucket too


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: November 24th, 2008, 1:30 pm 
Offline
User avatar

Joined: November 2nd, 2008, 4:23 pm
Posts: 2906
Location: 127.0.0.1
i have visa home premium and it lets me copy on photobucket but does nothing here


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 14th, 2008, 4:03 am 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
Old post. Additional information...

If the copy link works at all (See: http://www.autohotkey.com/forum/viewtopic.php?t=37021), I've confirmed that the Chrome script that copies the code to the clipboard does copy hidden junk to the clipboard making the result un-runnable. The problem appears to only occur on lines with leading spaces. Chrome is replacing every other leading space with CHR(160) which appears to looks like a regular space character when viewed with most editors. Here's an example:

Code:
Script:
-------------------------
        if instr(A_LoopField,"FM")=1
            if SubStr(A_LoopField,3) is Number
-------------------------



ASCII values:
-------------------------
160,32,160,32,160,32,160,32,105,102,32,105,110,115,116,114,40,65,95,76,111,111,112,...
160,32,160,32,160,32,160,32,160,32,160,32,105,102,32,83,117,98,83,116,114,40,65,95,...
-------------------------


Just thought I'd pass this on...

Moderator: Move to "Bug Reports" or "General Info" ??


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 14th, 2008, 8:32 am 
Offline
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8666
Location: Salem, MA
I think bug reports that apply to the webpage are normally moved to bug reports section. I think this problem is also known anyway, but has not been fixed yet.

The trouble is, nobody will find the information anyway unless a sticky post is made, but I prefer not to make one.

I have moved this to bug reports.

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 14th, 2008, 12:24 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
This problem is known, somebody else reported it a while ago. Chrome and Opera do not apply my regex correctly, leaving \xA0 bytes as they are when they should be converted to \x20. Despite this bug with their JavaScript implementations phpBB2 is flawed by as because it should leave code text unformatted in <pre> tags. As a workaround you may try setting the cookie codeblock-tab=0 in your browser for autohotkey.com which would convert \xA0\xA0 to \x09, but since I do not use either Chrome or Opera so I cannot confirm this.

I'll tag this post as confirmed so nobody else will create a similar thread.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 17th, 2008, 9:49 pm 
Offline

Joined: December 4th, 2006, 10:35 am
Posts: 561
Location: Galil, Israel
not to be too totally off topic, but when I tried to install chrome it started taking stats on my system and attempted to upload them to google.

re-installed in a VM, and started looking at it. Is very freaky. Google is recording all of the keystrokes. maybe missed where to turn that off, but why would want to install direct spyware is little creepy for me personally. Nothing against Google (used Google desktop for long time), but continuous stream of what I type in my url (and thus all sites visited, etc.) is at least for me, creepy feeling.

_________________
Joyce Jamce


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 19th, 2008, 4:37 am 
Joy2DWorld wrote:
Google is recording all of the keystrokes.
How can you tell?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 19th, 2008, 4:43 am 
Offline

Joined: January 12th, 2008, 7:45 pm
Posts: 131
Joy2DWorld wrote:
but continuous stream of what I type in my url (and thus all sites visited, etc.) is at least for me, creepy feeling.


Erhm, firefox does this to, as it searches through google when you type in the URL bar... well as I've heard, they DO save some (a very small amount) of the URL keywords that they receive... You can disable the search function so that Google doesn't receive it... There could always be someone else who could be watching anyways, so it's not really a big deal, you prolly have been runnin' around with firefox which does the EXACT same thing...

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 19th, 2008, 11:07 am 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
Ice_Tea wrote:
firefox does this to, as it searches through google when you type in the URL bar
No, it searches Google, Yahoo or any other search engine that supports suggestions-as-you-type in the search bar, not the address bar. There is an option in Chrome to disable search suggestions (as with Firefox), but Google still collects other type of data. The open source Chromium builds are safer but they lack functionality.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 19th, 2008, 4:10 pm 
Offline

Joined: December 4th, 2006, 10:35 am
Posts: 561
Location: Galil, Israel
Titan wrote:
Ice_Tea wrote:
firefox does this to, as it searches through google when you type in the URL bar
No, it searches Google, Yahoo or any other search engine that supports suggestions-as-you-type in the search bar, not the address bar. There is an option in Chrome to disable search suggestions (as with Firefox), but Google still collects other type of data. The open source Chromium builds are safer but they lack functionality.


exactly.

when I type a search term in search box, I expect that that term will be sent to search engine.

but that is different than sending ALL the url's i goto, (and even parts of them).

ie. trick of putting search box and url box together = you send Google not just search terms, but urls you type in as well.


there are many free packet sniff progs,
the google encoding is right in their open source release,
you can directly decode to see what is sent..

very freaky.


looks like at install they also fingerprint your system & grab your user info & info about progs you installed, etc.

anyhow.

_________________
Joyce Jamce


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 13 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 4 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group