Hello,
After some work, I finally completed the functions to rotate a polygon using pivots!
Check my site for more details at: http://runrevwidgets.com/wiki/tiki-inde ... e=Graphics
Cheers!
Search found 250 matches
- Tue Mar 02, 2010 9:31 am
- Forum: Off-Topic
- Topic: A new site dedicated to RunRev is ready!
- Replies: 10
- Views: 5639
- Mon Feb 22, 2010 4:22 pm
- Forum: Off-Topic
- Topic: A new site dedicated to RunRev is ready!
- Replies: 10
- Views: 5639
Re: A new site dedicated to RunRev is ready!
Hello, recently I found some problems using the function revRotatePoly in order to rotate a polygon or graphic. After some time, and thanks to the information contained in this forum I created an article to explain, in detail, how to use that function, and how to avoid some little problems that you ...
- Wed Feb 17, 2010 7:09 pm
- Forum: Announcements
- Topic: Space Editor: New widget from RUNREVWIDGETS.COM
- Replies: 2
- Views: 2622
- Tue Feb 16, 2010 6:33 pm
- Forum: Announcements
- Topic: Space Editor: New widget from RUNREVWIDGETS.COM
- Replies: 2
- Views: 2622
Space Editor: New widget from RUNREVWIDGETS.COM
Hello, I'm proud to announce that in the next hours I will publish a preview of Space Editor, a new powerful widget to be used as a rich text editor! This is a preview, so some options are still missing, but it contains already a lot of functionalities to allow you to discover its real power! It con...
- Tue Feb 16, 2010 2:37 pm
- Forum: Linux
- Topic: Big problem on object FIELD
- Replies: 5
- Views: 2900
Re: Big problem on object FIELD
Sorry, can you send me hardware configuration of your computer where you tried to execute Linux?
I think one problem could be related to video card performance. I have a notebook with a "small" video card (not so fast).
I have an Intel 4 series (similar to intel 915 I think).
Thank you.
I think one problem could be related to video card performance. I have a notebook with a "small" video card (not so fast).
I have an Intel 4 series (similar to intel 915 I think).
Thank you.
- Tue Feb 16, 2010 12:50 am
- Forum: Linux
- Topic: Big problem on object FIELD
- Replies: 5
- Views: 2900
Re: Big problem on object FIELD
Thank you for the suggestion, I will check it!
- Mon Feb 15, 2010 6:16 pm
- Forum: Linux
- Topic: Big problem on object FIELD
- Replies: 5
- Views: 2900
Re: Big problem on object FIELD
I use Linux Mint (gnome) - 32bit, with Runtime Revolution 4.0.
Even the code editor seems really slow, so I think the problems are "connected".
I'm working on a notebook HP EliteBook 6930p, with 3GB Ram, and Intel 4 series as video card.
Even the code editor seems really slow, so I think the problems are "connected".
I'm working on a notebook HP EliteBook 6930p, with 3GB Ram, and Intel 4 series as video card.
- Mon Feb 15, 2010 10:37 am
- Forum: Linux
- Topic: Big problem on object FIELD
- Replies: 5
- Views: 2900
Big problem on object FIELD
Hello, I usually work either on Windows or on Linux, and I discovered a big problem on Linux version: component FIELD, in Windows works perfectly, but on Linux it is really SLOOOW! I make some tests using the same computer (so the problem is not related to hardware capabilities). On Linux I have tri...
- Fri Feb 12, 2010 9:02 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Windows: "echo" vs "open process"
- Replies: 2
- Views: 1026
Re: Windows: "echo" vs "open process"
yes, in fact I solved in that way. The problem is "echo" command in windows automatically add a NEWLINE (return) at the end of the string, and that char is calculated in SHA-1 :-( So I solved using a linux version of the command (an equivalent command in windows was compiled), since that command has...
- Thu Feb 04, 2010 10:59 pm
- Forum: Off-Topic
- Topic: A new site dedicated to RunRev is ready!
- Replies: 10
- Views: 5639
Re: A new site dedicated to RunRev is ready!
Hello again! I'm here to give you a great news: Widget Space Zipper was updated! Now it implements some non-visual features (as you requested ;-) Now you can setup a default target directory, then simply send a couple of messages to the widget, and it will automatically extract the archive, without ...
- Wed Feb 03, 2010 1:56 pm
- Forum: Off-Topic
- Topic: A new site dedicated to RunRev is ready!
- Replies: 10
- Views: 5639
Re: A new site dedicated to RunRev is ready!
The site was updated, and contains new great widgets!!
Cheers.
Cheers.
- Tue Feb 02, 2010 10:57 pm
- Forum: Announcements
- Topic: New plugin: Scripts Manager is available!
- Replies: 0
- Views: 1096
New plugin: Scripts Manager is available!
This is an important day for me: I completed a very useful plug-in: Scripts Manager, furthermore I created a new area in the forum, to support plug-ins technology inside Runtime Revolution IDE. Scripts Manager is a plug-in to quickly manage scripts, pieces of code, code snippets, etc... You can use ...
- Thu Jan 28, 2010 12:01 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Windows: "echo" vs "open process"
- Replies: 2
- Views: 1026
Windows: "echo" vs "open process"
Hello, I need to send some data to SSL command (openssl.exe) used to calculate SHA1 code of a small string. Well, if I use: echo MyStringToCheck|openssl sha1 it works perfectly (but my problem is "echo" command introduce an extra CR at the end of the string). So I wanted to send the string usin open...
- Fri Jan 22, 2010 11:35 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: How to recall objects inside a group
- Replies: 3
- Views: 965
Re: How to recall objects inside a group
Hello again, I found another alternative: it is faster (less code) but it must be located in every group (or inside a behavior attached to every group):
It is trivial, but it works perfectly.
Code: Select all
function thisGroup
return me
end thisGroup
- Fri Jan 22, 2010 11:28 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: How to recall objects inside a group
- Replies: 3
- Views: 965
Re: How to recall objects inside a group
EDIT: Now I solved creating this function and putting it in the stack containing the groups, but I hope a better (faster) solution could be found: function thisGroup local ret get wordOffset("group", the long name of target) if it is not empty then put word it to it+2 of the long name of target into...