Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8555953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:14:35+00:00 2026-06-11T15:14:35+00:00

Is it possible to do something like this while (view.mouseover == true) { preform

  • 0

Is it possible to do something like this

while (view.mouseover == true) {
    preform action
}

I want to have an action repeat for as long as the mouse is over a specific view.
(asked on the laszlo-user mailing list)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:14:36+00:00Added an answer on June 11, 2026 at 3:14 pm

    Well, it looks like you answered your own question while I was testing my solution to make sure it worked correctly, but here is an alternative solution that works under OpenLaszlo 4.9.0 SWF10 and OpenLaszlo 4.9.0 DHTML run-times:

    <canvas width="1000" height="665" debug="true">
    
      <view id="v" bgcolor="0xcccccc" width="200" height="200">
    
        <!--- @param boolean mouseisover: true when the mouse is over -->
        <attribute name="mouseisover" type="boolean" value="false" />
    
        <!--- @keywords private -->
        <!--- @param lz.Delegate dlgt_repeat: stores the lz.Delegate object --> 
        <attribute name="dlgt_repeat" type="expression" />
    
        <!--
        Called when the 'onmouseover' event occurs
        -->
        <handler name="onmouseover">
    
          // Step 1) unregister any existing delegate 
          // mark it for garbage collection 
          // and prevent its event from triggering:
    
          if (this['dlgt_repeat'])
            this.dlgt_repeat.unregisterAll(); 
    
          // Step 2) update this.mouseisover flag:
    
          if (!this.mouseisover)
            this.setAttribute('mouseisover', true);
    
          // Step 3) create an event Delegate and call it 
          // on the next application idle event:
    
          var objDlgt = new lz.Delegate(this, 'doSomething');       
          this.setAttribute('dlgt_repeat', objDlgt);
    
          lz.Idle.callOnIdle(this.dlgt_repeat);
    
        </handler>
    
        <!--
        Called when the 'onmouseout' event occurs
        --> 
        <handler name="onmouseout">
    
          // Step 1) unregister any existing delegate 
          // mark it for garbage collection 
          // and prevent its event from triggering: 
    
          if (this['dlgt_repeat'])
            this.dlgt_repeat.unregisterAll();   
    
          // Step 2) Update this.mouseisover flag:
    
          if (this.mouseisover)
            this.setAttribute('mouseisover', false);    
    
        </handler>
    
        <!--- @keywords private -->
        <!--- 
        Called on application idle event by lz.Idle repeatedly 
        when the mouse is down.
    
        @param ??? objDummy: required for SWF9+ run-times for methods 
        called by delegates due to AS3 (ActionScript3 compiler 
        requirements). Just set default to null to make compiler 
        happy and ignore...
        -->
        <method name="doSomething" args="objDummy=null">
        <![CDATA[
    
          // Note: CDATA allows '&&' to be used in script below, 
          // alternatively omit CDATA and use '&amp;&amp;' instead
          // of '&&'
    
          // Step 1) Execute your code you want to run here:  
    
          if ($debug) Debug.debug('Do something...');
    
          // Step 2): If mouse is still over and the event 
          // delegate exists then schedule the event to be 
          // executed upon the next application idle state:
    
         if (this.mouseisover && this['dlgt_repeat'] != null)
           lz.Idle.callOnIdle(this.dlgt_repeat);
    
       ]]>
       </method>
    
        <text text="Move mouse over" />
    
      </view>
    
    </canvas>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is it possible to do something like this in JSTL: <div class=firstclass<c:if test='true'> someclass</c:if>>
I was wondering if it was possible to do something like this. I want
i have view which looks something like this : <% using (Ajax.BeginForm(new AjaxOptions {
Is it possible to do something like this in Java? Object[] objArray = {
Is it possible to do something like this? public function something() { $thisMethodName =
Is it possible to accomplish something like this using linqtosql? select * from table
is it possible to do something like this in PHP 5.2.1? abstract class Test
Is it possible to use something like this wrapper with fluent configuration? http://jeffreypalermo.com/blog/use-this-nhibernate-wrapper-to-keep-your-repository-classes-simple/ If
Is it possible to do something like this in C#? logger != null ?
Is it possible to do something like this: INSERT INTO table(col1, col2) VALUES(something_from_another_table, value);

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.