Forum Replies Created
- 
		AuthorPosts
 - 
		
			
				
I got the latest ted2go git today. It has a status bar.
F1 key works now. Still, the menu entry does not open and display any help here on macOS.
Thanks @nerobot,
I will take a look at the colors/font themes, thanks!
Yes, I rebuilt all, rebuilt modules, Update modules, Rebuilt documentation.
The menu entry “Help/Browse manuals” does nothing here.What should happen if I click this menu entry? Should it open a help window?
Pressing ‘F1’ key on keywords and classes also does nothing.Hello @nerobot,
I just installed MX2 and ted2go directly from github, and I got some issues/questions.
1.) Menu “Help/Browse Manuals” does nothing here. How can I open the help system for reading (language reference)?
2.) Menu “Help/Online help” opens http://monkey2.monkey-x.com/modules-reference/ in the default browser. This page does not exist: “Sorry, but I can’t find that page!”
3.) The module manager does not work. Menu “Build/Module Manager”: I can select the modules for installation (pyro, timelineFX, portmidi), but all .zip files can’t be found!
– Error downloading file ‘portmidi-v0.0.2.zip’
– Error downloading file ‘timelinefx-v1.0.0.zip’
– Error downloading file ‘pyro-framework-v1.0.1.zip’All of the above problems happen with original Ted2 *and* Ted2go.
How can I change the editor font in Ted2Go? And the syntax highlighting colors?
I’m testing on latest macOS Sierra Version 10.12.2
Thanks in advance!
What’s the planned release date for the next package for Patreon supporters?
I’m waiting for the next MX2 package to take a look again (it’s been a while).
The latest blog entry and future plans sound very, very interesting!My big thing for this year is getting the paraglider license and fly again.
Got/did the skydiving license when I was 27 and jumped for 3 years (116 jumps or so).
This year I will turn 40, so the paraglider license is my big birthday present to myself…Flying – I try to enjoy life as much as I can. I think there is only one life – one chance.
I try to use this chance as much as possible, to make my dreams become true.
Means travelling the world and enjoying total freedom is most important to me. Until I die.Maybe a ‘get everything we release’-package for $20 or $30 or $60 *per year* (subscription)
could also be a possibility?
*Could* be better than selling many separate $2 items…Maybe that’s just my single personal opinion, but I like to order
a package instead of many small/little $2-items separately…There is no cart. So, if I want to support you by just buying everything,
even if I don’t really need it, I have to buy everything separately. I can not put
all products into a cart and pay the whole thing. It’s just annoying, in my opinion.Maybe you would like to add a ‘buy everything’ package?
$1 is not an insult IMO – everything counts.
But, with $5+ you get special binary releases in the future,
as a Patreon reward. No hassle anymore with building yourself,
so you may want to consider the $5+ reward.If you want to just use the e_*** constants without the class name,
you could add them additionally to Extern section – outside of a class.Monkey12345678ExternConst e_shapeBit:uInt = "b2Draw::e_shapeBit"Const e_jointBit:uInt = "b2Draw::e_jointBit"Const e_aabbBit:uInt = "b2Draw::e_aabbBit"Const e_pairBit:uInt = "b2Draw::e_pairBit"Const e_centerOfMassBit:uInt = "b2Draw::e_centerOfMassBit"Now you should be able to use e_shapeBit|e_jointBit etc.
Did it help you, and is it working now?
Try something like:
Monkey123456789Class b2Draw Extends Void AbstractConst e_shapeBit:uIntConst e_jointBit:uIntConst e_aabbBit:uIntConst e_pairBit:uIntConst e_centerOfMassBit:uIntMethod SetFlags(flags:uInt)or:
Monkey123456789Class b2Draw Extends Void AbstractConst e_shapeBit:uInt = "b2Draw::e_shapeBit"Const e_jointBit:uInt = "b2Draw::e_jointBit"Const e_aabbBit:uInt = "b2Draw::e_aabbBit"Const e_pairBit:uInt = "b2Draw::e_pairBit"Const e_centerOfMassBit:uInt = "b2Draw::e_centerOfMassBit"Method SetFlags(flags:uInt)If the C++ class ‘b2Draw’ is within a namespace, you probably need
to use the full name-qualifier, like:Monkey123Const e_shapeBit:uInt = "TheNamespace::b2Draw::e_shapeBit"> Actually, the ‘-c’ flag shouldn’t be in there, will remove.
Thanks, Mark! Do you have a hint where I need to remove the ‘-c’ flag?
Can’t compile anything…Thanks Simon, but still not working.
Xcode Version 7.3.1 (7D1014)
Xcode command-line tools Version 7.3.1 (7D1014)‘as’ is there, but it does not understand the ‘-c’ flag.
‘ld -v’ output:
[/crayon]Monkey123[crayon-5cba897182b75107258942 inline="true" ]@(#)PROGRAM:ld PROJECT:ld64-253.3configured to support archs: i386 x86_64 x86_64h armv6 armv7 armv7s armv7m armv7k arm64 (tvOS)LTO support using: LLVM version 3.7.1‘as -v’ output:
Apple Inc version cctools-877.5, GNU assembler version 1.38Your ‘ld’ shows LLVM version 7.3.0, mine shows version 3.7.1 –
looks like a typo and should probably be 7.3.1For me the most important stuff is, when opening the help (menu or
F1 or F1 on keyword/method), it should not switch away from code view.
Means, help should (optional) open in an external window.
Always switching away from code is annoying, and with a 3-displays-system,
there is enough room to have the help window beside the IDE – while it may
make more sense to use a Help-TAB on single-display (notebooks etc.)More fragmentation of the community? Let’s not do that, sorry.
Let’s call it diversity.
A WordPress-based forum as a communication platform for a big community
is not the right solution, in my opinion. - 
		AuthorPosts