How to do user changeable themes

hi,
how to do user changeable themes.
i was thinking of css but flex doesnt allow full control with
css. also if i want to change layout per theme how do i achieve
that.
thanks

Count,
Give it more than a week! I'm sure there are limitations,
just like anything, there are limitations, but I think you can get
over these particular issues. I'll be honest, I don't know the
answers, right now, but I think a good place to start would be the
Flex Style Explorer example (for the themes).
http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
They manage to do some of what you want, I'm sure you can
work out the rest. With all of what you're looking for, I'd guess
it can be achieved with data binding (the source of the CSS, which
"panels" are visible and which are not, the size of each, for
example).
Cheers,
David

Similar Messages

  • How to unlock users in a SAP system if all of them are locked

    How to unlock users in a SAP system if all of them are locked
    Posted: Mar 21, 2007 10:07 AM         Reply      E-mail this post 
    Hello Experts,
    In any SAP System,if a user having authorizations has mistakingly locked all the users of the SAP system,then how wll we unlock those users bcoz we wont be able to logon into the SAP System. Requested to revert your valuable replies at earliest.This happened with us,how to resolve it.My Email Id is [email protected] .
    Regards,
    Saumya

    Hello Siva And Manas,
    Thanx for ur replies .
    Manas: These SQL statements we hv to run at the Command Prompt level only na.......
    Siva : U r telling to delete the SAP* user ,u dont mean with the System created default user SAP* rite but u mean to delete our self created SAP*/any super user rite? Secondly how to delete tat user at the database level?
    Regards,
    Saumya
    If all the users are locked , they can only be unlocked via sql.
    Actually waht happens is if the uflag field of an user in table usr02 is 0 then the user is unlocked. Different values of the uflag field in table USR02 mean:
    0          User not locked
    32         Locked by CUA central administrator
    64         Locked by administrator
    128       Locked after failed logon
    Incase all the users are locked execute the following sql to unlock them
    update sap<sid>.usr02   (means update sapd01.usr02 or sapq01.usr02 etc)
    set uflag='0' ;
    commit.;
    This unlocks all the users.
    update sap<sid>.usr02
    set uflag='0' where bname='xxx';
    commit.;
    This unlocksonly the user xxx.

  • !!!How to restrict user for making  changes in Sales order , partner level

    Hi all,
    Can anybody tell me how to restrict user for making  changes in Sales order  at partner level, is it through user exit?

    Hi Ruchi
    I hope u had gone to the screen fields which u want them not to be editable. So there u select all the fields contents which u do not want to to be changed and check the boxes with W.content and Display and save it. Once evrything is done u have to activate the particular transcation going in to the standard variants and put the name and click the activate button.
    Hope its clear
    Reward if help ful
    Sri

  • How to enable user sets from tools in sales order

    Hi,
    How to enable user sets from tools in sales order..it is greyed out..
    and is there anyway we can do to add shipsets from other place?
    Thanks

    Hi Ruchi
    I hope u had gone to the screen fields which u want them not to be editable. So there u select all the fields contents which u do not want to to be changed and check the boxes with W.content and Display and save it. Once evrything is done u have to activate the particular transcation going in to the standard variants and put the name and click the activate button.
    Hope its clear
    Reward if help ful
    Sri

  • How to create user in Active directory

    Hello,
    I'm trying to create a user in active directory via the following example:
    String userName = "cn=Jef Klak,ou=Ps Users,ou=Users,ou=Managed,dc=xxx,dc=local";
         Attributes attrs = new BasicAttributes(false);
         Attribute oc = new BasicAttribute("objectClass");
         oc.add("top");
         oc.add("person");
         oc.add("organizationalPerson");
         oc.add("user");
         attrs.put(oc);
              attrs.put("cn","Jef Klak");
              attrs.put("giveName","Jef");
              attrs.put("sn","Klak");
              attrs.put("displayName","Klak, Jef");
              attrs.put("description","IR");
              attrs.put("userPrincipalName","[email protected]");
              attrs.put("mail","[email protected]");
              attrs.put("company", "XXX");
              attrs.put("sAMAccountName","jk666");
    attrs.put("userAccountControl",Integer.toString(UF_NORMAL_ACCOUNT + UF_DONT_EXPIRE_PASSWD+ UF_ACCOUNTDISABLE));
              Context result = fctx.createSubcontext(userName, attrs);
    As a result I'm getting the following error:
    javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - 00000057: LdapErr: DSID-0C090B38, comment: Error in attribute conversion operation, data 0, vece
    remaining name 'cn=Jef Klak,ou=Ps Users,ou=Users,ou=Managed,dc=xxx,dc=local'
    Anybody any tips or advice on this one? Or maybe a working examples how to add users in AD?
    Listing entries in the AD is no problem, so it's only adding them.
    Many thanks,
    Filip                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

              attrs.put("giveName","Jef");
    javax.naming.directory.NoSuchAttributeExceptionSpelling error.

  • In powerpoint mac 2008, how do i apply a theme to a single slide without it changing other slides' themes in the powerpoint?

    In powerpoint mac 2008, how do i apply a theme to a single slide without it changing other slides' themes in the powerpoint?
    <Edited by Host>

    As PowerPoint is not an Apple product (a lot of Mac users avoid Microsoft stuff) you may get faster and better help by using the MS Office:Mac forums here:
    Office for Mac forums

  • How to get user input to keep in array in the form of int[]?

    I really want to know how to get user input to keep in an array. Or if it's impossible, can i use the value in "int" and transfer it to an array?

    What I understand is that you want to set an input from the user in an array of int.
    Here is how it work:
    1. Create a stream and a buffer to get and store the informations entered by the user:
    BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
    2. Set this input in a String:
    String input = stdin.readLine();
    3. Set this string in an int:
    int userInput = Integer.parseInt(input);
    4. Then you can put this int in the array.
    Warning this code throws IOExceptions and NumberFormatException ( when you try to set letters as int ). But you can catch them easily.

  • How to handle user preference which has "_" and " " in the name

    Hi Experts,
    I have a question how to handle value which has like "_" and "space" etc in user preference.
    If setting "a_b-c d", I could not retrieve this because it's escaped in database.
    So this code can't get value even though I can set it.
    Is there any restriction of name? Is there any documentation how to code user prefernece which has non alphabet and number in the name?
    I know it's possible to handle the data like adding escaped data. But I don't think this is the best way to retrieve the data. Because nobody confirm it's not problem in the future.
    Could you tell me the best way to get these user preference?
    Thanks in advance,
    Masaaki Tada
    Here is a sample.
    <%@ page contentType="text/html;charset=Shift_JIS" %><%@ page language="java" import="com.plumtree.remote.portlet.*, com.plumtree.remote.prc.*, java.util.*" %>
    <%
    /** * UserInfo - Simple Page * Display User Information*/
    // VariablesIPortletContext oPortletContext = null;IPortletRequest oPortletRequest = null;IPortletUser oPortletUser = null;IPortletResponse oPortletResponse = null;IRemoteSession s;IUserManager oUser;
    /* Get Portlet Objects */
    try{oPortletContext = PortletContextFactory.createPortletContext(request, response);oPortletRequest = oPortletContext.getRequest();oPortletUser = oPortletContext.getUser();oPortletResponse = oPortletContext.getResponse();} catch (Exception e) {oPortletContext = null;oPortletRequest = null;oPortletUser = null;oPortletResponse = null;}
    String val = oPortletRequest.getSettingValue( SettingType.User, "a_b-c d" );String hoe = oPortletRequest.getSettingValue( SettingType.User, "abcd" );out.println( "a_b-c d: " + val );out.println( "abcd : " + hoe );
    oPortletResponse.setSettingValue( SettingType.User, "a_b-c d", "aiueo" );oPortletResponse.setSettingValue( SettingType.User, "abcd", "bbbb" );%>

    Plumtree recommends that user preference names have only alphanumeric characters in them (a-z, A-Z, 0-9). Any non-alphanumeric characters will be encoded by the EDK.
    I strongly suggest that you change your user pref name to something that's alphanumeric. However, if that is not possible, you can use the following workaround: in the web service editor, enter the encoded name for the user pref. There are several ways to get the encoded name.
    One way is to encode the pref manually, yourself. Plumtree uses the %u encoded format: each non alphanumeric character is converted into %uxxxx, where xxxx is the Unicode representation of the character. For all ASCII characters, just look at the ASCII hex chart. For example, character "-" has a hex value of 2d. So, a preference name "jane_pref" would be encoded to "jane%u002dpref", and you'd enter the latter value on the preferences page in the web service editor.
    The other way to find out the encoded value is to set a preference programmatically and use the HTTP tunnel tool to look at HTTP traffic between the portal server and remote server. The remote server will be sending a HTTP header to the portal server (the header name will probably be CSP-User-Pref) and inside the header you should see the pref name, encoded with %u. Just copy it out of there and into the web service editor.
    Hope this helps,
    Jane

  • How create new user in sql developer?

    so i tried creating a new user in SQL developer, under the worksheet section,  for a 12c database
    create user Hares1
    identified by book;
    but I get this error
    SQL Error: ORA-65096: invalid common user or role name
    Sorry I know this is a generalized question. I only learned how to actually connect today - any help of a next step would be appreciated.

    so i tried creating a new user in SQL developer, under the worksheet section,  for a 12c database
    create user Hares1
    identified by book;
    but I get this error
    SQL Error: ORA-65096: invalid common user or role name
    The 'next step' is RTFM. Sorry but for 12c multitenant you simply MUST read the documentation about the new multitenant architecture.
    Your 'problem' is not creating a user with sql developer - it is how to create users in 12c.
    See my extended comments and reply in this thread (and several other threads I reference there) which addresses your exact problem
    12c: ORA-65049: creation of local user or role is not allowed in CDB$ROOT
    http://www.oracle.com/pls/db121/homepage
    I suggest you first read chapters 17 and 18 of the Concepts doc about the new multitenant architecture of 12c.
    http://docs.oracle.com/cd/E16655_01/server.121/e17633/part_consol.htm#CHDGDBHJ
    The 'Common Users in a CDB section answers your question
    >
    The name of every user-created common user must begin with the characters c## or C##. (Oracle-supplied common user names do not have this restriction.)
    >
    There are two types of users in 12c: common and local. You need to understand the difference between them.
    Until you read those doc chapters you won't understand these terms: common user, local user, CDB, PDB, root container, and many others.
    As I said in that other thread:
    You will NOT be successful working with 12c unless you have read and understand the new multitenant architecture that it uses. There are very simple things (connecting, startup/shutdown, creation of users, grants to users, etc) that just don't work the same old way anymore.
    If you try to just 'plow through it' without reading about it you will likely get an exception that you won't understand and it will likely use a term (CDB$ROOT) that you won't understand. Then you will hunt all over (or worse, ask in the forums) to find out about that term.
    Yes - I know how adverse some people are to RTFM replies. But for 12c multitenant it is mandatory to read the docs no matter how expert you may be in previous Oracle versions.

  • Find out how many remote users are login in to my system.

    Hi
    i just want to know how many no of remote users are logged in to my system and their information.
    how can i restrict them. how to limit the remote connections.
    how many ftp user's are connected to my system.
    can any one send me documents which contain brief information for about questions.

    use rusers and finger commands to check the users remotely login
    form limitint the access of user u need to create $HOME/hosts.equiv and $HOME/.rhosts and making entry for those users who u want to allow

  • How to add users from person or group field in a sharepoint list to sharepoint group

    Hi,
    How to add users(single or multiple) from person or group field in a sharepoint list to sharepoint group programmatically?
    Any suggestions would be appreciated.
    Thank you,
    AA.

    Hello,
    Use SPGroup.AddUser() method to add user in group. I have just written sample code in notepad so it is not tested:
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using(SPSite Site = new SPSite(SPContext.Current.Site.Url))
    Using(SPWeb Web = Site.OpenWeb())
    SPList list = web.Lists["ListName"];
    SPQuery query=new SPQuery ();
    query.Query = "<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Test</Value></Eq></Where>";
    SPListItemCollection items = list.GetItems(query);
    if(items.Count > 0)
    foreach(SPListItem item in items)
    //Get USers from person or group column
    SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users");
    SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString());
    SPGroup spGroup = spSite.RootWeb.Groups[groupName];//group name
    if (users.Count != 0)
    bool isUserInGroup = false;
    foreach (SPFieldUserValue user in users)
    foreach (SPUser item in spGroup.Users)
    string itemUserName = item.LoginName;
    string UserName = user.User.LoginName;
    if (itemUserName == UserName)
    isUserInGroup = true;
    break;
    if (!isUserInGroup)
    spGroup.AddUser(user.User);
    The above code will query list item and then get users from "Users" column. Now it will check whetehr user is already in group not, if not then add user in group.
    http://rajanijilla.blogspot.sg/2012/09/add-users-to-group-programmatically.html
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • When you find out that Muslims BE-HEAD gays, how long before you force THEM out of your pathetic organization? Huh?

    When you find out that Muslims BE-HEAD gays, how long before you force THEM out of your pathetic organization? Huh?

    Hello, since you care deeply enough to send this message instead of silently turning your back on us, you might spare a minute or two to go through these bits of information trying to clear up a some of the misconceptions that are flying around. Unfortunately some media outlets will rather publish sensationalized stories generating many clicks and increased revenue by ads than perform the most basic fact-checking:
    http://blog.gerv.net/2014/04/your-ire-is-misdirected/
    <br>https://medium.com/p/7645a4bf8a2
    <br>https://blog.mozilla.org/blog/2014/04/05/faq-on-ceo-resignation/
    Since this forum is a place primarily for volunteers and fellow Firefox users to provide technical support for Mozilla products and not a general place for discussing policies, I'm also going to close this thread. Should you still have any concerns on the subject that you want to discuss, please take them to the Mozilla governance mailing list located at https://lists.mozilla.org/listinfo/governance instead.
    Thank you!

  • How to prevent users from creating new folders in share folder directory?

    Hello guys
    I'd like to know How to prevent users from creating new folders in share folder directory but still keep their power of creating new folders in their personal 'my folder'?
    I tried changing the 'manage privilage ---- create folder' to deny certain user accounts, but by doing so, it also stops the user from creating new folders in their 'my folder', which is not good..
    I also tried going into these share folders and tried different access types such as 'change/delete', 'read', 'traverse folder' etc, but none of it work ideally. The 'change/delete' access still allows them to create new folders, 'read' access prevents creating new folders but also take away their power of saving reports..
    Any thoughts on how to take away their ability to ONLY create new folders in share folder areas without affecting their other privileges?
    Please advise
    Thank you

    Easy, on the shared folders root folder only give them 'read' or 'traverse folder' but on the the folder inside the shared folders root folder give them 'change/delete'. That means they can change anything inside those folders but not create any folders at the shared folders root level.

  • How do I reinstall iChat, how do PC users video iChat with me, and should I just use skype?

    1. I deleted iChat awhile ago by mistake. I searched ichat in Macintosh HD, and the only result was iChat the application file, but its icon is a faded out IWeb icon. When I click on it, it just bounces on my dock, until it disappears and an error message pops up stating it quit unexpectedly. I tried dragging the result to my desktop then redragging it into my Applications folder, but the same thing still happens (faded out iWeb icon instead of iChat icon, bounces, quits, error message). I also tried installing the iChat AV (forgot which version) and iChat Update 1.0 Universal, both of which said I had to have 10.4. I have 10.5.8. Also, if this makes any difference, the current faded out iChat in my Applications folder says its version 4.0.9. I do not have my reinstall CD, and do not want to call support and have them send me one. Considering I bought my macbook in late 2008, and my warranty is up, I'm pretty sure they wouldn't help me anyways. I also do not know of anyone who has a mac so the sharing option can be crossed offed. Is there a downloadable version of iChat for 10.5. users?
    2. If I somehow managed to reinstall a working iChat, how would PC users connect to me and vide chat?
    3. Should I just use skype? Would i have to download anything? Is skype video chat free? What are the differences between iChat and skype, and which one is better?
    Thank you for your time!

    Hi,
    Reinstall Instructions
    Be SURE to Download (Manually) and Install the COMBO version of the last Update to the OS you did as iChat will need to be Updated (Software Update will think it is already done and you need to Fool it)
    Re 2).
    In theory it is just a question oif you using a valid AIM name in iChat
    This could be one registered with AIM or one from @mac.com or MobileMe if paid for or a current trial.
    In Practice it can need a bit of tweaking at both ends
    They Need to allow the AIM App through the Windows firewall as an Exception (AS with any Non Microsoft app)
    They may also need to turn off the "Real Time" option that does not work to iChat and effects A/V chats as well.  (It is Sending as you type). It will be in one of the Menus of their Budy List.
    Post back for more if you get stuck.
    Re 3)
    Skype does offer free Video Chat and some people resort to it when iChat to AIM does not work.
    It is free (At present - and you only pay for the Connection to and from real phones)
    Skype was bought by Microsoft within the last week and things may change at some point in the future.
    iChat has better Video
    Audio depends on the capabilities of your Mac and their PC but is probably about equal.
    Connection methods differ and iChat's Video and Audio Chats are technically more secure (you can in fact log out of the Buddy List as they adre Peer-to-Peer where as Skype uses a little bit of everyone's bandwidth (Between 40 and 100 other End Users)
    Other options are here
    Video options are from 8 onwards
    Mebeam is now called Koowy. (Video Chatting in a Web Browser using Flash)
    NOTES;
    Google Do a Plug-in for Intels to allow you to use their Web Mail Page Chat Option
    It can Conflict with Flash if you use more than one option.
    10:24 PM      Tuesday; May 17, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Newly added bookmarks do not automaticcaly incorporate into existing A-Z list no matter how I try to organize them.

    Your many questions from users shown echo my problem -- so how do I correct it????? I didn't see any of your replies to these users giving them an answer to this similar problem.

    * Clicking the star in the location bar will bookmark the page in the "Unsorted Bookmarks" folder and the star turns yellow (blue on Mac) to show that.
    * If the URL in the location bar is bookmarked (star at the right end is yellow/blue) then click the highlighted star or use "Bookmark This Page" (Ctrl+D) to edit the properties of the bookmark (name, location) and move it to another folder or remove the bookmark.
    * Click the star at the right end of the location bar once to bookmark the current site and click the highlighted star a second time to open the "Edit This Bookmark" window and move the bookmark to another folder or edit the name.
    * The "Unsorted Bookmarks" folder shows in the sidebar and the Library, but not in the Bookmarks menu drop down list.
    * Bookmarks > "Bookmark This Page" (Ctrl+D) will bookmark the page in the Bookmarks Menu folder (you need to confirm that).
    * "Bookmark This Page" can be accessed via the right-click context menu of that browser page or by using the keyboard (Alt+B) to open the bookmarks menu.

Maybe you are looking for