Sponsored links

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


Reply
 
Share Thread Tools Display Modes
Old 07-07-2006, 08:40 PM   #256
CarFrontEnd Creator
 
iamgnat's Avatar
 
Join Date: Jul 2004
Location: NoVA
Posts: 867
iamgnat is on a distinguished road
Has anyone (besides the obvious ) been able to compile AMP from the source? His example plugin will build fine but AMP fails it's dependancy check complaining about PBXTargetBuildContext.

With XCode 2.2, it gave these in a popup window and would eventually crash XCode. In 2.3, it only has one and it shows up in the Error window and is complaining about the expandedValueForString method for PBXTargetBuildContext.

I can't find any reference to either the object or the method in the code.

What i've read online so far refers to XCode plugins, but I don't have any installed.

Anyone have any ideas?

Thanks,
-dave
__________________
My pathetic worklog.
CarFrontEnd (now it's own sub-forum!!!!)
iamgnat is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 07-07-2006, 08:56 PM   #257
Constant Bitrate
 
Join Date: Feb 2005
Posts: 124
raceer is on a distinguished road
Thumbs up hmmm

Quick check, with Xcode 2.2.1
downloading now....

All good here....compiles well, on pwrbk including plugin.

HTH
Attached Images
 
__________________
__________
rgds, raceer

raceer is offline   Reply With Quote
Old 07-07-2006, 11:48 PM   #258
AMP Creator
 
aychamo's Avatar
 
Join Date: Jun 2006
Posts: 454
aychamo is on a distinguished road
Quote: Originally Posted by iamgnat
Has anyone (besides the obvious ) been able to compile AMP from the source? His example plugin will build fine but AMP fails it's dependancy check complaining about PBXTargetBuildContext.

With XCode 2.2, it gave these in a popup window and would eventually crash XCode. In 2.3, it only has one and it shows up in the Error window and is complaining about the expandedValueForString method for PBXTargetBuildContext.

I can't find any reference to either the object or the method in the code.

What i've read online so far refers to XCode plugins, but I don't have any installed.

Anyone have any ideas?

Thanks,
-dave

I have no idea what that is Try re-unarchiving it from the .zip, and then before you build do a "Clean all" on it from within XCode. FWIW I'm using XCode 2.3
__________________
-
aychamo is offline   Reply With Quote
Old 07-07-2006, 11:50 PM   #259
AMP Creator
 
aychamo's Avatar
 
Join Date: Jun 2006
Posts: 454
aychamo is on a distinguished road
Hey I've been playing around with window animations, and I actually came up with a couple of really nice little things I want to put in. Very, very FrontRow-ish/Apple ish. I guess this description doesn't really help, lol.

Raceer --- thank you, really good idea about all that stuff for the ECG. I have no real idea where to start. I'm not even sure what I want it to do. I have a lot of planning to do!
__________________
-
aychamo is offline   Reply With Quote
Old 07-08-2006, 12:45 AM   #260
Constant Bitrate
 
Join Date: Jun 2006
Posts: 126
JakobMetzger is on a distinguished road
any news on centering for 800x600
JakobMetzger is offline   Reply With Quote
Old 07-08-2006, 12:54 AM   #261
CarFrontEnd Creator
 
iamgnat's Avatar
 
Join Date: Jul 2004
Location: NoVA
Posts: 867
iamgnat is on a distinguished road
Quote: Originally Posted by aychamo
I have no idea what that is Try re-unarchiving it from the .zip, and then before you build do a "Clean all" on it from within XCode. FWIW I'm using XCode 2.3

Tried all that.

Turns out my ~/Library/Application Support/Apple/Developer Tools folder was mucked up. I nuked it and all is good now.

(raceer, thanks for letting me know it worked for you).

Thanks,
-dave
__________________
My pathetic worklog.
CarFrontEnd (now it's own sub-forum!!!!)
iamgnat is offline   Reply With Quote
Old 07-08-2006, 01:09 AM   #262
Constant Bitrate
 
Join Date: Feb 2005
Posts: 124
raceer is on a distinguished road
Quote: Originally Posted by aychamo
I have no real idea where to start. I'm not even sure what I want it to do. I have a lot of planning to do!

Ideas ? ......

http://www.dc.fi.udc.es/.aios/medwhat.htm

http%3A%2F%2Fieeexplore.ieee.org%2Fiel2%2F1028%2F1 3013%2F00594613.pdf%3Fisnumber%3D%26arnumber%3D594 613&ei=ljyvRLPjDr-aYIGsoKwH&sig2=E9oM2VMelNna9sVqEUTf-Q

http://portal.acm.org/citation.cfm?i...TOKEN=74594303

http://citeseer.ifi.unizh.ch/cabarcos96efficient.html

Rapid Prototyping In Graphic Interface Development For Medical Expert Systems
Marin, R.; Taboada, M.; Mira, J.; Delgado, A.E.; Macia, M.; Pereira, M.
Engineering in Medicine and Biology Society, 1992. Vol.14. Proceedings of the Annual International Conference of the IEEE
Volume 3, Issue , 29 Oct-1 Nov 1992 Page(s):840 - 841


Dave, yes, I too have noticed the odd corrupt file from time to time...good that all is well...
__________________
__________
rgds, raceer

raceer is offline   Reply With Quote
Old 07-08-2006, 02:00 AM   #263
QCar Creator
 
Jirka Jirout's Avatar
 
Join Date: Jul 2005
Location: Netherlands
Posts: 577
Jirka Jirout is on a distinguished road
A small hint about centering the view...

1. get rid of the window in the NIB file and replace it by an 800x480 NSView (or a subclass if you like a different appearance)

2. create an outlet for this view (named mainView for example) in the controller and connect the view to it

Then something like this - the code will create a fullscreen window (for any screen size), take the content view, add it to the window and center it.

Code:
IBOutlet NSView *mainView; --- NSRect *screen = [[NSScreen mainScreen] frame]; NSWindow *mainWindow; mainWindow=[[NSWindow alloc] initWithContentRect:screen styleMask:NSBorderlessWindowMask|NSTexturedBackgroundWindowMask backing:NSBackingStoreBuffered defer:NO]; [[mainWindow contentView] addSubview: mainView]; int xPosition = (screen.size.width - [mainView bounds].size.width)/2 int yPosition = (screen.size.height - [mainView bounds].size.width)/2 [mainView setBoundsOrigin:NSMakePoint(xPosition, yPosition)];

Jirka Jirout is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 07-08-2006, 02:37 AM   #264
AMP Creator
 
aychamo's Avatar
 
Join Date: Jun 2006
Posts: 454
aychamo is on a distinguished road
I think before I do anything regarding centering it, etc, I want to see for myself how it looks in both 800x480 & 800x600. [Or someone could send me some screenshots of both!!!!!!] I saw some page where it said the Xenarc looks kinda ****ty in 8000x600, but I wanna be sure.

If it looks fine in 800x600, then I think it would be best to redesign the UI for 800x600!
__________________
-

Last edited by aychamo; 07-08-2006 at 02:48 AM..
aychamo is offline   Reply With Quote
Old 07-08-2006, 10:32 AM   #265
Variable Bitrate
 
super-fly's Avatar
 
Join Date: Feb 2006
Location: In a van down by the river!
Posts: 226
super-fly is on a distinguished road
I can post a screen shot if you want, but my screen is an 8.4" at 800x600.
super-fly is offline   Reply With Quote
Old 07-08-2006, 10:49 AM   #266
Constant Bitrate
 
Join Date: Jun 2006
Posts: 126
JakobMetzger is on a distinguished road
yes dude, please do that super-fly. Aychamo has created this entire program and all he wants is a pic of it on 800x480 and 800x600 and no one has posted up yet! I dont have a xenarc so I cant do it. Please someone post up a pic at both resolutions.

Aychamo, why dont you just design it to be centered all the time and use something like what Jirka Jout is talking about so when is on 800x600 it will be centered but on 800x480 it will still look the same?
JakobMetzger is offline   Reply With Quote
Old 07-08-2006, 09:49 PM   #267
Variable Bitrate
 
super-fly's Avatar
 
Join Date: Feb 2006
Location: In a van down by the river!
Posts: 226
super-fly is on a distinguished road
The reason I was asking him is because he probably is getting a 7" wide screen. I don't know if he would care to see a picture of my 8.4" it, I'm assuming he wants to see a 7" running both resolutions.
super-fly is offline   Reply With Quote
Old 07-08-2006, 10:04 PM   #268
Constant Bitrate
 
Join Date: Jun 2006
Posts: 126
JakobMetzger is on a distinguished road
just take pics of both, so we can see it on everything
JakobMetzger is offline   Reply With Quote
Old 07-09-2006, 10:12 AM   #269
AMP Creator
 
aychamo's Avatar
 
Join Date: Jun 2006
Posts: 454
aychamo is on a distinguished road
Hey guys!

I just wanted to give you an update on what I've been doing w/ AMP.

I've really been tweaking the UI. I don't want to "spoil" it, but I've put some things in that I hope will blow your eyes away. Also, I've put in the ability to be able to click through the posistion in music & movies. (Meaning, there is a bar that shows the position, and you can click anywhere on the bar and it brings you to that position in the song.)

I've also been cleaning up the code a bit. I found a ton of places where I did things for the first time, and I saw much better ways of doing it. I've removed probably a hundred or so lines of old code (but added some too because of the new stuff - lol)

I have some more stuff I want to tweak/update/add before I release the next version though.

Again, thank you everyone for the support, ideas, code & everything!
Aychamo
__________________
-
aychamo is offline   Reply With Quote
Old 07-09-2006, 10:14 AM   #270
AMP Creator
 
aychamo's Avatar
 
Join Date: Jun 2006
Posts: 454
aychamo is on a distinguished road
Quote: Originally Posted by JakobMetzger
Aychamo, why dont you just design it to be centered all the time and use something like what Jirka Jout is talking about so when is on 800x600 it will be centered but on 800x480 it will still look the same?

Hey Jakob!

Well, to be honest, before I do all that, I want to see how well it looks on 800x480 vs 800x600 on a Xenarc. I've seen one picture comparison (not of AMP, just of Safari or something), and the 800x600 looked weird. If AMP looks fine in 800x600 on a Xenarc/Lilli/Whatever, then hell yeah, I want to switch the entire UI to 800x600. I think we can all think of uses for the extra 120 pixels!!

Aychamo
__________________
-
aychamo is offline   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
PC Motherboard to 1 amp or 2? hanzacra General Hardware Discussion 5 11-27-2007 03:41 AM
Amp running hot...?? Emerica2843 General Hardware Discussion 5 02-08-2006 06:40 PM
Amp running hot...?? Emerica2843 Car Audio 6 01-29-2006 08:29 PM
vw mk4 monson amp and another amp colorless Car Audio 33 10-03-2005 01:32 PM



All times are GMT -5. The time now is 09:30 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.0
Copyright © 1999 - 2008 Mp3Car.com Inc.
"VaultWiki" powered by VaultWiki v2.5.2.
Copyright © 2008 - 2009, Cracked Egg Studios.Ad Management by RedTyger
Message Board Statistics