Page 1 of 1

how can I enable asiatic characters?

Posted: 17 Feb 2014 20:32
by giuliastar
Hi

i have a folder with jappanese caracters , i can't view in xyplorer
why?
should i enable some option?

thanks

Re: how can i enble asiatic caraters?

Posted: 17 Feb 2014 23:15
by admin
:veryconfused: Unicode is supported since many many years. Please show screenshot.

Re: how can i enble asiatic caraters?

Posted: 18 Feb 2014 01:10
by PeterH
Maybe the selected font doesn't support japanese characters?

Re: how can i enble asiatic caraters?

Posted: 18 Feb 2014 08:37
by giuliastar
admin wrote::veryconfused: Unicode is supported since many many years. Please show screenshot.
hi
is there a scipt to find files and folders with No ansi caracters

i delete the folder sadly ,can't provide a scrennshot

Re: how can i enble asiatic caraters?

Posted: 18 Feb 2014 09:24
by highend
This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;

Re: how can i enble asiatic caraters?

Posted: 18 Feb 2014 09:34
by admin
There is also the isunicode() function.

Re: how can i enble asiatic caraters?

Posted: 18 Feb 2014 09:38
by giuliastar
highend wrote:This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;
thanks highend
can i use with search feature?
i short this script will shot files and folder with caracters not english , german , spanish,italian ,and other western europe ?
in short i have to select a folder(not a drive or partition right? ) and click scripting ->run script -> paste your code
i'm right, am not ?
thanks

Re: how can i enble asiatic caraters?

Posted: 18 Feb 2014 09:41
by giuliastar
admin wrote:There is also the isunicode() function.
hi
where ?
xyplorer is so full of features?
in the search feauture?
can not find it?

thanks

Re: how can i enble asiatic caraters?

Posted: 18 Feb 2014 10:16
by admin
It's a scripting command.

Re: how can i enble asiatic caraters?

Posted: 16 Nov 2015 08:41
by giuliastar
highend wrote:This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;
Hi
this is an amazing script
but i guess with the last version of xyplorer it found file and folder like

Code: Select all

L:\film\Pixies • Indie Cindy [2014] 320\Pixies\folder.jpg
is there a way to search in the windows registry for such keys utf-8 chars in it =
thanks a lot !

Re: how can I enable asiatic characters?

Posted: 16 Nov 2015 08:58
by bdeshi
giuliastar wrote:is there a way to search in the windows registry for such keys utf-8 chars in it =
Not related to XYplorer at all, but here you go.
Press Windows Key + R, type regedit. When the registry editor opens, press F3, or select Edit > Find. Now just type the characters in the Find what box. :)

Re: how can i enble asiatic caraters?

Posted: 31 Oct 2016 11:51
by giuliastar
highend wrote:This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;
hi
is there a way to save several script like preset or template in xyplorer?
thanks

Re: how can I enable asiatic characters?

Posted: 31 Oct 2016 12:03
by highend

Code: Select all

rtfm "idh_scripting.htm#idh_scripting_multi";

Re: how can I enable asiatic characters?

Posted: 31 Oct 2016 12:21
by RalphM
@highend: I think the OP is unfamiliar with storing scripts rather than using one scriptfile as a multi-script resource.

@guliastar: Scripts can be stored in various ways in order to reuse the code, either as a separate scriptfile on disc, as the content of a catalog entry or in a user button. I suggest you do some basic reading in the help file regarding scripting.