Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
150 user(s) are online (101 user(s) are browsing Forums)

Members: 0
Guests: 150

more...

Headlines

Forum Index


Board index » All Posts (MickJT)




Re: SDKv53 questions
Quite a regular
Quite a regular


@Snuffy

"SDK Install output: (Window)
Cannot open "sobjs:" for output - COPY: object is in use"

That happens normally if you are running Dopus4 when the SDK is being installed. It's "libgcc.so" in SYS:sobjs/ in use.

It is 290227 bytes. If that is the size you have, then don't worry about it.

"1) What did this do or didn't do to the SDK installation?
I had no idea on how to respond/do."

Didn't do anything bad. libgcc.so is still installed in SDK:gcc/lib/gcc/ppc-amigaos/4.2.4/newlib/lib/

So if the filesizes don't match, just simply copy it over into sobjs:

"2) Why was the ABC-shell CoreUtils 6.10 not used? I put them in and haven't noticed any shell problems. Maybe it's a compiler thing?"

Not sure.. Do you have AmiCygnix installed? Make sure AmiCygnix is in the user-startup AFTER the SDK. It is important.

Go to top


Can't get out of threaded view (solved)
Quite a regular
Quite a regular


Looks like your new Christmas theme has stuffed something up? "Flat" mode isn't working for me, and it's quite annoying.

Edit: Deleted OWB cookies and it's OK now. Weird.

Go to top


Re: findutils?
Quite a regular
Quite a regular


@Jack

Yes, i'd like this too.

Go to top


Re: Ladies and Gentlemen...
Quite a regular
Quite a regular


@Kicko

LOL! Qt is a popular GUI toolkit used in KDE :)

We also need wxWidgets.

Go to top


Re: DNS server problem? How to solve it?
Quite a regular
Quite a regular


@BrandonLee

I would also check with IBrowse in WinUAE on a PC if you have access to that.

Go to top


Re: OWB 3.19
Quite a regular
Quite a regular


Looks like it's fixed in 3.20 (whenever that comes out).

Go to top


Re: OWB 3.19
Quite a regular
Quite a regular


Is there a proper bug report on this yet?

Go to top


Re: New WookieChat: v2.12 beta 9 - 2009-11-03
Quite a regular
Quite a regular


@jahc

I can't use beta 9 with having my status in front of my nickname everytime I type. It's horrible. You need to make it optional or i'm sticking with beta 7 forever :)

Go to top


Re: OWB 3.17
Quite a regular
Quite a regular



Go to top


Re: Need an example ARexx script with arguments
Quite a regular
Quite a regular


rexxdossupport.library has a ReadArgs() function to simplify this, however that library doesn't come with the OS. Depends if you want to add another requirement or not.

I can make a function that does the same stuff without having to use any 3rd party libraries.


Edited by MickJT on 2009/10/21 13:34:33
Edited by MickJT on 2009/10/21 13:35:41
Go to top


Re: Need an example ARexx script with arguments
Quite a regular
Quite a regular


Test this one. I think there is an easier way to do it, but i've never had to bother parsing arguments as accurately as this before.

This still isn't going to work for stuff like hello="something here"
Nor will it work if quotes are mismatched.

Both can fixed up if you need to do handle that type of thing.

Example: RX args.rexx "hello test" testing123 "this is a test"

Output:

hello test
testing123
this is a test


/**/
Parse Arg Args

Call ParseArgs()
SAY Arg.1
SAY Arg.2
SAY Arg.3
Exit

ParseArgs:
i2=1
DO i=1 TO Words(Args)
IF Left(Word(Args,i),1)=d2c(34) THEN DO
Arg=SubStr(SubWord(Args,i),2)
Pos=Pos(d2c(34),Arg)
Arg.i2=Left(Arg,Pos-1)
Words=Words(Arg.i2)
i2=i2+1
i=i+Words-1
End
ELSE DO
Arg.i2=Word(Args,i)
i2=i2+1
End
End
Return 0

Go to top


Re: Need an example ARexx script with arguments
Quite a regular
Quite a regular


@jahc

Don't kid yourself; You knew it'd be me who'd respond first :)


/* Test arguments */
Parse Args Arg1 Arg2 Arg3

SAY Arg1
SAY "My name is" Arg2
PLAYSOUND Arg3
Exit


However Arg1 is just the first word, Arg2 is the second word, Arg3 is the third word.

You could do this instead:

/* Test arguments */
Parse Args Args
Parse Var Args B1"'"Arg1"'"B2"'"Arg2"'"B3"'"Arg3"'"B4

SAY Arg1
SAY "My name is" Arg2
PLAYSOUND Arg3
Exit


... but then that REQUIRES using apostraphes.

Like RX whatever.rexx 'hello test' 'blah blah' 'something something'


B1 just means "Blank 1".. It's a variable that isn't going to be used, but necessary anyway.

Give me a moment and i'll code up exactly what you're after.

Go to top


Re: SabreMSN 0.59 - 2009-09-19 - still no file transfers
Quite a regular
Quite a regular


@smf & @TiredOfLife

Not much I can do about that! Hmm.. Anyway, please just e-mail me or PM since this is a Sabre thread afterall!

Go to top


Re: SabreMSN 0.59 - 2009-09-19 - still no file transfers
Quite a regular
Quite a regular


@smf

I sent you a message. Couldn't find much info on error 213, no-one seems to know what it is except it might be related to people with an @msn.com address going online & offline.

Go to top


Re: SabreMSN 0.59 - 2009-09-19 - still no file transfers
Quite a regular
Quite a regular


If no-one minds me hijacking.

Latest AmiMSN at http://tinyurl.com/mujnds receives files and avatars (type AVATAR in the chat window... you can only do it once per session).

I need to know of any bugs, since jahc is getting his protocol info off my own reverse engineering and research.... and if it doesn't work in AmiMSN, it won't in Sabre either :)

Go to top


Re: FTP Sevrer @ 4.1
Quite a regular
Quite a regular


@Raziel

What's whats?

Go to top


Re: FTP Sevrer @ 4.1
Quite a regular
Quite a regular


@TiredOfLife

What does VNC have to do with FTP?

On OS3.x I think I used AmiFTPd? Was shareware. Perhaps a port of proftpd or something might be available.


Edited by MickJT on 2009/9/15 9:50:18
Go to top


Re: SabreMSN 0.58 - 2009-08-24 - Multiple accounts support/login window
Quite a regular
Quite a regular


Hi guys.

Another hijacking, sort of.

The MSNP2P file transfer implementation that will be worked into SabreMSN is the same one I have going in AmiMSN at the moment.. so bug testers would be nice, it'd help jahc and I both.

Link available through Google.

Go to top


Re: SabreMSN 0.58 - 2009-08-24 - Multiple accounts support/login window
Quite a regular
Quite a regular


@TiredOfLife

Can u log into MSN from work? PM me your Live ID.

Go to top


Re: SabreMSN 0.58 - 2009-08-24 - Multiple accounts support/login window
Quite a regular
Quite a regular


@TiredOfLife

Yeah I sorta revealed something for 60 seconds then wiped it out :) Can you come on IRC?

Go to top



TopTop
« 1 ... 43 44 45 (46) 47 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project