Dear list
the title say it all, having functioned both in a projector and in the
director editor, the "go to url" behaviour has started throwing up script
errors :(
I use it in a MIAW that acts as the navigation bar for the main movie. the
same sprite has a tooltip behaviour and a rollover behaviour (included at
the end of this message.)

in my xtras folder I have the ineturl xtra. Does this built in behaviour
need another xtra?? is there another reason why it might suddenly stop
working ?

cheers wobbly
from a windswept and rainy Eastbourne E. Sussex.

rollover behaviour

Property spriteNum -- this is an internal property From Director hence it's
green

Property pNormalMbr -- this is the non active picture

Property pOverMbr -- the picture for when the mouse is over the button to
let the user know its active

Property pClickedMbr-- the picture ti let the user know they selected this
button

Property pClickedSoundMbr -- the sound for the button press

on mouseWithin me

set the member of sprite the currentSpriteNum to pOverMbr

-- the mouse is over, change the picture to the over picture to alert the
user this button is active

sprite(spritenum).cursor =280

end

on mouseLeave me

set the member of sprite the currentSpriteNum to pNormalMbr

-- user changes mind change picture to normal state

sprite(spritenum).cursor =-1

end

on mousedown me

set the member of sprite the currentSpriteNum to pClickedMbr

end

on mouseUp me

set the member of sprite the currentSpriteNum to pNormalMbr

-- the user wants this to happen change the picture to clicked

sound(1).queue(member(pClickedSoundMbr))

sound(1).play()

sprite(spritenum).cursor =-1


end

on getPropertyDescriptionList me

set descriptionList = []

--dialog box for property pNormalMbr

addProp descriptionList, #pNormalMbr, [#comment"normal state",
#format#bitmap, #default" "]

--dialog box for property pOverMbr

addProp descriptionList, #pOverMbr, [#comment"over state", #format#bitmap,
#default" "]

--dialog box for property pClickedMbr

addProp descriptionList, #pclickedMbr, [#comment"click state",
#format#bitmap, #default" "]

--dialog box for property pClickedSoundMbr

addProp descriptionList, #pClickedSoundMbr, [#comment"click state sound",
#format#sound,#default" "]

return descriptionList

end




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.325 / Virus Database: 182 - Release Date: 19/02/2002

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to