I have added multiple SAML Apps configured in G Suite using built-in options including Atlassian and Salesforce. When selecting the built-in options, I see no way to provide an icon and they do not appear to contain an appropriate icon (they all have a pencil icon). As a result, the app launcher is full of icons that you cannot tell apart. I noticed if I create a custom SAML App then I have an option to upload an icon -- though I see no way to change it after the fact.
Am I missing something or is this expected behavior? If I want custom icons do I need to create custom apps? Is there perhaps an API I can call to configure this?
Try this from the Set up your own custom SAML app:
(Optional) Click Choose file next to the Upload Logo field to upload a PNG or GIF file to serve as an icon. The file size should be
256 pixels square.
Related
In Magnolia, is it feasible to customize Find Bar UI or Search Result Screen to add an "Export" button so that users could export search results to CSV?
I realized that Find Bar UI component is a core component that belongs to admincentral module. If we wanted to extend it then we might have to touch to Magnolia core features. I'm wondering whether there is any possible approach.
Export button can be placed wherever in this search result screen like below
Is it possible/feasible? Yes, you need to customize the UI and then reconfigure the setup to use your customized Findbar component instead of the default one (see this). But since the code is open source, it shouldn't be a problem.
I recently received a real headache problem for UWP apps.
Basically I would like to change the main Icon of my app depending on an action.
Let's say I would like to change the App Icon if a certain user logs into my app so that he does not see default App Icon after closing the app.
I found different links which refer to work on tiles, which works perfectly fine. But I did not come up with a solution to change the App's Icon.
Is there a way like in iOS to use AlternateIcons or in Android to just call an Alias?
Tiles are technically the icons in the UWP world. You can update the live tiles as you desire with notifications and they can provide richer visual surface than classic icons.
For the App List and Taskbar icons however, those are just static and you cannot change them at runtime. They come from the Package.appxmanifest Visual Assets section, so you have to define them ahead of time.
You however use Badge notifications to display simple info next to the app icon in the Task bar as well as on the main app tile.
I have an online logo maker tool, and I want to give users the option to choose a font from a selection of about 100 free web fonts I have collected.
The best way to do this would be in a form select box, where each font was displayed as an option in the select, see example:
Unfortunately there doesn't seem to be any way to achieve this using CSS, so I have been looking at 3rd party plugins.
I found a very nice script by Bootstrap Form Helper which lets you display a select box of the user's device fonts, and one which displays a selection of Google Web Fonts as a select box, but neither of these quite fit my purpose. (The fonts are not on the users device, or hosted by Google).
I want to do exactly the same thing, but with a list of ".ttf" files from my server, for example:
[
"Alakob" : "http://www.example.com/fonts/Alakob.ttf",
"Baron Neue" : "http://www.example.com/fonts/Baron-Neue.ttf",
"Casper" : "http://www.example.com/fonts/Casper.ttf",
"Damion" : "http://www.example.com/fonts/Damion-Regular.ttf",
...
]
Does anyone know if either of these scripts could be amended to display a list of font files I provide as a JSON or XML feed, rather than the fonts on the user's device, or from Google font?
Many thanks for reading!
Is there any way to access the internal images that the iPhone simulator uses?
For example, if I want to get the original image used for one of the default app icons (e.g. Contacts). This way I could get the highest possible resolution, and examine it for purposes of creating similar icons for my app.
Another example of an image I might want to access is the default icon for a contact:
I'm not asking for a programmatic solution (although that would work), I'm asking for a manual solution, possibly navigating the Simulator's file system using Finder.
You can find the apps at e.g. /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/Applications. The icon of Contacts is at /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/Applications/Contacts.app/icon.png or icon#2x.png. But you can't easily read them, as they are in a strange format (it's not standard PNG), you need to convert them. See for example this article or this article.
EDIT: added two more links for iphone icon images.
You dont need to do this.
Just grab a User Interface Kit:
Heres a website you can go to to download the .psd files which you can use for your self for free:
http://webdesignledger.com/freebi
For another library of iphone icons. This one includes the contacts icon:
http://www.iphonestudio.co.uk/page/iphone_icon_gallery
And here are the iphone icons on the main screen made downloadable for your own use.
here are official icons in different sizes.
check the quality of the Photos icon.
wow.
http://www.iconarchive.com/category/application/iphone-icons-by-judge.html
Hope this helps.
Let me know if it did
PK
Let's say that you're using some black box library (i.e. no source code) that sets your cursor to something when rolling over a certain sprite. You can override that by catching rollOver and rollOut events, blocking propagation and using the CursorManager.
Question: is there a way to tell the CursorManager to use the system cursor?
Obviously, I could feed the CursorManager some "system like" cursor, but this would look weird if the local settings are different from that icon, which is likely to be always.
thank you!
f
You can create your own version of CursorManager - just create file mx/managers/CursorManager.as, copy it's content from default manager (use Ctrl+Shift+T to navigate to it) and change the code.
If you use RSLs then you need to create monkey-patch and load it BEFORE RSLs.
if you embed SDK into code then you can simply compile the app and class will be replaced.