Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
134 user(s) are online (103 user(s) are browsing Forums)

Members: 1
Guests: 133

VooDoo, more...

Headlines

Forum Index


Board index » All Posts (Severin)




Re: Flare enough
Just can't stay away
Just can't stay away


@Capehill

Doesn't work here on my X1000, just gives a black screen.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Flare enough
Just can't stay away
Just can't stay away


oops... posted by error.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: MPlayer-GUI mickJT-MPlayer http:// what is it for?
Just can't stay away
Just can't stay away


@White

Quote:
@white
For Youtube videos you need smtube,qt4.7...


As you're using UAE you might want something with a lot less overhead than SMTube, Try:

http://os4depot.net/index.php?functio ... le&file=video/misc/yt.lha

Just open a shell and run the arexx script with a youtube link, select the resolution and select play video.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Can't get files from tablet
Just can't stay away
Just can't stay away


Sounds like your connecting via pictbridge instead of MassStorage, there might be something in settings to fix that.

Another option is to install ftp server pro from the olive tree software, easy to find on play store and then use any amiga ftp client or browser to acess the tablet, works great with DOpus5.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Please someone remove YAM's time contraint
Just can't stay away
Just can't stay away


why not just start yam with a simple dos script to set the clock back to a working date, start yam, wait for it to initalise then restore the date?

something like this should work:

date 15-10-2018
run 
<>nilyam:yam
wait 5
date server pool
.ntp.org port 123 >nil:


Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Problem with file with huge file name
Just can't stay away
Just can't stay away


You can also rename the file with filer, one of the few programs that can rename really long filenames that even c:rename can't handle.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Backup question
Just can't stay away
Just can't stay away


The easiest way is to create a temporary drawer on the source volume and move eveything you want to backup into it. Then use:

lha a -3reFV1073741824 dest:archive.lha source:temp/

-3 = Use -lh6- compression
-r = recursive
-e = archive empty directories
-F = Use fast progress display
-V = Enable/set multivolume size(KB)

this should give you upto 200 archive files of 1GB each.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Help with Arexx Script
Just can't stay away
Just can't stay away


@Raziel

[quote]The reason why i break the loop without reading the file to the end is because on line 691 i ALWAYS get a requester telling me i have to assign or mount this to go on
Quote:



<td><strong><script>document.write(SoftwarestandKuehlen);</script>:</strong></td>




I don't understand why the OS should jump in with this line?

I checked the source file and this is the ONLY place where a ":" exists between two "><".
But if the OS tries to mount such, it is clearly a bug (Workbench or AREXX)[/qquote]

something is possibly pickingg up >: as a redirect to an impossible file.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Help with Arexx Script
Just can't stay away
Just can't stay away


@nbache

Opps, I'm not really into arexx and mess it up frequently which is why I do most scripts in dos or python (which is far easier to learn for the simple stuff I do).

I've never used ^ or even ** in a rexx script, I was mangling basic code as a basis for that example and it shows

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Help with Arexx Script
Just can't stay away
Just can't stay away


@Raziel

inreverse order:

Q3:
The ARexx equivalent can be used in one of these ways:-

Format 1:-

IF expression THEN instruction clause
... rest of program

Format 2:-

IF expression THEN instruction clause 1
ELSE instruction clause 2
... rest of program

Format 3:-

IF expression THEN DO
instruction clause 1
instruction clause 2
instruction clause 3
END
ELSE DO
instruction clause 4
instruction clause 5
END
... rest of program


Q 2 & 1:

Arexx has a gosub equivalent that also wirks as a statement or function like in blitz that uses the call command:

using calls after exit() is no problem, you can have multiple exit() commands in a sript, think of it like the dos script quit command.

main:
if dog = awake then call feedit /*used as a gosuub*/
else call leavealone
call printmsg('finished') /*used as a statement*/
exit()

feedit:
rem give dog food
return

leavealone:
rem ignore dog
return 0

printmsg:
say Arg(1)
return 0

return can be a number or variable, using a variable is the equivelent of a function eg:

a=5
call square(a)
say a
exit()

square:
number=Arg(1)
ans = number^2
return ans

or simpler:

square:
return Arg(1)^2

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Help with Arexx Script
Just can't stay away
Just can't stay away


@daveyw

Ok, I've checked and it seems every space as well as tabs are being replaced with ascii 160. As there is a $ thats needed for the version string I've replaced all spaces with underscore so cut'n'paste then replace all "_" with " " and it should work.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Help with Arexx Script
Just can't stay away
Just can't stay away


@daveyw

Try this version... Paste it into an something like notepad and do a search and replace to replace the $'s With spaces.

#!C:Python
#$VER:CreateDrawer.py_V0.2_(19-09-2018)

import_os,_sys
legal_
=_(':','/')
#path_=_os.getcwd()
suffix_=_('lha','lzx','zip','7z','rar','tar')

numargs_=_len(sys.argv)
if_numargs_<>_3_:_exit()

arc_=_sys.argv[1]
arc_=_arc.lower()
if_not_arc.endswith(suffix):
____print_"Unknown_archive_suffix,_add_to_line_7_if_you_are_sure_it's_an_archive."
____exit()

dest_=_sys.argv[2]
if_dest.endswith(legal):
____newdest_=_dest+arc[:-4]
else:
____newdest_=_dest+"/"+arc[:-4]

try:
____os.makedirs(newdest)
except_OSError:
____#_Destination_drawer_already_exists.
____pass

#os.system('appdir:unarc_'_+_path_+_arc_+_'_'_+_newdest_+_'/'_+_'_AUTO')
exit()



Edited by Severin on 2018/9/29 23:07:38
Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Help with Arexx Script
Just can't stay away
Just can't stay away


@xenic

I've edited the script again and replaced the tabs/0xA0 chars with 4 spaces, it should just copy'n'paste now.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Help with Arexx Script
Just can't stay away
Just can't stay away


@daveyw

just for a quick comparison, here is a python script to do the same thing.

This method will create a complete dest path recursivly and if you cd to the archive drawer before running the script and uncomment the path and unarc lines it will extract the archive.

There is a simple check of the archive suffix, add more to line 7 if you want to. gzip, bzip etc. are covered by the 'zip' entry so no need to add them.

#!C:Python
#$VER:CreateDrawer.py V0.2 (19-09-2018)

import ossys
legal 
= (':','/')
#path = os.getcwd()
suffix = ('lha','lzx','zip','7z','rar','tar')

numargs len(sys.argv)
if 
numargs <> : exit()

arc sys.argv[1]
arc arc.lower()
if 
not arc.endswith(suffix):
    print 
"Unknown archive suffix, add to line 7 if you are sure it's an archive."
    
exit()

dest sys.argv[2]
if 
dest.endswith(legal):
    
newdest dest+arc[:-4]
else:
    
newdest dest+"/"+arc[:-4]

try:
    
os.makedirs(newdest)
except OSError:
    
# Destination drawer already exists.
    
pass

#os.system('appdir:unarc ' + path + arc + ' ' + newdest + '/' + ' AUTO')
exit()


Edit:
Added archive check and unarc stuff and fixed a few typos.

If you cut'n'paste this make sure the indentation is kept, all indented lines start with a single tab that will have been changed to a space by the site. a single space will still work but a tab makes it easier to read.


Edited by Severin on 2018/9/19 5:12:10
Edited by Severin on 2018/9/19 5:13:12
Edited by Severin on 2018/9/19 5:14:51
Edited by Severin on 2018/9/19 5:16:11
Edited by Severin on 2018/9/19 5:41:09
Edited by Severin on 2018/9/19 5:47:49
Edited by Severin on 2018/9/19 5:51:05
Edited by Severin on 2018/9/20 0:59:32
Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: DuckDuckGo search in IB?
Just can't stay away
Just can't stay away


does't something like this work?

https://duckduckgo.com/?kp=-2&q=%s


Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Copy item, set what date?
Just can't stay away
Just can't stay away


Keeping the original date/time is very important for me as a beta tester as it makes it easy to judge new versions/updates and dates of backup files.

The best solution is probably to make it a preferences option as dopus 4/5 does, that way everybody is happy.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Hot keys
Just can't stay away
Just can't stay away


use the alias command if you only want them for shell, FKey and/or macc if you want global access.

opena shell and type 'help alias' for more info...

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: USB shown having CDFS filesystem
Just can't stay away
Just can't stay away


@walkero

CDFS filesystem sounds like the stick is formatted for a mac as OS4 HFS support is built into CDFS and being 4GB it's the right size for a DVD-R etc.

probably easiest to get something like this:

https://www.amazon.co.uk/TRIXES-Adapte ... nes-Tablets/dp/B01AWJSVZY

then you can plug the card into your phone/tablet and 'erase' it.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Flare enough
Just can't stay away
Just can't stay away


@Thematic

usr: doesn't seem to make any difference.

I found that env:mplayer is coming from an envvar HOME which was somthing I had to sort out an mplayer problem which was later fixed.

deleted it and going to retry after rebooting.

EDIT:

Flare is now working properly, a userdata drawer was created with saves and mods drawers inside etc.

Thanks all!


Edited by Severin on 2018/6/1 0:56:18
Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: Flare enough
Just can't stay away
Just can't stay away


I've got 1.06 working but it took a bit of fiddling...

If I don't have the following srawers:

env:.config/flare/
env:.local/share/flafe/mods/
env:.local/share/flare/saves/empyrean/

default setings are used and they have the hwsurface and font problems.

mods.txt must be in env:.config/flare/ or progdir:mods/, it can't find it in progdir:config/

After quitting the game the env: files have to be copied to envarc: or the save & config files are lost.

EDIT:

is the "CC-BY-SA" tooltype doing anything?

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top



TopTop
« 1 (2) 3 4 5 ... 57 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project