Displaying 20 results from an estimated 5000 matches similar to: "MS Access XP and Samba Print Queues"
2005 Jan 24
3
Visual Studio/Samba Compile from Shares issue
I've run into a problem in which Visual Studio 6.0 gives an Internal
Compiler Error message when compiling from a samba share. The project
compiles fine locally and from shares on Windows machines. To me this
suggests that the issue is with Samba. I've tried adding full access to
the share where the project is housed, but to no avail. Any ideas? We
are running samba 3.0.9-1.3E.2
2006 Jan 11
0
RE: Event.observer - unordered list problems
Hi Marco (I forwarded this also to the mailing list and removed the
picture as it wasn''t necessary to include to the mailing list so
everyone can hear the general techniques),
I recently had a very similar problem with my project. The problem
arises because whenever you move the mouse to ANY element, the previous
element that the mouse was over gets a mouseout event, even if it
2006 Jan 11
0
RE: RE: Event.observer - unordered list problems
I just realized I made a mistake... in the first numbered solution, the
!= should be ==
________________________________
From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
[mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Ryan
Gahl
Sent: Wednesday, January 11, 2006 2:28 PM
To:
2006 Mar 09
2
handling events: mouseover, etc.
I''m having a hard time figuring out how to handle mouseover events w/
Ruby on Rails (esp. whether Javascript takes over, or the Controller
should be used).
I''m currently trying to create a simple mouseover info box showing the
definition, and some other information, when certain words are
moused-over.
Say I have an array of Word objects that have 1) word name 2) definition
2006 Mar 04
1
RE: Question about event listener highlighting withchild elements
1. Create a separate class that has your highlight/unhighlight behavior
in it, and extend just the element you want to highlight with that
class... like this (also allows you to easily apply this behavior
elsewhere when you need it in the future):
Object.extend(this.el, HighlightBehaviorClass.prototype)
2. When defining your event handlers, assign them to variables so you
have a
2006 Feb 09
3
Draggables and Droppable performance (tips)
Hi all. I have some performance tips to share. I had been having
problems with the overall performance of the drag/drop objects. This is
due largely to the fact that my project really pushes the limits
(potentially thousands of draggables and hundreds of droppables in the
document at a time, although that is the extreme case).
Something I discovered is that the performance of dragging goes WAY
2008 Jun 20
2
All Wine dialog boxes have the mouse symbol out of position
I've just installed Wine.
Every Wine dialog box/window, on mouseOver, jumps the mouse cursor left and up, but sends mouse clicks to where the mouse would/should be.
In other words, when I roll the mouse over any Wine box, the arrow symbol immediately moves left and up, then subsequently moves in relation to how I move the mouse, until the original mouse location exits the dialog box, when the
2005 Dec 08
6
Bug in Effect.Highlight ?
Hi All,
I''ve just discover scriptaculous and it is a really good library. Even
if I have some difficulties with short syntax in javascript code :/
I have a strange behaviour with Effect.Highlight, and as it''s said on
bug report page :
"It''s also a good idea to discuss this on the Mailing List beforehand,
maybe it''s already known and in the works, or it
2006 Jun 20
4
Invoking MouseOver using link_to tag ?
Hi,
How can we trigger a JavaScript built in function from a <%= link_to %>
ie. i have the below statement in my view. I want to invoke a JavaScript
function on "MouseOver" of this below text (''TestingMouseOverEvents'').
<%= link_to "TestingMouseOverEvents" , :controller => "login", :action
=> "logout"%>
Note: The
2006 Mar 04
0
Question about event listener highlighting with child elements
I have created a JavaScript object which is initialized for some input
fields, fieldsets, and divs on the page. With each object i attach a
mouseover and mouseout event that highlights and un-highlights. Also on
mouseout i am trying to display the id of the object to a console. The
highlighting works except for cases when an object is the child of another
object. In this case both are highlighted
2005 Aug 31
0
Event listener problems
I''ve been using the bindAsEventListener function and registering
various events I want to monitor and have had some problems which
might be of interest.
First I have been having a crash on Safari 2.0 and 2.0.1. The
logical place to call Event.stopObserving to de-register the listener
is actually within the listener once it has finished its task. eg
register a mouseup listener
2009 Nov 06
0
r54 committed - ...
Revision: 54
Author: freyfogle
Date: Fri Nov 6 07:21:27 2009
Log:
Marker should pass in google MarkerImage objects rather than just image
URLs if possible
http://code.google.com/p/mapstraction/source/detail?r=54
Modified:
/trunk/source/mxn.googlev3.core.js
=======================================
--- /trunk/source/mxn.googlev3.core.js Fri Oct 9 07:48:43 2009
+++
2008 May 24
1
link_to_remote, image_tag, mouseover is this possible?
Hi guys,
I was wondering if you are able to have a link_to_remote, having an
image_tag and the link_to_remote has a mouseover event that updates a
div. Does the image_tag need the mouseover event? I currently have:
<%= link_to_remote(image_tag(@p_image.public_filename(:thumb)), :update
=> "big_pic", :onmouseover => {:action => :color_change, :id =>
@p_image.id})%>
2005 Oct 31
2
Inplaceeditor and a tooltip on mouserollover?
on mouseover when using inplaceeditor it highlights in yellow. Great.
However, I want to also show a tooltip inside this div on mouseover.
Specifically, when a user is over editable text, besides the yellow
background, I want to display next to it a "delete" link. One of the things
I''ve tried is this:
<script language="JavaScript">
new
2008 Jan 16
1
Small doubts with clonePosition, Keypress and this
Hello Guys,
I comes to try to clarify some small doubts, I''m trying to create a
function that, if I positioned over this, create a box around the
cell, but I don''t want to alter values of style, I think that a good
way is create a floating table with the same dimensions, to do this, I
found "Position": overlap but says it''s obsolete, then I found
clonePosition
2008 Apr 16
3
non-bubbling mouseover/mouseout
First, I have only played with Prototype for about a month, so I don''t
know it well. Second, I am more of a server-side programmer than a
client-side programmer.
In my page, I have a div that appears as a result of a link mouseover
event. This div is nested within another div that houses everything
(id = ''menuContainer''). I want the resulting div (which is a submenu)
2005 Dec 20
1
Can''t use mouseover with auto_complete_field
Good afertnoon.
I''m trying to use a mouse over event:
Event.observe("name_auto_complete", "mouseover",
function(){alert("auto_complete")} );
with the auto_complete_field bellow.
<%= text_field_tag("name") %>
<%= content_tag("div", "", "id" => "name_auto_complete") %>
<%=
2011 Aug 10
1
Listbox Question - Danish accounting program SummaSummarum
Dear Wine board. This is my first Post.
This wine bug has been bothering me for two years now so now i think it is time to try and have it fixed.
The first step is to figure out how to phrase my bug with the correct terms.
As I don't know the names of the widgets since I haven't developed windows-application for some 10 years, I hope that someone will look at my screencast which i recorded
2010 May 21
1
i have question about ARMAX
Pro,
I am PhD student , i am usuing Rational Expectations Model, I want to model different timeseries with ARMAX models in R because I think that ARMAX models will map best to these data. I want know the steps to use R for ARMAX models
I coudn't find any solutions in the R help and therefore I want to ask all of you.
Does anyone know how to solve this problem???
That would be
2005 Aug 22
1
Docs for prototype.js
I just found this (by way of comp.lang.javascript), and article on the
use of and reference for prototype.js.
http://www.sergiopereira.com/articles/prototype.js.html
I haven''t checked the details, but it looks pretty good. The author
points out that it is un-official. Sam, if you''re reading this, is
there a chance of giving it an official blessing?
Michael
--
Michael