'From etoys3.0 of 24 February 2008 [latest update: #2067] on 29 July 2008 at 2:22:53 pm'! "Change Set: FireFoxOnVista-yo Date: 29 July 2008 Author: Yoshiki Ohshima SugarLauncher looks to see if it has the src parameter from Squeak plugin on FF."! !SugarLauncher methodsFor: 'commands' stamp: 'yo 7/29/2008 14:20'! welcome: aUrl "Sent either when running from Sugar, or at regular startUp otherwise" aUrl isEmpty ifFalse: [ | url | url := (aUrl includes: $/) ifTrue: [aUrl] ifFalse: ['file:', (parameters at: 'BUNDLE_PATH'), '/', aUrl]. ^(url endsWith: '.pr') ifTrue: [Project fromUrl: url] ifFalse: [WorldState addDeferredUIMessage: [FileStream fileIn: (url copyAfter: $:)]]]. "only enter launcher if no script given on cmd line" ((SmalltalkImage current getSystemAttribute: 2) ifNil: ['']) ifNotEmpty: [^self]. Preferences eToyFriendly ifTrue: [ (self includesParameter: 'SRC') ifFalse: [ (Project named: 'Etoys Activity') ifNotNilDo: [:p | p enter]]].! !