Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
 |
|
Thread: File memory copy
Post: RE: File memory copy
Ok, probably found the cause of my problem. Can this line be called on a second thread? It returns true. The _file is ready to writeMem() and SoundCapture is created. Checked also _half_size - it's fi... |
|
Eric |
Beginner Questions |
4 |
3,880 |
04-13-2014, 10:02 AM |
 |
|
Thread: File memory copy
Post: RE: File memory copy
here's my functions body:
Code:
// files needed to update .pak
Memc<PakFileData> files;
PakFileData &pfd=files.New();
 ... |
|
Eric |
Beginner Questions |
4 |
3,880 |
04-13-2014, 07:22 AM |
 |
|
Thread: File memory copy
Post: File memory copy
Hello,
today I've discovered that it's impossible to copy content of one file created in memory to another file created in memory. Is that true or I've missed something? |
|
Eric |
Beginner Questions |
4 |
3,880 |
04-12-2014, 05:06 PM |
 |
|
Thread: Recording sound into a file.
Post: RE: Recording sound into a file.
Thank you Esenthel, my program works perfectly. It's funny how simple ideas can solve problems. ;) |
|
Eric |
Support |
6 |
5,693 |
04-03-2014, 05:39 PM |
 |
|
Thread: How to check if clicked on specific list element?
Post: RE: How to check if clicked on specific list eleme...
Esenthel, thanks for the tip. In state update I do:
Code:
if(Ms.bd(0) && Ms.test(list.screenRect()))
/* something with the list element */
Also, I discovered that _List::func user function i... |
|
Eric |
Gui |
5 |
4,488 |
03-13-2014, 06:56 PM |
 |
|
Thread: Warnings after latest update
Post: RE: Warnings after latest update
Yes, I also have those warnings in Visual Studio but without any about Emscripten platform. |
|
Eric |
Support |
10 |
8,051 |
03-12-2014, 09:05 PM |
 |
|
Thread: How to check if clicked on specific list element?
Post: RE: How to check on which list element clicked?
Thank you but this won't work ;) This will give me absolute index of current list element everytime I click LMB. I need to know on which element I've clicked with specific mouse button (let's say RMB ... |
|
Eric |
Gui |
5 |
4,488 |
03-12-2014, 08:23 PM |
 |
|
Thread: How to check if clicked on specific list element?
Post: How to check if clicked on specific list element?
As in subject, how can i check if I've clicked with specific mouse button on the given list element? |
|
Eric |
Gui |
5 |
4,488 |
03-12-2014, 12:58 PM |
 |
|
Thread: Some members from private to protected
Post: Some members from private to protected
Hi,
in order to be able to fully customize gui it would be nice if TextLine and CheckBox had their private members set to protected. Also ListColumn::Button is hard to customize because of lack of vir... |
|
Eric |
Feature Requests |
0 |
2,400 |
03-12-2014, 12:13 PM |
 |
|
Thread: Recording sound into a file.
Post: RE: Recording sound into a file.
Esenthel, as you can see I became Licensed Developer ;) Waiting for hints! |
|
Eric |
Support |
6 |
5,693 |
03-06-2014, 04:19 PM |
 |
|
Thread: FileText::copy(...)
Post: RE: FileText::copy(...)
(03-02-2014 08:53 PM)Esenthel Wrote: ..in next release.
when will the next release come out ? ;) |
|
Eric |
Support |
2 |
3,658 |
03-06-2014, 02:30 PM |
 |
|
Thread: Esenthel in a browser (WebGL, HTML5, JS, Emscripten)
Post: RE: Esenthel in a browser (WebGL, HTML5, JS, Emscr...
(03-04-2014 11:11 AM)MrPi Wrote: Very cool. Browser support for Esenthel would be great.
That would be awesome! |
|
Eric |
News |
28 |
26,068 |
03-04-2014, 01:57 PM |
 |
|
Thread: FileText::copy(...)
Post: FileText::copy(...)
Hi,
when I wan't to copy file_text to pfd.file with recently added FileText::copy(...) function there's a problem. Resultant size of pfd.file is "1" where file_text is fine - I checked it with LogN(fi... |
|
Eric |
Support |
2 |
3,658 |
03-02-2014, 06:15 PM |
 |
|
Thread: TextStyle in TextLine
Post: RE: TextStyle in TextLine
Ehh.. this is sooo bad idea.. Anyway, thanks! |
|
Eric |
Gui |
5 |
4,704 |
03-01-2014, 06:44 PM |
 |
|
Thread: EE Headers on the site for Licensed Developpers
Post: RE: EE Headers on the site for Licensed Developper...
|
Eric |
Feature Requests |
3 |
4,228 |
03-01-2014, 04:21 PM |
 |
|
Thread: TextStyle in TextLine
Post: RE: TextStyle in TextLine
Hi,
After new release there is a problem with Gui.ts_textline.scale. There's no visible difference whether it's set to 0.65f or 0.0065f; Try to set:
Code:
Gui.ts_textline.scale=0.00000065;
in "Tutori... |
|
Eric |
Gui |
5 |
4,704 |
03-01-2014, 03:27 PM |
 |
|
Thread: Recording sound into a file.
Post: RE: Recording sound into a file.
Smart! :P Dear Esenthel, if I'm able to record sound (which with capturing video are main features of my upcoming program) I'm calling my coworker to buy the license :) |
|
Eric |
Support |
6 |
5,693 |
03-01-2014, 10:40 AM |
 |
|
Thread: Recording sound into a file.
Post: RE: Recording sound into a file.
UP. This is very important to me. |
|
Eric |
Support |
6 |
5,693 |
02-28-2014, 09:12 AM |
 |
|
Thread: Simple yet useful IsDigit(Char) function
Post: Simple yet useful IsDigit(Char) function
It'd be nice to have such a function already implemented in EE.
Code:
Bool IsDigit(Char c) { if( c >= '0' && c <= '9' ) return true; return false; }
Bool IsDigit(Char8 c) { i... |
|
Eric |
Feature Requests |
1 |
3,084 |
02-25-2014, 11:36 AM |
 |
|
Thread: Recording sound into a file.
Post: Recording sound into a file.
Hello,
I'm trying to write a program which records sound into a raw, binary compressed file. I have no problem with reading that file but when writing to it I have one little problem. Let me explain:
... |
|
Eric |
Support |
6 |
5,693 |
02-24-2014, 11:33 AM |