|
In adobe air, is there anyway to get OS open a file, in their native applications?
What about in Flex 4?
Started by James_Dude on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But stay tuned ;)
=Ryan ryan@adobe.com
You may be able to use something like... .
You might want to checkout StackOverflow Question 265265 - Can Adobe AIR applications execute processes on the local client machine?
In AIR 1.5 there isn't any way to do it .
|
|
Is there anyway to delete a confluence page and have it delete all of its children at once.
Started by oo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You can do this through the api by basically scripting it yourself
the soap api supports:
deleting a page getting all the children of a page so between 1 & 2, you can keep recursively getting... .
Referring to this thread , this is not possible for the moment .
|
|
It seems like i only can choose from:
Cntl+2 --> Cntl+9
is there anyway i can assign my own shortcut keys (outside of this range) to categorizing email?
Started by oo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I found this link which seems to do the trick:
http://www.ocellated.com/2009/03/18/pimping-microsoft-outlook/comment-page-1/#comment-12081 .
You can write a macro, then add it to the menu and assign that menu item a shortcut key .
|
Ask your Facebook Friends
|
I am created images on the fly in my controller (bitmaps, pngs, gif) and sending them down to the view. Is there anyway to embed hyperlinks into an image ?
Started by oo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Can't you just wrap the image with an anchor?
<a href="/controller/action/123"> <img src="/controller/dynamicimage/123" alt="" /> </a>
A html helper method extension might be useful... .
No, there is no way to embed hyperlinks into images .
|
|
It seems that fieldset defaults to 100% width of its container. Is there anyway that you can have the field set just be as big as the widest control inside the fieldset ?
Started by oo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Use ....
I find that I often have to constrain the width of select controls, or else really long option text will make it totally unmanageable .
You can always use CSS to constrain the width of the fieldset, which would also constrain the controls inside .
|
|
Is there anyway to write android applications in PHP?
This page clearly mentions that Android apps should be written in Java. Just wondering if there is another way...
http://developer.android.com/guide/topics/fundamentals.html
Answer Snippets (Read the full thread at stackoverflow):
I haven't used the Android myself, but maybe it has Gears... .
That would make an internet connection required though.
However, if you're so inclined, you could make a web app that checks for the Android browser and only displays on the Andriod .
No, you can't.
|
|
I am going on a long plane ride. I have tagged about 100 blog post with "To Read" and if possible, I would like to somehow download them locally so I can read then all on the plane.
Is there anyway to do this?
Started by oo on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
Click that and....
After installing Gears, when you visit Google Reader , you'll notice a small green arrow ( ) in the upper right corner .
Install Gears if you use Firefox or Internet Explorer (it's built into Chrome so there's no need to install anything) .
|
|
Two years ago I had a need to trap the closing of a web browser as a javascript event for a web app. At the time I found there was no way doing this that worked for all browsers. IE had an event that I could used, but it was IE specific. I looked into...
Started by Flynn81 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This event will also get fired each time someone tries to navigate to another page, refresh... .
You can use the
window.onbeforeunload
javascript event to do this, though this will trap more than just closing the browser .
Onunload works in IE and Firefox.
|
|
I do all my PHP coding in Dreamweaver (currently version CS3) I am used to it and like it. There is one thing I would like though, is to be able to check for errors. Currently I don't see them until I upload the page to a server. Is there anyway to setup...
Answer Snippets (Read the full thread at stackoverflow):
I ....
Unfortunately, you have to do some hackery with Cygwin to get it to work under Windows .
The closest you can come to that is with PHPLint .
Do you mean as you type? Since PHP isn't compiled, it's not as easy to do as with a language like Java or C# .
|
|
Hi,
We've created an intranet site that requires the same password as the user's network login, so we use LDAP to check the username/password.
That's fine, but if they enter it incorrectly three times it locks their account out, and one or two users have...
Started by Nick on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You need....
You can use LBE (LDAP Browser/Edit) to extract LDIF files of a user object and then use your favorite diff tool to compare them .
Without a standard "lockout" field I would use an LDAP browser to compare an account before and after a lockout .
|