Convert unicode string into ascii

2008-08-29 Thread Davide Scheriani
yes, it is for a small hex reader. I need to read some old c64 file (.prg) then visualize the hex and the ascii so when I translate this: 01 08 0B 08 01 00 9E 32 30 36 31 00 00 00 A9 93 20 D2 FF A9 08 85 FC 8D 6B 10 A9 38 8D DC 17 A9 30 8D DB 17 A9 37 85 01 A9 13 I get this: î2061

Convert unicode string into ascii

2008-08-29 Thread Davide Scheriani
this is a cool idea. mapping into an array all the chars I need and run the parse.. quite cool.tnx! I need to call the parse only one time after loaded the .prg C64 file. Maybe I'm missing something from your example, previous postings, and my ISP's web mail client, but it appears your

Convert unicode string into ascii

2008-08-28 Thread Davide Scheriani
hello guys, is a way to convert an unicode string into a simple a-z0-9 string and replace the other wierd chars into a . (full stop)? im doing a small hex reader, so maybe this could help you. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Re: public release of Xcode 3.1?

2008-06-11 Thread Davide Scheriani
-users mailing list ([EMAIL PROTECTED]) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/xcode-users/dscheriani%40littlefrozenstar.com This email sent to [EMAIL PROTECTED] - -{ Davide Scheriani }- - PERSONAL WEB AREA www.littlefrozenstar.com FOUNDER

Re: public release of Xcode 3.1?

2008-06-11 Thread Davide Scheriani
yeah,and after in september we'll have the notification center for background applications on Iphone.They still have a long road.. Ive download the sdk b7 and its very nice. They added many things and changed the xcode and IB in some way. Im a bit confused. BUT bcoz is Apple we forgive them :)

FTP framework

2008-06-07 Thread Davide Scheriani
hello guys, where can I find an FTP framework? I need to implement my application but the native ftp isnt soo good. tnx ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list.

CATextLayer question

2008-06-05 Thread Davide Scheriani
I was playing with my NSView and CATextLayer. I placed this code: -(void)mouseDown:(NSEvent *)theEvent { NSPoint p = [theEvent locationInWindow]; CATextLayer *textLayer=[CATextLayer layer]; textLayer.string=[arr objectAtIndex: (random() % [arr count])];

Re: CATextLayer question

2008-06-05 Thread Davide Scheriani
nooo I dont believe it! :) I come from Flash and Core Animation is like Fuse Framework of Moses. Is a way to have some sort of collision method of one or more layers? On Jun 5, 2008, at 9:04 , Davide Scheriani wrote: I was playing with my NSView and CATextLayer. I placed this code

Re: Frame rate check

2008-06-04 Thread Davide Scheriani
. On 4 Jun 2008, at 7:28 am, Davide Scheriani wrote: hi, I wanted to do a small frame rate check to see on my nsview as debug output. How can I do this? tnx ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

Itunes video wall core animation

2008-06-04 Thread Davide Scheriani
just wonder where can I find the famous Itunes Wall Video project source.. IF apple have released somewhere. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the

Frame rate check

2008-06-03 Thread Davide Scheriani
hi, I wanted to do a small frame rate check to see on my nsview as debug output. How can I do this? tnx ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the

Pasteboard question

2008-05-23 Thread Davide Scheriani
helo guys. I wanted to use the PasteBoard to use for may drag'n drop table view, and I wish to save a mutable array i the pastboard. I wrote this but I get null back: = CODE = [pboard declareTypes:[NSArray arrayWithObject:NSGeneralPboard] owner:self];

NSRectFillListWithColors question

2008-05-14 Thread Davide Scheriani
hello guys! I was playing around with the Graphics drawing method and I wanted to use NSRectFillListWithColors. the 3 params it need are: NSRect, NSColor , NSInteger so,supposely the NSRect have to be an array, color as well and the int the length of arrays. My small problem is that it

Fwd: NSRectFillListWithColors question

2008-05-14 Thread Davide Scheriani
okkei,good,this is working,but I wanted to use NSArray instead a simple C-style array. In many case I have NSArray it hold NSValue for each NSRect. On 14.05.2008, at 15:32, Davide Scheriani wrote: I was playing around with the Graphics drawing method and I wanted to use