OK Steve,
That was my mistake which I was trying to get done but could not.
Now the created text file has an extension "WXYZ" and also has the icon for
"WXYZ"
All is now well.
Thanks-A-Lot.
Lennox
Steve Garman <realbasic at garman dot demon dot co dot uk> wrote: > myfile =
DocumentsFolder.child("myfile")
That file has no extension. The extension is part of the file name.
It should be created and opened as
myfile = DocumentsFolder.child("myfile.wxyz")
Then, if extension .wxyz is associated with myApp, you should simply be
able to use
myfile.Launch
--
Steve Garman
Using RB2007r3 Professional on Windows Vista Ultimate
_______________________________________________
Unsubscribe or switch delivery mode:
Search the archives:
---------------------------------
Be a better Globetrotter. Get better travel answers from someone who knows.
Yahoo! Answers - Check it out.
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
From Mon 30 Jul 2007 08:20:03 -0600
Return-Path: <realbasic-nug-bounces at lists dot realsoftware dot com>
X-Original-To: listarchive at realsoftware dot com
Delivered-To: listarchive at realsoftware dot com
Received: by xmail.realsoftware.com (Postfix, from userid 1037)
id F103737E7F64; Mon, 30 Jul 2007 07:20:11 -0700 (PDT)
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on
www.realsoftware.com
X-Spam-Level:
X-Spam-Status: No, score=-3.1 required=4.5 tests=ALL_TRUSTED,AWL,BAYES_00,
NO_REAL_NAME autolearn=ham version=3.1.1
Received: from lists.realsoftware.com (m.realsoftware.com [66.116.103.65])
by xmail.realsoftware.com (Postfix) with ESMTP id DB8DA37E7F5A;
Mon, 30 Jul 2007 07:20:10 -0700 (PDT)
Received: from real-software-mini.local (localhost [127.0.0.1])
by lists.realsoftware.com (Postfix) with ESMTP id 12F4B4E0BF2;
Mon, 30 Jul 2007 09:19:59 -0500 (CDT)
X-Original-To: realbasic-nug at lists dot realsoftware dot com
Delivered-To: realbasic-nug at lists dot realsoftware dot com
Received: from mail.verex.com (mail.verex.com [66.116.103.197])
by lists.realsoftware.com (Postfix) with ESMTP id 3AD8C4E0BE5
for <realbasic-nug at lists dot realsoftware dot com>;
Mon, 30 Jul 2007 09:19:55 -0500 (CDT)
Received: from [66.116.103.197] (localhost [127.0.0.1])
by mail.verex.com (Postfix) with SMTP id 3CC08795F11
for <realbasic-nug at lists dot realsoftware dot com>;
Mon, 30 Jul 2007 08:20:03 -0600 (MDT)
Date: Mon, 30 Jul 2007 08:20:03 -0600
Subject: Re: Function Key
From: joe at strout dot net
To: realbasic-nug at lists dot realsoftware dot com
In-Reply-To: <46AD9E4F dot 6010106 at blueyonder dot co dot uk>
X-Mailer: VerEx Email Gateway
Message-Id: <20070730142003 dot 3CC08795F11 at mail dot verex dot com>
X-BeenThere: realbasic-nug at lists dot realsoftware dot com
X-Mailman-Version: 2.1.9
Precedence: list
Reply-To: REALbasic NUG <realbasic-nug at lists dot realsoftware dot com>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: realbasic-nug-bounces at lists dot realsoftware dot com
Errors-To: realbasic-nug-bounces at lists dot realsoftware dot com
On Jul 30, 2007, at 08:16 UTC, Trisha Duke wrote:
> i am interested to put some function key like F1 to F12 into my
> application. How do i go about this??
Generally, you don't. Those are reserved (at least on MacOS) for
system-wide functionality, such as Expose and Dashboard. F1-F4 in
well-behaved apps will do Undo/Cut/Copy/Paste, though many newer Apple
apps (written by folks from NeXT I would imagine) fail to adhere to
this venerable standard.
Anyway, as a result, there is no guarantee that these keys will
generate a consistent KeyCode in, say, the KeyDown event.
Now if you're making a full-screen game that takes over the whole UI of
the computer, then that's a different story. Most or all of those keys
can be reliably detected with Keyboard.AsyncKeyDown, and in such an
environment the user wouldn't expect standard behavior for them anyway.
Best,
- Joe
>
> thanks in advance.
>
> regards,
> trisha
>
> _______________________________________________
> Unsubscribe or switch delivery mode:
> <http://www.realsoftware.com/support/listmanager/>
>
> Search the archives:
> <http://support.realsoftware.com/listarchives/lists.html>
>
--
Joe Strout -- joe at strout dot net
Strout Custom Solutions, LLC
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|