Hi,
I'd like to append/amend the following code from the Dreamweaver extension
"Open Picture Window Fever" for the ability to center the PopUp window:
By default, it allows the window to be offset on the left and top, but does
not include a centering option.
I'm thinking it would include something like (screen.width-imageWidth)/2;
somewhere but not sure how do go about doing this.
Thanks for any help!
______________
function
openPictureWindow_Fever(imageType,imageName,imageW idth,imageHeight,alt,posLe
ft,posTop) { // v4.01
newWindow =
window.open("","newWindow","width="+imageWidth+",h eight="+imageHeight+",scro
llbars=no,left="+posLeft+",top="+posTop);
newWindow.document.open();
newWindow.document.write('<html><title>'+alt+'</title><body
bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0"
marginwidth="0" onBlur="self.close()">');
if (imageType == "swf"){
newWindow.document.write('<object
classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"
codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.c
ab#version=5,0,0,0\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');
newWindow.document.write('<param name=movie value=\"'+imageName+'\"><param
name=quality value=high>');
newWindow.document.write('<embed src=\"'+imageName+'\" quality=high
pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod
_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\"
width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');
newWindow.document.write('</embed></object>'); }else{
newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+'
height='+imageHeight+' alt=\"'+alt+'\">'); }
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
} 17 2443
Applebrownbetty wrote: Hi,
I'd like to append/amend the following code from the Dreamweaver extension "Open Picture Window Fever" for the ability to center the PopUp window:
Ditch it and start over.
By default, it allows the window to be offset on the left and top, but does not include a centering option.
Nah, it just thinks it can offset windows on my PC.
I'm thinking it would include something like (screen.width-imageWidth)/2; somewhere but not sure how do go about doing this.
First, ask yourself what makes anybody think that I want a popup window
that is in the center of my desktop? My desktop is 2560 pixels wide, so
the popup window would sit (or attempt to sit) in between the two monitors.
Open a window, let the *user* decide where to put it.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
Randy Webb wrote: Open a window, let the *user* decide where to put it.
Well, open a window[1], then let the user's probably-pretty-reasonable
window manager deal with it (and let the user move it from there if they
like)
[1] Or don't - thanks to popup blockers and people simply training
themselves to hit the X before the content loads, they aren't exactly
effective these days.
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
"Randy Webb" <Hi************@aol.com> wrote in message
news:5P********************@comcast.com... Applebrownbetty wrote:
Hi,
I'd like to append/amend the following code from the Dreamweaver
extension "Open Picture Window Fever" for the ability to center the PopUp window: Ditch it and start over.
Why? By default, it allows the window to be offset on the left and top, but
does not include a centering option. Nah, it just thinks it can offset windows on my PC.
Obviously you mean something here... but lack the time/energy/patience to
write it outright (in which case you shouldn't have posted it), so I'll skip
it. I'm thinking it would include something like
(screen.width-imageWidth)/2; somewhere but not sure how do go about doing this.
First, ask yourself what makes anybody think that I want a popup window that is in the center of my desktop?
My answer is that it is an enlarged thumbnail image, and on a big desktop it
would mean less mouse movement if it were near the center where the
thumbnails are as opposed to the left corner where most of them popup.
My desktop is 2560 pixels wide, so the popup window would sit (or attempt to sit) in between the two
monitors.
And the percentage of people in your situation is? Right, less than 0.5% I'd
guess. This might be a problem if you weren't able to move it yourself...
but even if it was in the center, you could.
Open a window, let the *user* decide where to put it.
Whether it opens in the top left or center, it does let the user decide
where to put it, since it's movable. I aim to create the least frustration
for the user. When they click on an image and it pops up nearby, that's more
user friendly and looks better IMO than an image on the top left of the big
monitor. It's framed nicer. -- Randy comp.lang.javascript FAQ - http://jibbering.com/faq
On Mon, 01 Nov 2004 19:24:02 GMT, Applebrownbetty
<applebrown@deletethisspace_gamebanshee.com> wrote: "Randy Webb" <Hi************@aol.com> wrote in message news:5P********************@comcast.com...
[snip] Ditch it and start over.
Why?
Most code produced by Dreamweaver is, quite frankly, crap. This extension,
included.
[ABB:] By default, it allows the window to be offset on the left and top, but does not include a centering option.
Nah, it just thinks it can offset windows on my PC.
Obviously you mean something here... but lack the time/energy/patience to write it outright [...]
I think the meaning is fairly explicit. The code attempts to position the
window, but it may not succeed. After all, browsers do allow the user to
override certain script actions.
[snip]
My answer is that it is an enlarged thumbnail image, and on a big desktop it would mean less mouse movement if it were near the center where the thumbnails are as opposed to the left corner where most of them popup.
As Randy has demonstrated, it will *force* extra mouse movement for a
proportion of users. My desktop is 2560 pixels wide, so the popup window would sit (or attempt to sit) in between the two monitors.
And the percentage of people in your situation is?
It doesn't really matter. From my experience, if the window manager
positions it, it will be placed in (generally) a predictable position in
the most applicable monitor. If you position it, it may be placed where
the user expects it, or somewhere inappropriate. So, a sensible place 100%
of the time, or an awkward place some of the time? I know what would be
the logical answer to that.
[snip]
I aim to create the least frustration for the user.
As I hope I've just made clear, leaving the decision to the operating
system will create the least frustration. Of course, not forcing a new
window upon the user in the first place is truly in the user's best
interests.
[snip]
Mike
--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Michael Winter wrote: Most code produced by Dreamweaver is, quite frankly, crap. This extension, included.
This isn't produced by DW, it's the work of a third party developer.
Mick
Applebrownbetty wrote: "Randy Webb" <Hi************@aol.com> wrote in message news:5P********************@comcast.com...
Applebrownbetty wrote:
Hi,
I'd like to append/amend the following code from the Dreamweaver extension "Open Picture Window Fever" for the ability to center the PopUp window: Ditch it and start over.
Why?
Because every single snippet of DW generated code I have ever read is
utter junk and can be re-written to be more readable, more predictable,
and less error-prone. By default, it allows the window to be offset on the left and top, but does not include a centering option. Nah, it just thinks it can offset windows on my PC.
Obviously you mean something here... but lack the time/energy/patience to write it outright (in which case you shouldn't have posted it), so I'll skip it.
No need to skip it. I will explain what isn't obvious to you. You can't
specify where to open a window on my computer because I have explicitly
disabled it. I have my windows where *I* want them, and thats where they
will open.
I'm thinking it would include something like (screen.width-imageWidth)/2; somewhere but not sure how do go about doing this.
First, ask yourself what makes anybody think that I want a popup window that is in the center of my desktop?
My answer is that it is an enlarged thumbnail image, and on a big desktop it would mean less mouse movement if it were near the center where the thumbnails are as opposed to the left corner where most of them popup.
So you think that opening a window where the user is not used to it
being opened is advantageous? I don't. My desktop is 2560 pixels wide, so the popup window would sit (or attempt to sit) in between the two monitors.
And the percentage of people in your situation is? Right, less than 0.5% I'd guess. This might be a problem if you weren't able to move it yourself... but even if it was in the center, you could.
It can't be opened in the center but thats irrelevant. Let it open where
the user is accustomed to it opening and it totally removes your "problem". Open a window, let the *user* decide where to put it.
Whether it opens in the top left or center, it does let the user decide where to put it, since it's movable. I aim to create the least frustration for the user. When they click on an image and it pops up nearby, that's more user friendly and looks better IMO than an image on the top left of the big monitor. It's framed nicer.
So its more "user friendly" to open a window where they don't expect it?
I think not.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
"Michael Winter" <M.******@blueyonder.co.invalid> wrote in message
news:opsgs0utmvx13kvk@atlantis... On Mon, 01 Nov 2004 19:24:02 GMT, Applebrownbetty <applebrown@deletethisspace_gamebanshee.com> wrote:
"Randy Webb" <Hi************@aol.com> wrote in message news:5P********************@comcast.com... [snip]
Ditch it and start over.
Why?
Most code produced by Dreamweaver is, quite frankly, crap. This extension, included.
That really didn't answer my question about this particular bit of code. [ABB:] By default, it allows the window to be offset on the left and top, but does not include a centering option.
Nah, it just thinks it can offset windows on my PC. Obviously you mean something here... but lack the time/energy/patience to write it outright [...]
I think the meaning is fairly explicit. The code attempts to position the window, but it may not succeed. After all, browsers do allow the user to override certain script actions.
[snip]
My answer is that it is an enlarged thumbnail image, and on a big desktop it would mean less mouse movement if it were near the center where the thumbnails are as opposed to the left corner where most of them popup.
As Randy has demonstrated, it will *force* extra mouse movement for a proportion of users.
My desktop is 2560 pixels wide, so the popup window would sit (or attempt to sit) in between the two monitors.
And the percentage of people in your situation is?
It doesn't really matter. From my experience, if the window manager positions it, it will be placed in (generally) a predictable position in the most applicable monitor. If you position it, it may be placed where the user expects it, or somewhere inappropriate. So, a sensible place 100% of the time, or an awkward place some of the time? I know what would be the logical answer to that.
What it comes down to is that you're saying 99% of the people who use window
positioning should not be. I don't agree. Let the operating system become
more reliable. I'll chance it for the few it doesn't work for. If it looks
really good for 99% of the people as opposed to "is functional" for 100% of
the people, I'll choose the former.
[snip]
I aim to create the least frustration for the user.
Of course, not forcing a new window upon the user in the first place is truly in the user's best interests.
Who said anything about forcing? These are thumbnails. If they want to view
a larger image, it's their choice. Besides, most people are familiar with
maneuvering windows that they decide to open... hence the operating system
name.
"Randy Webb" <Hi************@aol.com> wrote in message
news:rM********************@comcast.com... Applebrownbetty wrote:
"Randy Webb" <Hi************@aol.com> wrote in message news:5P********************@comcast.com...
Applebrownbetty wrote:
Hi,
I'd like to append/amend the following code from the Dreamweaver
extension
"Open Picture Window Fever" for the ability to center the PopUp window:
Ditch it and start over.
Why?
Because every single snippet of DW generated code I have ever read is utter junk and can be re-written to be more readable, more predictable, and less error-prone.
By default, it allows the window to be offset on the left and top, but
does
not include a centering option.
Nah, it just thinks it can offset windows on my PC.
Obviously you mean something here... but lack the time/energy/patience
to write it outright (in which case you shouldn't have posted it), so I'll
skip it.
No need to skip it. I will explain what isn't obvious to you. You can't specify where to open a window on my computer because I have explicitly disabled it. I have my windows where *I* want them, and thats where they will open.
I'm thinking it would include something like
(screen.width-imageWidth)/2;
somewhere but not sure how do go about doing this.
First, ask yourself what makes anybody think that I want a popup window that is in the center of my desktop?
My answer is that it is an enlarged thumbnail image, and on a big
desktop it would mean less mouse movement if it were near the center where the thumbnails are as opposed to the left corner where most of them popup.
So you think that opening a window where the user is not used to it being opened is advantageous? I don't.
And I agree with you. However, your implication that having a window open in
the center is "unfamiliar" to users is false in my opinion. If anything, it
is more plainly seen and not overlooked, which, if they bother clicking on a
thumbnail, IS advantageous. My desktop is 2560 pixels wide, so the popup window would sit (or attempt to sit) in between the two
monitors.
And the percentage of people in your situation is? Right, less than 0.5%
I'd guess. This might be a problem if you weren't able to move it
yourself... but even if it was in the center, you could.
It can't be opened in the center but thats irrelevant. Let it open where the user is accustomed to it opening and it totally removes your
"problem".
Not really. My "problem" was aesthetic (which as we all know is subjective
so please don't try and argue which way is better aesthetically) combined
with functionality. My last paragraph states what I was looking for. Open a window, let the *user* decide where to put it.
Whether it opens in the top left or center, it does let the user decide where to put it, since it's movable. I aim to create the least
frustration for the user. When they click on an image and it pops up nearby, that's
more user friendly and looks better IMO than an image on the top left of the
big monitor. It's framed nicer.
So its more "user friendly" to open a window where they don't expect it? I think not.
See above.
On Tue, 02 Nov 2004 04:41:34 GMT, Applebrownbetty
<applebrown@deletethisspace_gamebanshee.com> wrote:
[snip] If it looks really good for 99% of the people as opposed to "is functional" for 100% of the people, I'll choose the former.
You quoted the main point of my post (below), yet you seem to ignore it.
Most people do not like new windows, no matter where they are positioned.
Years of abuse have turned them into things of irritation, and
irrespective of that fact, they aren't viewed as the most user-friendly
feature.
[snip] Of course, not forcing a new window upon the user in the first place is truly in the user's best interests.
Who said anything about forcing?
You did, the moment you started opening new windows. If the user wants to
view the image, you are forcing them to see it in a new window. Whether
the user might want that or not, they have no choice in the matter. Your
alternative, don't view the image, is hardly useful, is it.
Every graphical browser I have ever used[1] allows the user to open any
link in a new window. Modern browsers make this very simple for users with
three-button mice. It's not like you're providing something that browsers
can't do themselves.
[snip]
Mike
[1] I can think of seven by name.
--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
"Michael Winter" <M.******@blueyonder.co.invalid> wrote in message Most people do not like new windows, no matter where they are positioned. Years of abuse have turned them into things of irritation, and irrespective of that fact, they aren't viewed as the most user-friendly feature.
And what source do you have for "most people do not like new windows"? Most
people I'd wager are still used to thumbnails opening up, no? That is the
essense of this thread, so if you're talking generalities, it's off topic.
[snip]
Of course, not forcing a new window upon the user in the first place is truly in the user's best interests. Who said anything about forcing?
You did, the moment you started opening new windows. If the user wants to view the image, you are forcing them to see it in a new window.
And if you put them inline with CSS, your "forcing" them to download the
larger picture right? Which is preferable? Either way, you're "forcing" the
viewer to view the page how you want them to, the moment you start writing
HTML.
Whether the user might want that or not, they have no choice in the matter. Your alternative, don't view the image, is hardly useful, is it.
Every graphical browser I have ever used[1] allows the user to open any link in a new window.
Again, we are talking about thumbnails. See above.
Applebrownbetty wrote: "Randy Webb" <Hi************@aol.com> wrote in message news:rM********************@comcast.com...
Applebrownbetty wrote:
>I'm thinking it would include something like
(screen.width-imageWidth)/2;
>somewhere but not sure how do go about doing this.
First, ask yourself what makes anybody think that I want a popup window that is in the center of my desktop?
My answer is that it is an enlarged thumbnail image, and on a big desktop it would mean less mouse movement if it were near the center where the thumbnails are as opposed to the left corner where most of them popup. So you think that opening a window where the user is not used to it being opened is advantageous? I don't.
And I agree with you. However, your implication that having a window open in the center is "unfamiliar" to users is false in my opinion. If anything, it is more plainly seen and not overlooked, which, if they bother clicking on a thumbnail, IS advantageous.
If you open your browser, open a website, right click a link and open in
a new window, or click a link with a target attribute, or open a window
with window.open, Its going to open in the same predictable location
every time. Once you start moving that window, you have just caused your
users to scratch there heads and ask "What the hell just happened?".
And, "Why isn't it where I expect it to be?". That is not just me, its
human nature. You get used to things being where they are and when they
aren't there, it confuses. And the moving of windows is precisely why I
have it disabled. My desktop is 2560 pixels wide, so the popup window would sit (or attempt to sit) in between the two monitors.
And the percentage of people in your situation is? Right, less than 0.5% I'd guess. This might be a problem if you weren't able to move it yourself... but even if it was in the center, you could.
It can't be opened in the center but thats irrelevant. Let it open where the user is accustomed to it opening and it totally removes your "problem".
Not really. My "problem" was aesthetic (which as we all know is subjective so please don't try and argue which way is better aesthetically) combined with functionality. My last paragraph states what I was looking for.
<quote>
I'd like to append/amend the following code from the Dreamweaver
extension "Open Picture Window Fever" for the ability to center the
PopUp window:
</quote>
That is the first line of your original post. From that statement, you
want to center a popup. Stop trying to center the popup and that
"problem" goes away.
This is your last paragraph before your code:
<quote>
I'm thinking it would include something like (screen.width-imageWidth)/2;
somewhere but not sure how do go about doing this.
</quote>
What exactly happens when you try that? Or did you even try?
And no, I am not going to try to wade through some DW crap code to
figure out what its trying to do (DW code nor any add-on code).
To get the top of the window, use screen.height.
When you get it all worked out, its easier and more reliably to attempt
to let the popup resize itself and move itself. It can know its
dimensions a lot easier.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
On Tue, 02 Nov 2004 16:33:18 GMT, Applebrownbetty
<applebrown@deletethisspace_gamebanshee.com> wrote:
[snip] And what source do you have for "most people do not like new windows"?
The number of search results returned on the subject seems to suggest a
trend, but also one of the best-known people in the field of
human-computer interaction, Jakob Nielsen.
Most people I'd wager are still used to thumbnails opening up, no?
Really? I see quite a mixture.
[snip] If the user wants to view the image, you are forcing them to see it in a new window.
And if you put them inline with CSS, your "forcing" them to download the larger picture right? [...]
Huh? Where did that come from? No, you link to the image. The user can
then choose to open the image in a new window, or replace the current
content and later use the Back button.
Either way, you're "forcing" the viewer to view the page how you want them to, the moment you start writing HTML.
What kind of nonsense statement is that? Of course you have to suggest
some form of layout for the document, but as long your decisions are
remotely sensible, a layout isn't even comparible to forcing an obtrusive
new window on the user.
[snip] Every graphical browser I have ever used[1] allows the user to open any link in a new window.
Again, we are talking about thumbnails. See above.
How does my comment not apply?
You seem to be more interested in what *you* want. If that's the case,
please don't waste the time of either one of us by replying.
Mike
--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
"Michael Winter" <M.******@blueyonder.co.invalid> wrote in message
news:opsguq5acgx13kvk@atlantis... Most people I'd wager are still used to thumbnails opening up, no? Really? I see quite a mixture.
That would support my statement. And if you put them inline with CSS, your "forcing" them to download the larger picture right? [...]
Huh? Where did that come from? No, you link to the image. The user can then choose to open the image in a new window, or replace the current content and later use the Back button.
Opening an image where it takes up only a small portion of a large screen
with a plain background is, in my opinion, an ugly way to do it. Either way, you're "forcing" the viewer to view the page how you want them to, the moment you start writing HTML. What kind of nonsense statement is that? Of course you have to suggest some form of layout for the document, but as long your decisions are remotely sensible, a layout isn't even comparible to forcing an obtrusive new window on the user.
On this we'll have to agree to disagree. I don't believe they're as
obtrusive as you, especially when it's supported by a common enough action.
You seem to be more interested in what *you* want.
You seem intent on getting people to adhere to your philosophy, and
admonishing those who disagree.
On Wed, 03 Nov 2004 03:01:36 GMT, Applebrownbetty
<applebrown@deletethisspace_gamebanshee.com> wrote: "Michael Winter" <M.******@blueyonder.co.invalid> wrote in message news:opsguq5acgx13kvk@atlantis...
[ABB]: Most people I'd wager are still used to thumbnails opening up, no?
Really? I see quite a mixture.
That would support my statement.
If you think so. I don't.
Perhaps we perceive "used to" differently. Experienced, yes. Common, no.
[snip]
[...] especially when it's supported by a common enough action.
That action is becoming more and more unreliable. You seem to be more interested in what *you* want.
You seem intent on getting people to adhere to your philosophy,
Yes, because the practice of forcing new windows is shown to be
undesirable. Whether a large or small number of users object to them isn't
of much consequence as a good design makes new windows unnecessary in most
cases.
and admonishing those who disagree.
I am always happy to accept differing opinions, but only when a good
argument is made. You haven't made that argument so I'm not about to
agree. If you feel I've been overly aggressive, then please accept my
sincere apologies.
As neither of use are going to change our respective positions, might I
suggest the discussion ends here.
Mike
--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Randy Webb wrote:
[snip]
Because every single snippet of DW generated code I have ever read is utter junk and can be re-written to be more readable, more predictable, and less error-prone.
But this is not DW generated code, and your assertion "every single
snippet of DW generated code I have ever read is utter junk" sounds
uninformed to me.
Mick
Mick White wrote: Randy Webb wrote: [snip] Because every single snippet of DW generated code I have ever read is utter junk and can be re-written to be more readable, more predictable, and less error-prone.
But this is not DW generated code, and your assertion "every single snippet of DW generated code I have ever read is utter junk" sounds uninformed to me.
You are more than welcome to post some DW created code here to "inform"
me then. But I will repeat what I said
"Every single snippet of DW generated code I have ever read"
is utter JUNK.
Now, unless they have changed the garbage code it produces in the last 6
months or so, my assertion remains. If its been changed, and DW code is
posted thats actually worth a wooden nickel, I will change my mind.
Until I see different though, it remains JUNK CODE.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Willem van Isselmuden |
last post by:
Hello,
I've a problem I hava a page with different popup windows,
when I hit a link the first one pops up and with the first open i would like
to hit the second link in the parent page so the...
|
by: Jamie Jackson |
last post by:
The crux of the problem is I only know if the popup *has been* opened,
but not if it *is* open. Therefore, the script doesn't know whether to
simply refocus, or whether to popup a fresh window.
...
|
by: Moon |
last post by:
Seems I still haven't got the hang of all those window generating code
in Javascript. I've got a page with about 15 photo thumbnails. When you
click on a thumbnail a new window pops up which shows...
|
by: Obantec Support |
last post by:
Hi
i leached some code and strung together a popup i need for a page with 5
help buttons.
Now i could use 5 scripts and pre-load the values but i would rather get a
better understanding of how...
|
by: Treetop |
last post by:
I would like to pass text to a popup window to save creating a new
html file for each help topic.
I would like to have a value for the heading, a value for the text,
code for printing the help...
|
by: E Michael Brandt |
last post by:
I have been lurking here for some time, and now would like to ask a
question of you clever coders:
My JustSo PictureWindow 3 Extension for Dreamweaver has stumbled in the
face of the new Opera...
|
by: Chris Leffer |
last post by:
Hi.
I wrote a small routine that opens popup windows. The code works well,
but I did a small change to center the popup window and this change does
not work. I can't understand why. That's the...
|
by: anthony.turcotte |
last post by:
Hi,
I've looked for a solution to this problem on google, read posts in
this newsgroup and I still haven't found anything that could help me.
Here's the scenario.
1. User accesses...
|
by: John Pote |
last post by:
1. Horizontal centering a <divin browser window.
The current trend seems to be to place page content in a fixed width area in the middle of the
browser window. How is this achieved? If I use a...
|
by: Rina0 |
last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
| |