Search the web
Sign In
New User? Sign Up
apollocoders
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2442 - 2471 of 2983   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2442
Hi, You can include this in the editable iframe. It should disable navigating away. ev.srcElement is the clicked element node on which you might want to check...
chicu123
Offline Send Email
Feb 1, 2008
10:46 am
2443
They're probably using the SWFLoader component. You could download a swf and then just load its bytes into the SWFLoader component. -Andrew...
andrewwestberg
Online Now Send Email
Feb 1, 2008
1:48 pm
2444
Hi, sorry if this is dumb. But what has air.Shell.shell.exit() changed to in beta 3? i had a look through the livedocs and couldn't spot it. Thanks, Adam -- ...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 1, 2008
5:52 pm
2445
It's now NativeApplication.nativeApplication.exit(). Oliver Goldman | Adobe AIR Engineering...
oigoldman
Offline Send Email
Feb 1, 2008
5:55 pm
2446
Hi, I wanted to show something like a drop area visible when user does a drag-in action to the native stage area. I added a sprite same size as the stage so...
zenoplex
Offline Send Email
Feb 3, 2008
7:07 am
2447
How can I run an exe file from AIR?...
per_tutto
Offline Send Email
Feb 3, 2008
10:15 pm
2448
Unless they changed this in the last Beta release, you can't :( It has been confirmed in previous posts that it is not possible....
phobisbeo
Offline Send Email
Feb 3, 2008
10:23 pm
2449
Here is the official answer: ...
phobisbeo
Offline Send Email
Feb 3, 2008
10:50 pm
2450
How are people getting on with startAtLogin. I'm on windows XP. I do: NativeApplication.nativeApplication.startAtLogin=true; By checking msconfig I can see...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 3, 2008
11:08 pm
2451
it still says false even tho it started on the next boot up... ... -- ShiftCreate Limited http://www.shiftcreate.com e. adam@... t. 020 8123 3766 ...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 4, 2008
12:20 pm
2452
it seems to be triggering an error when I try to set it again. how can I trap and display the error, seeing as I can't test it in debug mode? ... -- ...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 4, 2008
1:06 pm
2453
rite i did: try { air.NativeApplication.nativeApplication.startAtLogin=true; } catch (error) { alert(error); } and it returned: Error: Error #2014 I noticed...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 4, 2008
1:32 pm
2454
Is it possible to have a system tray icon bubble with a message. e.g. new update available, click here - something like that. -- ShiftCreate Limited ...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 4, 2008
1:49 pm
2455
Not in 1.0. mike chambers...
Mike Chambers
mesh.rm
Offline Send Email
Feb 4, 2008
5:16 pm
2456
Well, you can pop-up a lightweight window for this. You can also change the icon image to indicate that an event of interest has occurred. What is more...
brodnack
Offline Send Email
Feb 4, 2008
5:33 pm
2457
i think there must be a built-in windows widget for this - as it is common in many applications. it should just be a case of whether adobe decide to build an...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 4, 2008
5:53 pm
2458
... I don't think it's so important (given that there is a workaround) that AIR 1.0 should be delayed. You're welcome to enter it into the bug list, of course,...
Tom Chiverton
tom.chiverton
Offline Send Email
Feb 5, 2008
11:51 am
2459
is there a public air bug tracker - or are u referring to the flex bug tracker or forum? ... -- ShiftCreate Limited http://www.shiftcreate.com e....
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 5, 2008
2:20 pm
2460
... adobe.com/go/wish is the 'offical' feedback route for projects with no entry in bugs.adobe.com/jira. -- Tom Chiverton ...
Tom Chiverton
tom.chiverton
Offline Send Email
Feb 5, 2008
2:35 pm
2461
request sent. Thanks Tom. ... -- ShiftCreate Limited http://www.shiftcreate.com e. adam@... t. 020 8123 3766 m. 07969 689 484 skype: adamjjimenez ...
Adam Jimenez
adamjjimenez
Offline Send Email
Feb 5, 2008
4:29 pm
2462
Hello. I checked LiveDocs of mx.controls.HTML and mx.controls.HTMLLoader. I think there are NOT properties for HTTP headers. How can I get HTTP headers of...
Shigeru Nakagaki
sn197412
Offline Send Email
Feb 12, 2008
5:08 am
2463
HTTP headers are a property of an HTTP request, not an HTML control. See HTTPStatusEvent. Oliver Goldman | Adobe AIR Engineering...
oigoldman
Offline Send Email
Feb 12, 2008
5:44 am
2464
Can someone give me some pointers on dragging and dropping? I got some FTP code off of RIAForge.com and I would like to set my application up to fire this...
Chad Gray
rchadgray
Offline Send Email
Feb 12, 2008
4:30 pm
2465
Hmmm I am getting close. When I trace the file that is dropped I get: [object File] Can I take this File Object and get the file's path? IE...
Chad Gray
rchadgray
Offline Send Email
Feb 12, 2008
7:12 pm
2466
File.nativePath. (It's in the docs!) Oliver Goldman | Adobe AIR Engineering...
oigoldman
Offline Send Email
Feb 12, 2008
7:14 pm
2467
I don't see is in the auto-complete in Flex Builder 3. I will hit the docs. Thanks! ... From: apollocoders@yahoogroups.com...
Chad Gray
rchadgray
Offline Send Email
Feb 12, 2008
7:30 pm
2468
Sorry for the really stupid noobie question, but I cant figure this out. How do I format my trace to show the path of the file that is dropped onto the...
Chad Gray
rchadgray
Offline Send Email
Feb 12, 2008
7:54 pm
2469
File.nativePath is a property, not a static method. So inside your loop you want: trace( f.nativePath ); Oliver Goldman | Adobe AIR Engineering...
oigoldman
Offline Send Email
Feb 12, 2008
7:56 pm
2470
Thanks for the help Oliver! I am learning! ... From: apollocoders@yahoogroups.com [mailto:apollocoders@yahoogroups.com] On Behalf Of oigoldman Sent: Tuesday,...
Chad Gray
rchadgray
Offline Send Email
Feb 12, 2008
8:13 pm
2471
Have you tried changing NativeStageEvent to NativeDragEvent in the event handlers? (Or is this just a transcription error?...
brodnack
Offline Send Email
Feb 12, 2008
9:10 pm
Messages 2442 - 2471 of 2983   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help