It's always "loading" tested from safaric (mac) and firefox (linux)
Could someone put ice3 into rapidshare or similar?
Printable View
It's always "loading" tested from safaric (mac) and firefox (linux)
Could someone put ice3 into rapidshare or similar?
It's always "loading" tested from safaric (mac) and firefox (linux)
Could someone put ice3 into rapidshare or similar?
Here ya go, ask an yall receive!! lol Your lucky that I like the product and want to contribute... :P :violin:
:angrymob:
http://rapidshare.com/files/312995566/ICE3v2.1.2.dmg
Thanks, i'm going to test it :)
Its an applescript That checks on which space your ON and switch to the desired spaces.
I'm now implementing this smal code into a Widget with a GUI so we can load this into our dashboard.Code:(*CHECKS WHICH SPACE YOUR ON*)
set xxVar to 0
tell application "System Events"
tell process "SystemUIServer"
set xVar to value of attribute "AXChildren" of menu bar 1
set cVar to count of xVar
repeat with iVar from 1 to cVar
set zVar to value of attribute "AXDescription" of item iVar of xVar
try
if zVar = "spaces menu extra" then
set xxVar to iVar
exit repeat
end if
end try
end repeat
end tell
end tell
if xxVar = 0 then
display dialog "Spaces Menu Extra not installed"
else
tell application "System Events"
tell process "SystemUIServer"
set theCurrentSpace to value of menu bar item xxVar of menu bar 1
end tell
end tell
end if
(*Variable theCurrentSpace returns the SPACE UR ON*)
(*Switch to the space you like*)
if theCurrentSpace = "1" then
tell application "System Events"
tell process "Finder"
keystroke "2" using command down (*assign COMMAND+# to switch space in spaces properties*)
end tell
end tell
else
tell application "System Events"
tell process "Finder"
keystroke "1" using command down (*assign COMMAND+# to switch space in spaces properties*)
end tell
end tell
end if
The only thing is once you are into space with NAVi there's no easy way to get the dashboardBack, but I'm workin on it....
Are you good with AS or JavaScript ?
I'm good in JavaScript and quite good in AppleScript.