I want to insert a copyright symbol in an alert dlog message.

Greetings!

I want to insert a copyright symbol in an alert dlog message. I have tried using escape codes (%), but they print without translation. How do I do this?

Thanks in advance.
Regards,

Dave Reese
[import]uid: 2545 topic_id: 982 reply_id: 300982[/import]

Logged as issue # 169 [import]uid: 54 topic_id: 982 reply_id: 2237[/import]

This worked for me: native.showAlert(" © Ansca, Inc 2010"

On the mac, © (Option-G) displays the Copyright symbol.

Carlos [import]uid: 24 topic_id: 982 reply_id: 2242[/import]

Hi Carlos,

Sorry, I didn’t note in my original post that using option-g displays a diamond with a question mark in it in place of the copyright symbol.

Suggestions?
Regards,

Dave Reese

[import]uid: 2545 topic_id: 982 reply_id: 2272[/import]

err… what is your default language?
c [import]uid: 24 topic_id: 982 reply_id: 2277[/import]

It’s English.
Regards,

Dave Reese [import]uid: 2545 topic_id: 982 reply_id: 2285[/import]

I can get it to show up.

[code]
local _alert = nil;

local function onComplete(event)
native.cancelAlert(_alert);
end
_alert = native.showAlert(“© 2010 Ansca, Inc”, “Key”, { “OK” }, onComplete);

[/code] [import]uid: 24 topic_id: 982 reply_id: 2360[/import]

Dave Reese

is this fixed?

Carlos [import]uid: 24 topic_id: 982 reply_id: 2656[/import]

I found a fix for this issue. I copied the contents of my main.lua file to a newly created main.lua file. This allowed the copyright symbol to display.
Dave Reese [import]uid: 2545 topic_id: 982 reply_id: 2665[/import]