newby could use a little help
|
|
Thread rating:  |
Leslie Cox - 22 Nov 2007 17:22 GMT Hi I wonder if anyone could shed some light on what I need to do with this code I have tried everything I know and come up blank.
**Error** Scene=Scene 1, layer=Layer 6, frame=115:Line 1: ')' or ',' expected
getURL(http://www.somestore.com/index.php" "_self");
Total ActionScript Errors: 1 Reported Errors: 1
Randy Webb - 22 Nov 2007 17:33 GMT Leslie Cox said the following on 11/22/2007 12:22 PM:
> Hi I wonder if anyone could shed some light on what I need to do with this > code I have tried everything I know and come up blank. [quoted text clipped - 5 lines] > > Total ActionScript Errors: 1 Reported Errors: 1 Hmmm. Maybe you should try a Flash oriented group since ActionScript is Flash.
 Signature Randy Chance Favors The Prepared Mind comp.lang.javascript FAQ - http://jibbering.com/faq/index.html Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Thomas 'PointedEars' Lahn - 24 Nov 2007 19:25 GMT > Leslie Cox said the following on 11/22/2007 12:22 PM: >> Hi I wonder if anyone could shed some light on what I need to do with this [quoted text clipped - 9 lines] > Hmmm. Maybe you should try a Flash oriented group since ActionScript is > Flash. ActionScript is _not_ Flash, it is the ECMAScript implementation used *in* Flash. And as such, plain ActionScript code is on-topic here; at least it should be.
PointedEars
 Signature Anyone who slaps a 'this page is best viewed with Browser X' label on a Web page appears to be yearning for the bad old days, before the Web, when you had very little chance of reading a document written on another computer, another word processor, or another network. -- Tim Berners-Lee
Randy Webb - 24 Nov 2007 22:44 GMT Thomas 'PointedEars' Lahn said the following on 11/24/2007 2:25 PM:
>> Leslie Cox said the following on 11/22/2007 12:22 PM: >>> Hi I wonder if anyone could shed some light on what I need to do with this [quoted text clipped - 10 lines] > > ActionScript is _not_ Flash, My apologies oh great Pedanticist.
> it is the ECMAScript implementation used *in* Flash. That's nice[1].
 Signature Randy Chance Favors The Prepared Mind comp.lang.javascript FAQ - http://jibbering.com/faq/index.html Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Thomas 'PointedEars' Lahn - 24 Nov 2007 19:23 GMT > **Error** Scene=Scene 1, layer=Layer 6, frame=115:Line 1: ')' or ',' > expected > > getURL(http://www.somestore.com/index.php" "_self"); ^
> Total ActionScript Errors: 1 Reported Errors: 1 Since ActionScript is an ECMAScript implementation, the above is syntactically incorrect. If "_self" is to be the second argument to getURL(), you will have to delimit it with a comma:
getURL(http://www.somestore.com/index.php", "_self");
PointedEars
 Signature Prototype.js was written by people who don't know javascript for people who don't know javascript. People who don't know javascript are not the best source of advice on designing systems that use javascript. -- Richard Cornford, cljs, <f806at$ail$1$8300dec7@news.demon.co.uk>
Thomas 'PointedEars' Lahn - 24 Nov 2007 19:26 GMT >> **Error** Scene=Scene 1, layer=Layer 6, frame=115:Line 1: ')' or ',' >> expected [quoted text clipped - 8 lines] > > getURL(http://www.somestore.com/index.php", "_self"); And don't forget the enclosing quotes:
getURL("http://www.somestore.com/index.php", "_self");
PointedEars
 Signature "Use any version of Microsoft Frontpage to create your site. (This won't prevent people from viewing your source, but no one will want to steal it.)" -- from <http://www.vortex-webdesign.com/help/hidesource.htm>
Kailash Nadh - 26 Nov 2007 04:19 GMT You are missing the first quote (just before http://) getURL(http://www.somestore.com/index.php", "_self");
should be
getURL("http://www.somestore.com/index.php", "_self");
Regards, Kailash Nadh http://kailashnadh.name
Evertjan. - 26 Nov 2007 10:01 GMT Kailash Nadh wrote on 26 nov 2007 in comp.lang.javascript:
> You are missing the first quote (just before http://) > getURL(http://www.somestore.com/index.php", "_self"); > > should be > > getURL("http://www.somestore.com/index.php", "_self"); What and whom are you responding on?
[please always quote on usenet]
 Signature Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress)
Thomas 'PointedEars' Lahn - 26 Nov 2007 21:58 GMT > You are missing the first quote (just before http://) > getURL(http://www.somestore.com/index.php", "_self"); > > should be > > getURL("http://www.somestore.com/index.php", "_self"); No, I don't. If you were not a Googlot who did not know the first thing about Usenet, you would have replied and quoted properly which in this case would have meant not to post at all since I had already posted that correction (and you mindlessly replied to it with the above repetition of it.)
PointedEars
 Signature realism: HTML 4.01 Strict evangelism: XHTML 1.0 Strict madness: XHTML 1.1 as application/xhtml+xml -- Bjoern Hoehrmann
Randy Webb - 26 Nov 2007 22:32 GMT Thomas 'PointedEars' Lahn said the following on 11/26/2007 4:58 PM:
>> You are missing the first quote (just before http://) >> getURL(http://www.somestore.com/index.php", "_self"); [quoted text clipped - 8 lines] > posted that correction (and you mindlessly replied to it with the > above repetition of it.) Would you care to share what you think a "Googlot" is?
 Signature Randy Chance Favors The Prepared Mind comp.lang.javascript FAQ - http://jibbering.com/faq/index.html Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Thomas 'PointedEars' Lahn - 27 Nov 2007 01:05 GMT > Thomas 'PointedEars' Lahn said the following on 11/26/2007 4:58 PM: >>> You are missing the first quote (just before http://) [quoted text clipped - 7 lines] > > Would you care to share what you think a "Googlot" is? That's an expression (from de.ALL) for "Google (Groups) idiot" :)
Regards,
PointedEars
 Signature Prototype.js was written by people who don't know javascript for people who don't know javascript. People who don't know javascript are not the best source of advice on designing systems that use javascript. -- Richard Cornford, cljs, <f806at$ail$1$8300dec7@news.demon.co.uk>
Randy Webb - 27 Nov 2007 01:34 GMT Thomas 'PointedEars' Lahn said the following on 11/26/2007 8:05 PM:
>> Thomas 'PointedEars' Lahn said the following on 11/26/2007 4:58 PM: >>>> You are missing the first quote (just before http://) [quoted text clipped - 8 lines] > > That's an expression (from de.ALL) for "Google (Groups) idiot" :) Maybe you can help me with another word then. It is harder now, but, if you search Google for the word "Hikk", it will come up with German pages. Can you tell me what it means in German? I have a meaning for it for myself, I am just curious what it means in German.
 Signature Randy Chance Favors The Prepared Mind comp.lang.javascript FAQ - http://jibbering.com/faq/index.html Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Dr J R Stockton - 27 Nov 2007 22:41 GMT >Maybe you can help me with another word then. It is harder now, but, if >you search Google for the word "Hikk", it will come up with German >pages. Can you tell me what it means in German? I have a meaning for it >for myself, I am just curious what it means in German. It may be Swiss : "Hilfe für Kinder im Kongo".
 Signature (c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk DOS 3.3, 6.20 ; WinXP. Web <URL:http://www.merlyn.demon.co.uk/> - FAQqish topics, acronyms & links. PAS EXE TXT ZIP via <URL:http://www.merlyn.demon.co.uk/programs/00index.htm> My DOS <URL:http://www.merlyn.demon.co.uk/batfiles.htm> - also batprogs.htm.
Thomas 'PointedEars' Lahn - 29 Nov 2007 19:40 GMT >> Maybe you can help me with another word then. It is harder now, but, if >> you search Google for the word "Hikk", it will come up with German >> pages. Can you tell me what it means in German? I have a meaning for it >> for myself, I am just curious what it means in German. > > It may be Swiss : "Hilfe für Kinder im Kongo". That's German. There is no such thing like a Swiss language. (You would know about the four main languages in Switzerland if you visited the Large Blue Room more often.)
PointedEars
 Signature Prototype.js was written by people who don't know javascript for people who don't know javascript. People who don't know javascript are not the best source of advice on designing systems that use javascript. -- Richard Cornford, cljs, <f806at$ail$1$8300dec7@news.demon.co.uk>
Thomas 'PointedEars' Lahn - 27 Nov 2007 22:42 GMT > Thomas 'PointedEars' Lahn said the following on 11/26/2007 8:05 PM: >>> Thomas 'PointedEars' Lahn said the following on 11/26/2007 4:58 PM: [quoted text clipped - 8 lines] > pages. Can you tell me what it means in German? I have a meaning for it > for myself, I am just curious what it means in German. At least it is not a proper word in standard written German (although it might be in one of the various dialects). The first ten Google results refer to it as an acronym for the name of a charity organization (HIKK -- [de] Hilfe für Kinder im Kongo -- [en] Help for Children in Congo), an abbreviation for the city of Hikkaduwa (98 km south of Colombo, Sri Lanka), and an acronym for a conference about cooperation between universities/technical colleges and the industry in Austria ([de] HIKK -- Hochschul-/Industriekooperations-Konferenz). I also now it as a word for the sound one makes when having a hiccup :)
Please ask further such questions in the appropriate newsgroup (you may try de.etc.sprache.deutsch) or via private e-mail.
F'up2 poster
PointedEars
 Signature Prototype.js was written by people who don't know javascript for people who don't know javascript. People who don't know javascript are not the best source of advice on designing systems that use javascript. -- Richard Cornford, cljs, <f806at$ail$1$8300dec7@news.demon.co.uk>
John W. Kennedy - 30 Nov 2007 01:54 GMT > Maybe you can help me with another word then. It is harder now, but, if > you search Google for the word "Hikk", it will come up with German > pages. Can you tell me what it means in German? I have a meaning for it > for myself, I am just curious what it means in German. Are you sure it's German that you're looking at? The most common language seems to be Icelandic.
 Signature John W. Kennedy "Those in the seat of power oft forget their failings and seek only the obeisance of others! Thus is bad government born! Hold in your heart that you and the people are one, human beings all, and good government shall arise of its own accord! Such is the path of virtue!" -- Kazuo Koike. "Lone Wolf and Cub: Thirteen Strings" (tr. Dana Lewis)
Randy Webb - 30 Nov 2007 04:47 GMT John W. Kennedy said the following on 11/29/2007 8:54 PM:
>> Maybe you can help me with another word then. It is harder now, but, >> if you search Google for the word "Hikk", it will come up with German [quoted text clipped - 3 lines] > Are you sure it's German that you're looking at? The most common > language seems to be Icelandic. Heck if I know for sure. I made the word up about 10 years ago as an intentional mis-spelling of the word "Hick". My question would have been better worded as "Does anybody know if the word Hikk means anything in any other language?". I was more curious than anything.
 Signature Randy Chance Favors The Prepared Mind comp.lang.javascript FAQ - http://jibbering.com/faq/index.html Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Dr J R Stockton - 30 Nov 2007 20:30 GMT >Heck if I know for sure. I made the word up about 10 years ago as an >intentional mis-spelling of the word "Hick". My question would have >been better worded as "Does anybody know if the word Hikk means >anything in any other language?". I was more curious than anything. It may be Norwegian for one use of "Hip". Check in no.c.l.j.
It's also a Norwegian acronym : HIKK (Husnissenes Internasjonale Kamp- Koalisjon) <no.wikipedia.org/wiki/HIKK> used in their Harry Potter, meaning "Society for the Promotion of Elfish Welfare (SPEW)".
"Hikke" is a Norwegian hiccup.
 Signature (c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME. Web <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links. Proper <= 4-line sig. separator as above, a line exactly "-- " (SonOfRFC1036) Do not Mail News to me. Before a reply, quote with ">" or "> " (SonOfRFC1036)
Evertjan. - 27 Nov 2007 07:40 GMT Thomas 'PointedEars' Lahn wrote on 27 nov 2007 in comp.lang.javascript:
>> Would you care to share what you think a "Googlot" is? > > That's an expression (from de.ALL) for "Google (Groups) idiot" :) No need to call someone an idiot, your English spacing overshoots.
Googlot = "Google monoglot", someone that is not up to a decent news client.
 Signature Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress)
|
|
|