Go Back   The macosxhints Forums > OS X Help Requests > Applications



Reply
 
Thread Tools Rating: Thread Rating: 2 votes, 4.50 average. Display Modes
Old 03-18-2004, 09:14 PM   #81
Boutsik
Prospect
 
Join Date: Jun 2003
Location: Nyack
Posts: 27
Mail acting strange--Won't follow rules

Ever since i updated to 10.3.3 Mail refuses to follow the rules in preferences and move mail to my selected folders. It instead just lets them all sit in the main window...even when I click APPLY RULES.
What to do??
Boutsik is offline   Reply With Quote
Old 03-18-2004, 09:56 PM   #82
anthlover
Hall of Famer
 
Join Date: Apr 2003
Posts: 3,620
Hmm

Move or Delete mail.plist and recreate prefs.

Someone else might have a better answer.
anthlover is offline   Reply With Quote
Old 03-23-2004, 03:52 PM   #83
ruben_mera
Prospect
 
Join Date: Mar 2004
Location: Dominican Republic
Posts: 1
Unhappy bitchbot 1.0.2 perl IRC bot not working on panther

http://www.r1ch.net/projects/bitchbot/

This is a perl IRC bot that I used frequently on jaguar, and now after a clean panther install it doesnt work properly.

Problem: It works perfectly at first but after 1 min it quits without any reason for doing so.
ruben_mera is offline   Reply With Quote
Old 04-04-2004, 08:50 PM   #84
Sumleilmus
MVP
 
Join Date: Sep 2002
Location: /
Posts: 1,121
Broken AppleScript!

In Panther, /Library/Scripts/Finder Scripts/Trim Folder Names.scpt is kaput!

When one opens it using Script Editor [(2.0, v43), AppleScript 1.93] one can read the following text as part of the "comment" introductory to the compiled script:

-- The following line is disabled due to a Menu Manager bug
--set the source_folder to (choose folder with prompt "Pick the folder containing the folders to rename:")

When I enable that line, the script at least starts about its work by asking me to pick the folder, &c., but still ends up doing nothing.

I use this script more than a lot of others. Does anyone know a workaround for this?

I seem to have the latest version of Developer Tools and XCode Tools, not that I know how to use them, but Apple's site has various touts for "new, improved" AppleScript that prompted me to make sure they were up to date.

Any suggestions?
__________________
Sumleilmus
________
10.9.5 MacBook Pro 9,2 (13 inch, early 2013)
10.9.5 Mac Pro 3,1 (2 x 4core, 2008)
Sumleilmus is offline   Reply With Quote
Old 04-04-2004, 10:39 PM   #85
stetner
MVP
 
Join Date: Jan 2002
Location: Brisbane, Australia
Posts: 1,108
Well, it says it is disabled due to a bug, so don't expect it to work.
Code:
-- The following line is disabled due to a Menu Manager bug
-- set the source_folder to (choose folder with prompt "Pick the folder containing the folders to rename:")

try
	tell application "Finder" to set the source_folder to (folder of the front window) as alias
on error -- no open folder windows
	set the source_folder to path to desktop folder as alias
end try
The script should default to the Desktop Folder if it cannot use the 'source_folder'.

But if you pick a folder in the finder, and run the script from the applescript menu it works. Note that you must have the parent folder selected to change a directory...
__________________
Douglas G. Stetner
UNIX Live Free Or Die
stetner is offline   Reply With Quote
Old 04-05-2004, 10:51 AM   #86
Sumleilmus
MVP
 
Join Date: Sep 2002
Location: /
Posts: 1,121
My feeble wits

Thanks for the reply. I tried the script under lots of conditions, but always with the target folder(s) selected and in the frontmost finder window, and with the parent folder selected as well.

I checked the script by reactivating the disabled lines because I was unsure whether or when the cited Menu Manager conflict might have been resolved, and didn't know if an OS update that addressed that issue would necessarily reactivate the script.

I've never run the script in any other manner than from the AppleScript menu, and it has never worked (under Panther). So, I don't quite follow your meaning when you say "it works."

When I run it, it asks me for the text to trim, it asks me do I wish the beginning or the end of the name trimmed, and then when I run it it returns an error and does not alter the name of the folder.

Unsure of your meaning, I even tried moving the folder to the desktop folder and running the script. It still returned an error.

?????
__________________
Sumleilmus
________
10.9.5 MacBook Pro 9,2 (13 inch, early 2013)
10.9.5 Mac Pro 3,1 (2 x 4core, 2008)
Sumleilmus is offline   Reply With Quote
Old 04-06-2004, 02:31 AM   #87
stetner
MVP
 
Join Date: Jan 2002
Location: Brisbane, Australia
Posts: 1,108
Ok, if you have a dir like this:
see Pic1.pdf
and you want to change the 'bb b' and 'cc b' directories, you would select the aaa directory and then fire off the script from the black applescript icon in the menu bar
see Pic2.pdf
Tell it to trim ' b' (space b) from the end and you get this:
see Pic3.pdf

PS. damned if I can get an image (not externally hosted) to show up in a post.... therefore attachments. Rob, or any admin, how about a tutorial?
Attached Files
File Type: pdf Pic1.pdf (9.1 KB, 231 views)
File Type: pdf Pic2.pdf (9.3 KB, 226 views)
File Type: pdf Pic3.pdf (6.8 KB, 228 views)
__________________
Douglas G. Stetner
UNIX Live Free Or Die

Last edited by stetner; 04-06-2004 at 02:34 AM.
stetner is offline   Reply With Quote
Old 04-07-2004, 12:06 AM   #88
Sumleilmus
MVP
 
Join Date: Sep 2002
Location: /
Posts: 1,121
Yes, that's what I've been trying to do

The reason I'm asking for help is that it doesn't work on my machine.

Could it be due to the ? character (UNIX really dislikes it)?

Even when I try to trim a gang of sample folders named a 2002, b 2002, &c., it doesn't work. My series shows

1 selected folder in front finder window, with parent selected
2 how I activate the .scpt
3 the dialog box for string entry
4 the result (not shown, as 3 is the max. uploadable, but identical to 1)

Thus, my efforts to overcome and understand.
Attached Thumbnails
Click image for larger version

Name:	Pict 1.jpg
Views:	304
Size:	88.1 KB
ID:	22   Click image for larger version

Name:	Pict 2.jpg
Views:	258
Size:	95.2 KB
ID:	23   Click image for larger version

Name:	Pict 3.jpg
Views:	295
Size:	19.2 KB
ID:	24  

__________________
Sumleilmus
________
10.9.5 MacBook Pro 9,2 (13 inch, early 2013)
10.9.5 Mac Pro 3,1 (2 x 4core, 2008)
Sumleilmus is offline   Reply With Quote
Old 04-08-2004, 03:24 AM   #89
stetner
MVP
 
Join Date: Jan 2002
Location: Brisbane, Australia
Posts: 1,108
It appears to me you have the folder 'calvarium & osses > 2002' selected.

If you want that folder to be changed you need to have it's parent folder selected, IE 'wsp2002_n_after' then run the script.

You need to have the folder that contains the files and/or folders you want to change selected.
__________________
Douglas G. Stetner
UNIX Live Free Or Die
stetner is offline   Reply With Quote
Old 04-08-2004, 10:38 AM   #90
Sumleilmus
MVP
 
Join Date: Sep 2002
Location: /
Posts: 1,121
Alas

Stetner, I appreciate your efforts to help.

When you tell me that the method you describe works for you on your machine, I believe you.

When I tell you that the method that you describe does not work for me on my machine, do you believe me?

I understand the difference between selecting the parent directory/folder (without selecting the directory/folder itself) and selecting the directory/folder itself. I've tried both methods, many times.

What you describe above is the first unsuccessful method of the many I've tried. Since then, and most recently five minutes ago, I tried it again. It did not work. The names of the folders are unchanged.

I would really like to get this to work, because UNIX finds the ? character so distasteful (thus in the Terminal, the directory names are different).

In short, I have a lot of directories that end in " ? 2002" whose names I would like trim. At this point, I should probably try to figure out how to do it in Terminal.

In Terminal, the folder "calvarium & osses ? 2002" appears as a directory named "calvarium & osses ??? 2002"

I'll hunt up the UNIX commands for renaming directories and try to add the (I forget what it's called) -r to make it recursive.

Thanks for your replies.
__________________
Sumleilmus
________
10.9.5 MacBook Pro 9,2 (13 inch, early 2013)
10.9.5 Mac Pro 3,1 (2 x 4core, 2008)
Sumleilmus is offline   Reply With Quote
Old 04-08-2004, 10:43 AM   #91
Sumleilmus
MVP
 
Join Date: Sep 2002
Location: /
Posts: 1,121
Not just UNIX

Not only UNIX! The character for greater than or equal to, so cheerfully accepted by the GUI side of Panther, Jaguar, Puma, and domestic shorthair, doesn't even appear in my text above. It was changed to ?.

I probably should have put a couple of dabs of html before it to make it look like itself.
__________________
Sumleilmus
________
10.9.5 MacBook Pro 9,2 (13 inch, early 2013)
10.9.5 Mac Pro 3,1 (2 x 4core, 2008)
Sumleilmus is offline   Reply With Quote
Old 04-08-2004, 12:21 PM   #92
Irene
MVP
 
Join Date: Jun 2003
Location: Tucson, Arizona
Posts: 1,168
Anyone find solution to PTH Clock settings

which as noted on this forum cannot be adjusted in Panther?

I wondered if over time any of the gurus had achieved a way to make them work.
Irene is offline   Reply With Quote
Old 04-08-2004, 01:16 PM   #93
yellow
Moderator
 
Join Date: Jan 2002
Posts: 10,677
Quote:
Originally Posted by Irene
which as noted on this forum cannot be adjusted in Panther?

I wondered if over time any of the gurus had achieved a way to make them work.

Yep. iClock rules.
yellow is offline   Reply With Quote
Old 04-08-2004, 06:40 PM   #94
stetner
MVP
 
Join Date: Jan 2002
Location: Brisbane, Australia
Posts: 1,108
Quote:
Originally Posted by Sumleilmus
Not only UNIX! The character for greater than or equal to, so cheerfully accepted by the GUI side of Panther, Jaguar, Puma, and domestic shorthair, doesn't even appear in my text above. It was changed to ?.

OK, I thought it might be that the trim script did not like the ? character, but I just created some folders and trimmed '? xxx' off of the end of them with no problem. (where the '?' above and below is really the greater-than-or-equal sign)
Code:
$ ls zzz
xxx ??? xxx/

$ ls -b zzz                     
xxx \342\211\245 xxx/

$ find zzz/ -name \*\342\211\245\* -print

$ find zzz/ -name \*\ xxx -print
zzz//xxx ? xxx
So, the greater-than-or-equal sign appears to be the unicode string \342\211\245 but I don't see an easy way to trim it in the terminal, without writing a script to do it.

As an aside, if you create some folders named say:

xxx yyy
www yyy
zzz yyy

(with plain ascii names) and try to trim the ' yyy' off, does that work?
__________________
Douglas G. Stetner
UNIX Live Free Or Die
stetner is offline   Reply With Quote
Old 04-12-2004, 06:42 AM   #95
leehanken
Prospect
 
Join Date: Apr 2004
Posts: 1
SIGBUS in droplet

Quote:
Anyone else having trouble with droplets?

I am running OS X 10.3 and get a SIGBUS 10 in a droplet when I execute a 'do shell script ...' even though it succeeds in running the unix commands.
leehanken is offline   Reply With Quote
Old 05-11-2004, 10:27 AM   #96
Duderonomy
Prospect
 
Join Date: May 2004
Posts: 10
Mail and Address Book

After upgrading from 10.2.8 to 10.3.3, Mail seems to be busted becasue it cannot talk to the Address Book. So really the AB is probably broken... and this is likely due to the old Library contents of my pre-Panther home directory...
Duderonomy is offline   Reply With Quote
Old 05-12-2004, 04:39 AM   #97
mac_man_luke
Triple-A Player
 
Join Date: May 2004
Location: Adelaide
Posts: 120
10.1 Macam

Macam webcam driver no longer works on OSX.3 but there is a cracked version avaliable from Here

The old driver would freeze when ever you tryed to use it.
mac_man_luke is offline   Reply With Quote
Old 05-19-2004, 08:02 PM   #98
mikelly321
Prospect
 
Join Date: May 2004
Posts: 1
Angry applications broken by Panther

SoundEdit 16. Also seems to be broken by Jaguar. We can't get microphone or Convert CD Audio to work in either OS. Any ideas?
mikelly321 is offline   Reply With Quote
Old 05-25-2004, 10:40 PM   #99
stoneage
Triple-A Player
 
Join Date: Jan 2002
Location: In your blind spot.
Posts: 182
hmmmm...PTH Pasteboard and PTH Clock seem to working for me. I'm not using iTunesNotifier at present, but that always worked OK. What kind of problems have you seen with these apps?
__________________
Microsoft, AOL and Qwest free since 2002.
stoneage is offline   Reply With Quote
Old 06-04-2004, 11:46 AM   #100
emb
Prospect
 
Join Date: Jun 2004
Posts: 1
SPSS very slow in 10.3.4

I just upgraded to 10.3.4 and find that SPSS (a statistics program) works very very slowly. It is so slow that I might be able to do things faster with a hand calculator.

Anyway, would a re-install of SPSS help? Can I downgrade to 10.3.3 or earlier? Anything else I might try?

Thanks.
emb is offline   Reply With Quote
Reply


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

Forum Jump



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


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2014, vBulletin Solutions, Inc.
Site design © IDG Consumer & SMB; individuals retain copyright of their postings
but consent to the possible use of their material in other areas of IDG Consumer & SMB.