Contents
Articles
Behaviors
Books
Director News
Director Web Sites
FAQ
Games
Mailing Lists
News Groups
Project Examples
Reviews
Software
Tools
Useful Web Sites
Utilities
Xtras

Don't miss these
Increasing the effeciency of playback
Generic behavior to check Windows Platform
QTMovieXtra
Go Loop
Sony UK: a New Director Case Study by INM
simSock Xtra
Flash Component Label
TransMac
OnWine – shocking in all dimensions
Protected Code
 

 

 

Behavior Link Email

Added on 7/6/2000

 

Compatibilities:
behavior D7 D8 Mac PC Shockwave

This item has not yet been rated

Author: KumarK

Link Email

---- written for Director 8 ---
---- Kumar.K ----
---- kumark@icode.com ----

------ Custom Properties ------
property  WhereTo,UrlName,MyCursor,standardcursor,spritenum

------ Get Behavior Description List ------
on getPropertyDescriptionList me
  set description = [:]
  if the currentspritenum = 0 then
    addProp description, #UrlName, [#comment: "Enter EmailId You want to Link :" ,#format:#String,#default:"kumark@icode.com"]    
    addProp description, #WhereTo, [#comment: "Where To Attach ?" ,#format:#String,
    #range:["On EnterFrame","On ExitFrame"],#default:"On EnterFrame"]
  else
    addProp description, #UrlName, [#comment: "Enter EmailId You want to Link :" ,#format:#String,#default:"kumark@icode.com"]  
    addProp description, #MyCursor, [#comment: "Select the Cursor :" ,#format:#Cursor,#default:280]      
    addProp description, #WhereTo, [#comment: "Where To Attach ?" ,#format:#String,
    #range:["On MouseUp","On MouseDown","On MouseEnter","On MouseLeave"],#default:"On MouseUp"]    
  end if    
  return description
end getPropertyDescriptionList
------ Get Behavior Description List ------

-- Get Behavior description --
on getBehaviorDescription me
  return
    "GO to URL" & RETURN & RETURN &
    "This will launch the default Email Editor Program with the Emailid as TO Option. " & RETURN &
    "PARAMETERS:" & RETURN &
    "* EmailId" & RETURN &
    "* Cursor" & RETURN &
    "* Where To assign this Script."
end getBehaviorDescription
-- Get Behavior description --

------ Availbale for both Frame and Sprite Script ------
on isOKToAttach (me, aSpriteType, aSpriteNum)
  case aSpriteType of
    #graphic:
      return true
    #script:
      return true
  end case
end isOKToAttach
------ Availbale for both Frame and Sprite Script ------

-- Events --
on beginsprite
  standardcursor=sprite(spritenum).cursor
end

on EnterFrame me
  if WhereTo = "On EnterFrame" then
    emailid="mailto:"&UrlName
    gotoNetPage emailid
  end if
end EnterFrame

on ExitFrame me
  if WhereTo = "On ExitFrame" then
    emailid="mailto:"&UrlName
    gotoNetPage emailid
  end if
end ExitFrame

on MouseUp
  if WhereTo = "On MouseUp" then
    emailid="mailto:"&UrlName
    gotoNetPage "mailto:kumark@icode.com"
  end if
end MouseUp

on MouseDown
  if WhereTo = "On MouseDown" then
    emailid="mailto:"&UrlName
    gotoNetPage emailid
  end if
end MouseDown

on MouseEnter
  sprite(spritenum).cursor=MyCursor
  if WhereTo = "On MouseEnter" then
    emailid="mailto:"&UrlName
    gotoNetPage emailid
  end if
end MouseEnter

on MouseLeave
  sprite(spritenum).cursor=standardcursor
  if WhereTo = "On MouseLeave" then
    emailid="mailto:"&UrlName
    gotoNetPage emailid
  end if
end MouseLeave
------ Events ------  

 


Contact

MMI
36 South Court Sq
Suite 300
Newnan, GA 30263
USA

Send e-mail