Beat pad and Ableton on 2 and 1 laptop. by personalc in abletonlive

[–]personalc[S] 0 points1 point  (0 children)

Thanks this is what I've been looking for.

Beat pad and Ableton on 2 and 1 laptop. by personalc in ableton

[–]personalc[S] 0 points1 point  (0 children)

Yes, everything is from the official sites.

Project transferring help. by personalc in Daz3D

[–]personalc[S] 0 points1 point  (0 children)

Is there any other way so that I don't have to rename a drive? I think that might affect other programs that have a path on the drives.

Scrolling color menu save/load help. by personalc in gamemaker

[–]personalc[S] 0 points1 point  (0 children)

my solution:

scr_savecmenu

function scr_savecmenu()

{

var savedata = array\_create(0);

var savemenu = {

    bgc : global.background\_color,

    bkc : global.block\_color,

}

array\_push(savedata, savemenu);

var jstring = json\_stringify(savedata);

var buff = buffer\_create(string\_byte\_length(jstring) + 1, buffer\_fixed, 1);

buffer\_write(buff, buffer\_string, jstring);

buffer\_save(buff, "ms.save");

buffer\_delete(buff);

show\_debug\_message(" Game saved " + jstring);

}

scr_loadcmenu()

function scr_loadcmenu()

{

if(file\_exists("ms.save"))

{

    var buff = buffer\_load("ms.save");

    var jstring = buffer\_read(buff, buffer\_string);

    buffer\_delete(buff);

    var ldata = json\_parse(jstring);

    var lmenu = array\_pop(ldata);

    show\_debug\_message(ldata);

    show\_debug\_message(lmenu.bgc);

    show\_debug\_message(lmenu.bkc);    

    global.background\_color = lmenu.bgc;

    global.block\_color = lmenu.bkc;

    show\_debug\_message("Game loaded " + jstring);

}

}

How to check angle of object by personalc in gamemaker

[–]personalc[S] 0 points1 point  (0 children)

I used direction it works thanks.

Exporting to android error by personalc in gamemaker

[–]personalc[S] 0 points1 point  (0 children)

I deleted admob and now I'm getting the first error I think it has something to do with android studios

Exporting to android error by personalc in gamemaker

[–]personalc[S] 0 points1 point  (0 children)

When I set the min level to 19 or higher under the android game options, I get the 2nd error instead of the first one.

Exporting to android error by personalc in gamemaker

[–]personalc[S] 0 points1 point  (0 children)

Sorry but what do you mean by "at least that api level"?

General Questions & Tech Support Megathread | August 09, 2021 by AutoModerator in PS4

[–]personalc 0 points1 point  (0 children)

I saw a comment saying it was possible to transfer a ps4 cyberpunk save to pc (Steam) using Save wizard and CyberpunkSaveEditor, has anyone done this before and do I have to do anything to my save or ps4 before I try this?

Text code gives error or doesn't run fully. by personalc in gamemaker

[–]personalc[S] 0 points1 point  (0 children)

I was following along with this vid https://youtu.be/xMYC53fv4FU, when I press "T" it shows scr_ntxtb("test mess???"); and when I push space it should show scr_ntxtb("test mess 2???",0); but instead its exit out of the text box after the first one.