473,387 Members | 1,876 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

newby could use a little help

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
Nov 22 '07 #1
15 1408
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.

**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
Hmmm. Maybe you should try a Flash oriented group since ActionScript is
Flash.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 22 '07 #2
Leslie Cox wrote:
**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
--
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, <f8*******************@news.demon.co.uk>
Nov 24 '07 #3
Thomas 'PointedEars' Lahn wrote:
Leslie Cox wrote:
>**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");
And don't forget the enclosing quotes:

getURL("http://www.somestore.com/index.php", "_self");
PointedEars
--
"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>
Nov 24 '07 #4
Thomas 'PointedEars' Lahn said the following on 11/24/2007 2:25 PM:
Randy Webb wrote:
>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.

**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
Hmmm. Maybe you should try a Flash oriented group since ActionScript is
Flash.

ActionScript is _not_ Flash,
My apologies oh great Pedanticist.
it is the ECMAScript implementation used *in* Flash.
That's nice[1].

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 24 '07 #5
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
Nov 26 '07 #6
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]
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Nov 26 '07 #7
Randy Webb wrote:
Thomas 'PointedEars' Lahn said the following on 11/26/2007 4:58 PM:
>Kailash Nadh wrote:
>>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, [...]

Would you care to share what you think a "Googlot" is?
That's an expression (from de.ALL) for "Google (Groups) idiot" :)
Regards,

PointedEars
--
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, <f8*******************@news.demon.co.uk>
Nov 27 '07 #8
Thomas 'PointedEars' Lahn said the following on 11/26/2007 8:05 PM:
Randy Webb wrote:
>Thomas 'PointedEars' Lahn said the following on 11/26/2007 4:58 PM:
>>Kailash Nadh wrote:
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, [...]
Would you care to share what you think a "Googlot" is?

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.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 27 '07 #9
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.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Nov 27 '07 #10
Randy Webb wrote:
Thomas 'PointedEars' Lahn said the following on 11/26/2007 8:05 PM:
>Randy Webb wrote:
>>Thomas 'PointedEars' Lahn said the following on 11/26/2007 4:58 PM:
Kailash Nadh wrote:
You are missing the first quote [...]
No, I don't. If you were not a Googlot who did not know the first
thing about Usenet, [...]
Would you care to share what you think a "Googlot" is?
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.
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
--
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, <f8*******************@news.demon.co.uk>
Nov 27 '07 #11
In comp.lang.javascript message <bu*********************@giganews.com>,
Mon, 26 Nov 2007 20:34:53, Randy Webb <Hi************@aol.composted:
>
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".

--
(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.
Nov 27 '07 #12
Dr J R Stockton wrote:
In comp.lang.javascript message <bu*********************@giganews.com>,
Mon, 26 Nov 2007 20:34:53, Randy Webb <Hi************@aol.composted:
>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
--
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, <f8*******************@news.demon.co.uk>
Nov 29 '07 #13
Randy Webb wrote:
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.

--
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)
Nov 30 '07 #14
John W. Kennedy said the following on 11/29/2007 8:54 PM:
Randy Webb wrote:
>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.
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.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 30 '07 #15
In comp.lang.javascript message <_5*********************@giganews.com>,
Thu, 29 Nov 2007 23:47:43, Randy Webb <Hi************@aol.composted:
>
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/HIKKused in their Harry Potter,
meaning "Society for the Promotion of Elfish Welfare (SPEW)".

"Hikke" is a Norwegian hiccup.

--
(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)
Nov 30 '07 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: rmn | last post by:
Hi, I'm looking for the translation betwen the color spaces, but I must be mistaken with the methods to use, losing the values. Please, I need a little help of a "coloured guru"....
1
by: Chuck Amadi | last post by:
A little help has anyone used the email-dir.py Email Module ,I have downloaded the example and would like some pointers to get it going . For example Have I got to add any parameters to python...
2
by: Rech | last post by:
Hi, I need a little help here managing child processes in Python. I'm not so skilled in system programming so I hope you can give me some good suggestions. I have a very CPU and memory...
2
by: OZ | last post by:
Hi, I am new C++ and need a little help with a public domain program that is suppose to perform a byte swap. I am receiving the following error messages during the compile process with Microsoft...
2
by: | last post by:
Hi, Im kindof new to c++... need a little help with system() function.. I use system to execute a dos program... but i want the rest of the program to continue imediately after executing it. and...
3
by: angeldeveloper | last post by:
Hey guys , is there anybody who can give me a program to this problem. 1. Write a program to create a file called grades.dat. Each line of the file should contain a last name and four scores. Use...
4
by: sandyw | last post by:
I need a little help here with extends. I have three class 1. EventsClass 2. TicketClass I have the extends to EventsClass 3. BuyerClass. I have the extends to EventsClass All three class...
1
by: crashonyou | last post by:
hello..would just like to ask a little help here regarding printing pdf files..i am currently making an automated system for printing files and i have encountered an interesting problem..i already...
1
by: Voxus | last post by:
(This is for C++ guys not C) Hi, I’m a new user and I haven't paid any attention to setting my details, as I am just here to get a little help on programming a small project I’m working on. I...
1
by: Vitalization | last post by:
hey all so i downloaded and installed a script from http://www.mikesworld.net. it works fine on my test website and all but i need a little help. This is how it works: You type in your e-mail...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.