Show Posts
|
|
Pages: 1 2 [3] 4 5 ... 10
|
|
32
|
Development / Amsn development related issues / Chameleon plugin : Native/GTK/QT look for aMSN
|
on: December 07, 2006, 03:03:59 pm
|
Hmm, have to ask you as well. Are you using Tcl/Tk svn? Tile has been integrated in this new version and hence the Tile package cannot be loaded anymore by chameleon. Edit: to figure out, start wish8.5 and find out whether you have a namespace named ::ttk $ wish8.5 % namespace exists ::ttk 1 % $ wish8.4 % namespace exists ::ttk 0 %
By the way, I have a patch that quite fixes this problem already. I'll probably soon commit this as not doing so will lead to more troubles I guess. It's not working very well yet, so I thought I'd discuss it with the plugin's original author, our beloved mr kkrt, first.
|
|
|
|
|
33
|
The Community / Plugins / Changing display picture
|
on: December 06, 2006, 09:35:55 am
|
Here's Karel's reply === yeah sure, you can find the plugin here: http://karel.demeyer.googlepages.com/amsn.html (my still unfinished homepage) Though, I must say I don't really want to "support" this plugin. It will need some tiny little bit love to go mainstream maybe. I don't mind it being in amsn-extras but I'll might forward questions about it to this list  . friendly greeting, Karel. > Karel, didn't you make such a plugin once (automatically changing DP > once an hour)? > Is it still there? There's a user on the forum interested in this. > > JeeBee.
|
|
|
|
|
35
|
The Community / Plugins / Changing display picture
|
on: December 05, 2006, 09:31:07 am
|
|
No, it's not that easy. I know somebody created this as a plugin already, though. It was called something like PhotoAlbum plugin or something, I cannot remember, but it changed display picture to a random picture in a folder with pictures. This seems like what you want, I'll try to figure out where it is for you by sending an email to our developers list.
|
|
|
|
|
37
|
aMSN Support / Linux / Strange amsn icon on task tray.
|
on: November 29, 2006, 11:13:06 am
|
|
I think this is indeed still an issue with some window managers (I don't say it's not a bug in amsn here!). Probably you are using a non-standard window manager? Compiz/Beryl or something perhaps? Why it is aMSN and not any of your other applications could be because most applications do not change these icons, while aMSN does (different icon according to state).
|
|
|
|
|
38
|
The Community / Feedback and Suggestions / Block my session when I'm using it
|
on: November 27, 2006, 08:29:59 pm
|
No, that is impossible, it is the way the protocol works and hence it would require a server side change. It makes sense that it is like this, because suppose you forget to sign off somewhere, you'd not be able to sign in anymore (unless you could 'manually override' that again). So, perhaps forward your question to M$ 
|
|
|
|
|
39
|
aMSN Support / Linux / tk8.5a5 won't compile (*fixed*, dependency issues)
|
on: November 27, 2006, 08:24:12 pm
|
Hoi WM-666, of moet ik zeggen Bert  You did notice the possibility to disable pixmapmenus in the plugin configuration of Chameleon, right? Where you can Load/Unload plugins, there's also a button for configuration and you could play a little there to figure out what does work for you and so use only a part of Chameleon. Have fun.
|
|
|
|
|
40
|
Development / Amsn development related issues / Chameleon plugin : Native/GTK/QT look for aMSN
|
on: November 25, 2006, 09:05:56 pm
|
|
That's because you are using the Tk version that has now Tile included. Several changes are needed. All references to ::tile::* should become ::ttk::*, should not "package require Tile", not all procs are there (e.g. ::tile::availableThemes should be copied somehow). I already implemented that but not in a way that I can commit (it should be implemented in a way that users with old Tcl/Tk are not affected).
In other words, downgrade Tcl/Tk a bit perhaps? Or do not load chameleon until this gets fixed.
|
|
|
|
|
42
|
Development / Amsn development related issues / Chameleon plugin : Native/GTK/QT look for aMSN
|
on: November 23, 2006, 09:40:11 pm
|
|
@PJ: You're not a Mac user right? I think perhaps an if { ![OnMac] } needs to be added before require'ing pixmapmenu in chameleon.
@Gus: You have a subversion conflict. The lines with >>>>> etcetera are not normal, you have to fix that (for example, remove the file and run 'svn update').
Another thing. Chameleon uses Tile and Tile is integrated in Tk nowadays (as from 8.5a6 or something). That probably will raise some other incompatibilities.
|
|
|
|
|
44
|
The Community / Plugins / Freezing issue with the music plugin and amarok, on gnome
|
on: November 22, 2006, 10:24:00 am
|
My suggestion (see faq33 also) would be a script like this: 1) check whether pgrep is available, if so, use it 2) ELSE check if pidof is available, if so, use it 3) ELSE perhaps check whether grep -C is available, if so, use it 4) ELSE use grep and a RE that checks whether it STARTS with the command we're looking for. Note that all this can be implemented in one function that is sourced by the other scripts, that way, you only need to write (/make changes) only once. Refs: http://wooledge.org/mywiki/ProcessManagementhttp://wooledge.org/mywiki/BashFaq#faq33 the -C option is probably GNU specific, yes.. so any distro that has gnu ps will most likely support it. I do not know of a platform independent way to query that sort of thing
|
|
|
|
|