let flipOptions = {
“duration”: 350,
“delay”: 0,
“direction”: “left”
}
$w(“#line7”).hide(“flip”, flipOptions)
let slideOptions = {
“duration”: 350,
“delay”: 0,
“direction”: “top”
}
$w(“#box2”).hide(“slide”, slideOptions)
}
export function box2_mouseIn(event, $w) {
let slideOptions = {
“duration”: 350,
“delay”: 0,
“direction”: “top”
}
$w(“#box2”).show(“slide”, slideOptions)
$w(“#line7”).show()
}
export function box2_mouseOut(event, $w) {
let slideOptions = {
“duration”: 950,
“delay”: 0,
“direction”: “top”
}
$w(“#box2”).hide(“slide”, slideOptions)
$w(“#line7”).hide()
}
I have button25 if mouse on >>box2 shown (box2 is a list)
if the mouse move from button25 to box2 , box 2 still shown. (this is what I want, to select from the list))
if the mouse out of button 25> box2 hide, and if the mouse out of box 2 > box 2 hide (and this is what I want) …the code was like this and it is working good :
export function button25_mouseIn(event, $w) {
$w(“#line7”).show()
$w(“#box2”).showe()
}
export function button25_mouseOut(event, $w) {
$w(“#line7”).hide()
$w(“#box2”).hide()
}
export function box2_mouseIn(event, $w) {
$w(“#box2”).show()
$w(“#line7”).show()
}
export function box2_mouseOut(event, $w) {
$w(“#box2”).hide()
$w(“#line7”).hide()
}
but, when I add effectopthion to the button25 mouseout then if the mouse move from button25 to box2> box2 will hide even if the code tell box2 mousein>> box2 show!!
this is the code after I add effectoptions:
export function button25_mouseIn(event, $w) {
$w(“#line7”).show()
$w(“#box2”).showe()
}
export function button25_mouseOut(event, $w) {
let flipOptions = {
“duration”: 350,
“delay”: 0,
“direction”: “left”
}
$w(“#line7”).hide(“flip”, flipOptions)
let slideOptions = {
“duration”: 350,
“delay”: 0,
“direction”: “top”
}
$w(“#box2”).hide(“slide”, slideOptions)
}
export function box2_mouseIn(event, $w) {
$w(“#box2”).show()
$w(“#line7”).show()
}
https://drmajedabdullah.wixsite.com/pearlteethcl inics
any help please