I need to insert the emoticons/smileys in my app. is it possible in bb 10 ? Any built in code for that or need to customize that images in the app?
i have enabled the emoticons in textfield and labelfield using the following code.it works but i need to select the emoticons using emoticons popup dialog
content {
flags: TextContentFlag.Emoticons
}
I have attached the image for ref.
Thanks,
I think presently Emoticon is presently not there i think so,Plz refer roadMaps
https://developer.blackberry.com/cascades/download/roadmap/
Related
I want to edit the default style of Slider control in windows 8 app.
Need to customize the slider as per my requirement.
I want the slider like the following
I tried with the style given in this link , but it only supports windows8.1 app, but mine is windows 8 app.
Can anybody help me to edit the default style.
Thank you.
Noorul.
I want to create dynamic text changing icon like the calendar app in iOS 7 is there any way to do so?
You can not do this, there is no API allowing this.
Your apps icon is in your application bundle which is readonly and therefor can not be modified.
Sorry brother ... !! There is no API for your requirement. Apple does this only for their apps. Your app icon must be bundled with your application bundle.
I'm using a set of icons inside my Windows Store App for some functionality, I want to code for rearranging according to user wish like how we see in Windows 8 Start Screen. I want guidance and some resources for it, Do you have any suggestions?
Check out JQuery's GridView. Like Nate said. There are apps in the store that demonstrates the gridview. See CodeShow app. It's made from Javascript though.
Windows 8 metro style app tiles are created based on pre-defined xml templates (found here).
Is there any way to hook up to Windows' rendering of the tile to allow a tile preview within an app?
In my app I would like to offer the user a subset of the tile templates listed in the above link and let the user customize the tile content. A live preview of the customized tile rendered within my app would greatly improve the user experience.
you should look into HubTile.
I don't know any free control's right now, but Telerik and Syncfusion have HubTile control
You can't get access to real Windows tile rendering, but you can simulate it since all templates are known. It is very unlikely that Microsoft would change the way tiles are rendered and even if they do you should be able to issue app update to keep up with Microsoft.
i am writing an application for windows phone and i am using a webbrowser
i am navigating to an image , but this image is not full screen and it seems so awfull !
is there any way , either to full the wite with user's background color , or to set a default zoom on a spesific spot ?
thank you !
The webbrowser control is slow, a memory hog and hard to customise.
I think you shouldn't use the web browser for displaying and zooming this image.
Instead, take a look at using a canvas and image control together like in the MultiTouch sample and library - http://www.galasoft.ch/Touch/wp7/ and http://multitouch.codeplex.com/
If you do need to use the webbrowser, then you could try to wrap the image in an HTML page - and you could use a mixture of html, javascript and css (including dynamic javascript called from the host) - that might allow you to achieve some of the customisations you are looking for.