Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > MacCar > ICE3


Reply
 
Share Thread Tools Display Modes
Old 10-30-2009, 05:07 PM   #16
Admin. Don't bug or I'll byte.
 
Bugbyte's Avatar
 
Join Date: Sep 2004
Location: Corning, NY
Posts: 6,143
Bugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to beholdBugbyte is a splendid one to behold
Aha! It used to be that you couldn't get at the spaces using AS.

Keep up the good work! It's going to be a great addition to the OS X installs.
__________________
Want to:
-Find out about the iBug?
-Stop being a newbie? Take a look at the FAQ Emporium?
-Find out about carPC's in just 5 minutes? View the Car PC 101 video
-Help me kill my car PC
-Watch live video streams from my mobile PC? Check it out here.
-Where is the iBug?
Bugbyte is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 10-30-2009, 07:22 PM   #17
Constant Bitrate
 
VmtSquad's Avatar
 
Join Date: May 2007
Location: Montréal, Quebec, Canada
Posts: 192
VmtSquad is an unknown quantity at this point
Yep, simply need to find the best way to use those scripts Thanks again BugByte!!! Coudnt do this without ur help!
__________________
VmtSquad - I sold my soul to Honda!
Final Install
CarPC progress: 95%
VmtSquad is online now   Reply With Quote
Old 11-17-2009, 05:58 AM   #18
Newbie
 
pulsarsimon's Avatar
 
Join Date: Nov 2009
Location: Melbourne Australia
Posts: 39
pulsarsimon is on a distinguished road
I'm a complete noob to AS, but this looks very interesting.

since ICE³ doesn't support CD-Audio, I want to set the insert audio CD to pause ICE³ (in space1), then switch to space2, open iTunes and start playing..

I can trigger the script from 'insert AudioCD" in the preferences, and I can set iTunes to start playing the CD straight away.. that's easy. but ICE³ still plays too - so the sound comes from both players

as I said, I may need some hand-holding here from a generous person - at least the list of button names, and a generic script (like the one above *thanks*).

I'm getting more excited now
__________________
MacMini in an Alfa? - Why not!
pulsarsimon is offline   Reply With Quote
Old 11-17-2009, 10:30 AM   #19
Constant Bitrate
 
VmtSquad's Avatar
 
Join Date: May 2007
Location: Montréal, Quebec, Canada
Posts: 192
VmtSquad is an unknown quantity at this point
lol, so If I understand you need the script that would simply PAUSE the music from ICE3 ?

It may be tricky since ICE3 doesnt have the AUDIO commands on the HOME page, I'll run some tests and let you know what could be done

EDIT: Here's the simple scripts that check if ICE3 is running, if not NO command are sent, If it is running, it sends the right command to PAUSE or UNPAUSE (yes its the same command for both command)

NOTE: the following code only pause the music from AUDIO (video below)
Code:
if appIsRunning("ICE³") then tell application "System Events" tell process "ICE³" click button "Pause" of group 1 of window 1 end tell end tell end if on appIsRunning(appName) tell application "System Events" to return name of every process contains appName end appIsRunning

NOTE: the following code only Pause the VIDEO

Code:
if appIsRunning("ICE³") then tell application "System Events" tell process "ICE³" click button "Pause" of group 1 of sheet 1 of window 1 end tell end tell end if on appIsRunning(appName) tell application "System Events" to return name of every process contains appName end appIsRunning

This code could be even BETTER if we could check on which ICE3 screen we are, but I didnt see any way to achieve this FOR NOW! I hope this is helping a little

Let me know if this fits ur needs!
__________________
VmtSquad - I sold my soul to Honda!
Final Install
CarPC progress: 95%

Last edited by VmtSquad; 11-17-2009 at 11:09 AM.
VmtSquad is online now   Reply With Quote
Old 11-17-2009, 11:27 AM   #20
Constant Bitrate
 
VmtSquad's Avatar
 
Join Date: May 2007
Location: Montréal, Quebec, Canada
Posts: 192
VmtSquad is an unknown quantity at this point
Took me couple minutes to figure a way to check on which PANEL ICE3 is.

NOTE: The following CODE checks if the "Coverflow view" button is present, if not...nothing to do. If the button name is present, it clicks on the "Coverflow view" and then click PAUSE

I will modify this script later to put the PANEL name into a variable and use it for all my scripts but for now...here's the script

Code:
if checkICE3Panel("Coverflow View") then tell application "System Events" tell process "ICE³" click button "Coverflow View" of group 1 of window 1 click button "Pause" of group 1 of window 1 end tell end tell end if on checkICE3Panel(ButtonName) tell application "System Events" tell process "ICE³" to return name of every button of group 1 of window 1 contains ButtonName end tell end checkICE3Panel

__________________
VmtSquad - I sold my soul to Honda!
Final Install
CarPC progress: 95%
VmtSquad is online now   Reply With Quote
Old 11-17-2009, 11:34 AM   #21
Constant Bitrate
 
VmtSquad's Avatar
 
Join Date: May 2007
Location: Montréal, Quebec, Canada
Posts: 192
VmtSquad is an unknown quantity at this point
I would loooooove to have the SOURCE CODE of ICE3

GUYS PM me if this is possible!
__________________
VmtSquad - I sold my soul to Honda!
Final Install
CarPC progress: 95%
VmtSquad is online now   Reply With Quote
Old 11-17-2009, 05:41 PM   #22
Constant Bitrate
 
Join Date: Feb 2008
Location: Whakatane, New Zealand
Posts: 115
srbatty is an unknown quantity at this point
Quote: Originally Posted by VmtSquad View Post
I would loooooove to have the SOURCE CODE of ICE3

GUYS PM me if this is possible!

Firstly, great work on the AS. I wouldn't know where to even start with it.

Secondly, our source code will only become available once we are tired of it. Sorry.
__________________
ICE³ Resources: http://icecubed.comoj.com/
srbatty is offline   Reply With Quote
Old 11-17-2009, 06:05 PM   #23
Constant Bitrate
 
VmtSquad's Avatar
 
Join Date: May 2007
Location: Montréal, Quebec, Canada
Posts: 192
VmtSquad is an unknown quantity at this point
Its alright good to have some news when is the new update coming?

Maybe you could integrate my script into your code and work together
__________________
VmtSquad - I sold my soul to Honda!
Final Install
CarPC progress: 95%
VmtSquad is online now   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Centrafuse, TPMS 2.1.0.9 and Vista WuNgUn TPMS Technical Support 14 08-26-2009 03:57 PM
Infill G4 front end joey4 Software & Software Development 0 05-27-2009 11:38 AM
My Own front end - from the ground up Greeno2k8 Software & Software Development 30 09-02-2008 05:51 PM
Q's about making Plugins work with Front End software strifepeddler Newbie 0 07-16-2008 12:07 AM
BASIC Stamp question Banderon General Hardware Discussion 18 05-07-2004 09:33 AM



All times are GMT -5. The time now is 12:02 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.2
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics