adobe

Adobe CQ EXTJS component data post to servlet

浪子不回头ぞ 提交于 2020-01-05 09:31:50
问题 I got a EXTJS CQ component with two text fields and and button. When the "save" button clicked, the dialog data has to be submitted to custom sling servlet. Custom sling servlet will call a osgi service and finally saves data to crx using jcr api. Question : How to post the dialog data to servlet ? I am new to CQ, Thanks for any help! -Sri 回答1: I'm assuming when you say "save" you are referring to some custom button and not the "OK" button that saves the dialog data to the node. Add a handler

adobe air: how to embed air runtime or simply distribute air applications?

限于喜欢 提交于 2020-01-05 08:45:18
问题 My question is quite simple: I want to create an adobe AIR application for desktop (windows). What if an user does not have AIR runtime installed ? Does newest version of AIR come now with EMBEDDED AIR runtime, so it works even for people that do not have AIR runtime installed ? if not, what would be the simplest way to distribut my AIR application and make sure people that do not have air runtime will be able to run it ? regards 回答1: With the Release of the AIR 3.0 SDK you are now able to

AIR Sqlite: SQLEvent.RESULT not firing, but statement IS executing properly

假装没事ソ 提交于 2020-01-03 17:15:06
问题 Ok it looks likes like I have stumbled upon a strange timing issue... I made a quick SQL wrapper class for executing sql statements. However after .execute() is called, the SQLEvent.RESULT event is never fired, but the new entry in the DB is created as it should be. The really really odd part is if I put a setTimeout() just after calling execute() the event fires as expected.. I hope I'm missing something really obvious here... Here is a link to an example air app: http://www.massivepoint.com

Conditionally enable/disable fields in AEM 6.1 (granite.ui) TouchUI dialogs

孤人 提交于 2020-01-03 15:34:17
问题 Does anyone have any experience with conditionally disabling fields based on value of a previous field in an AEM6.1 TouchUI dialog? To give some context I have a checkbox in my TouchUI dialog used to enable/disable (hide/show) a Call To Action button within a component. I'd like to disable the CTA buttonText and href fields in the dialog itself where the author has disabled the CTA via the checkbox. Adversely I'd like to enable these fields where the CTA checkbox is checked enabling CTA. I

how to stop FLEX from caching?

不打扰是莪最后的温柔 提交于 2020-01-03 05:52:27
问题 i'm working with a flex app I didnt design myself, in fact i really don't know much about the workings of flex. I want to disable all caching since its causing a lot of problems since we changed to a new payment method. I know the disabling cache isnt ideal, but it just needs to be done for the moment. I found a server side solution for this, but my implementation of it doesn't seem to work. i tried setting it in the header, here's the piece of code for my index.html <head> <meta http-equiv=

How to track video milestones in brightcove html5 player using adobe DTM?

早过忘川 提交于 2020-01-03 04:50:09
问题 I have a query regarding how to track milestones(Video) in brightcove player by using html 5. There is already predefined events available for PLAY, PAUSE, STOP, but for the tracking the milestones i am unable to track it via DTM. Below mentioned is the code,which i have written for PLAY & PAUSE - CODE - videojs('te-brightcove-trigger-video_html5_api').on('play',function(){ var myPlayer = this; console.log('play'); s.linkTrackVars='events,eVar21,prop21'; s.linkTrackEvents='event22'; s.eVar21

How to create wizards in grante UI and design it in coral UI html in AEM

你说的曾经没有我的故事 提交于 2020-01-01 22:15:24
问题 As i am new to AEM development, I want to know how to create wizards in AEM and how to design those using coral UI. As i have created wizard and it contains two step view: source ---> select I have designed this two step wizard and i have to show different items on each step.This steps are nothing but nodes under my createfragment page. 1) Source: I am having two radio buttons lets suppose selecting gender like male and female. I have created node for source and under source items, created

How open pdf in Air for Android/Black berry

无人久伴 提交于 2020-01-01 17:09:56
问题 I want to open pdf in Air for Android/Black berry. How i do that? I use AIR 2.6 and IDE is Flash Builder 4.5. 回答1: StageWebView. http://help.adobe.com/en_US/as3/dev/WS901d38e593cd1bac3ef1d28412ac57b094b-8000.html Example copied from the link above: package { import flash.display.MovieClip; import flash.media.StageWebView; import flash.geom.Rectangle; public class StageWebViewExample extends MovieClip{ var webView:StageWebView = new StageWebView(); public function StageWebViewExample() {

How open pdf in Air for Android/Black berry

╄→гoц情女王★ 提交于 2020-01-01 17:09:12
问题 I want to open pdf in Air for Android/Black berry. How i do that? I use AIR 2.6 and IDE is Flash Builder 4.5. 回答1: StageWebView. http://help.adobe.com/en_US/as3/dev/WS901d38e593cd1bac3ef1d28412ac57b094b-8000.html Example copied from the link above: package { import flash.display.MovieClip; import flash.media.StageWebView; import flash.geom.Rectangle; public class StageWebViewExample extends MovieClip{ var webView:StageWebView = new StageWebView(); public function StageWebViewExample() {

Adobe Native Extensions — not working?

我的未来我决定 提交于 2020-01-01 15:36:15
问题 I am trying to work with "Adobe Native Extensions" - one of the newest features released in Adobe Flash Builder 4.5. I am trying to communicate between Adobe AIR and a native C++ application on Windows 7 with the help of Adobe Native extensions. (Of course, we can do this today with NativeProcess APIs, but ANE is much more powerful) I followed the steps mentioned in the following article: http://thingsico.de/blog/tag/native-extensions/ created the sample DLL using cygwin to compile the C++