Tab in statictext

Hello!
I want to make a tab in a radiotext and it does not work when i just add a tab.
I can add a space and other characters using unicode but i cant make it work with the tab character!
staticText     =     Grp1.add("statictext",undefined,"What?     ");          // Does not work
staticText2     =     Grp1.add("statictext",undefined,"What?\u00A0");     // Works but this is a space character
staticText3     =     Grp1.add("statictext",undefined,"What?\u0009");     // Does not work with Tab character
Any Ideas?
// asdfasdfasdfasdfasdfasdf

I skiped the tab and used a fixed size on every staticText fields:
staticText.size = [65,15];

Similar Messages

  • Copied a page from a co-worker, but design tab is empty.

    My co-worker sent me a jsp and java file for a page he's developing so that
    I could review it and do a little work on it.
    When I open the jsp, I see the 3 tabs: Design, Jsp, and Java.
    The Jsp and Java pages work fine, but the Design page is empty.
    How do I find out what the problem is and fix it?
    Thanks.

    Here's the jsp file, though it shows up funny in the forum.
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <ui:page binding="#{ActiveIncidents.page1}" id="page1">
                <ui:html binding="#{ActiveIncidents.html1}" id="html1">
                    <ui:head binding="#{ActiveIncidents.head1}" id="head1">
                        <ui:link binding="#{ActiveIncidents.link1}" id="link1" url="/resources/stylesheet.css"/>
                    </ui:head>
                    <ui:body binding="#{ActiveIncidents.body1}" id="body1" style="-rave-layout: grid">
                        <ui:form binding="#{ActiveIncidents.form1}" id="form1">
                            <ui:checkboxGroup binding="#{ActiveIncidents.areaCheckBox}" id="areaCheckBox"
                                items="#{ActiveIncidents.areaCheckBoxDefaultOptions.options}" onClick="common_timeoutSubmitForm(this.form, 'areaCheckBox');"
                                style="height: 72px; left: 336px; top: 24px; position: absolute" valueChangeListener="#{ActiveIncidents.areaCheckBox_processValueChange}"/>
                            <ui:checkbox binding="#{ActiveIncidents.noPower}" id="noPower" label="No Power"
                                onClick="common_timeoutSubmitForm(this.form, 'noPower');" style="position: absolute; left: 432px; top: 24px" valueChangeListener="#{ActiveIncidents.noPower_processValueChange}"/>
                            <ui:checkbox binding="#{ActiveIncidents.hold}" id="hold" label="Hold" onClick="common_timeoutSubmitForm(this.form, 'hold');"
                                style="left: 432px; top: 48px; position: absolute" valueChangeListener="#{ActiveIncidents.hold_processValueChange}"/>
                            <ui:dropDown binding="#{ActiveIncidents.allFlagsList}" id="allFlagsList" items="#{ActiveIncidents.allFlagsListDefaultOptions.options}"
                                onChange="common_timeoutSubmitForm(this.form, 'allFlagsList');" style="left: 552px; top: 24px; position: absolute; width: 216px" valueChangeListener="#{ActiveIncidents.allFlagsList_processValueChange}"/>
                            <ui:dropDown binding="#{ActiveIncidents.everyStatusList}" id="everyStatusList"
                                items="#{ActiveIncidents.everyStatusListDefaultOptions.options}" onChange="common_timeoutSubmitForm(this.form, 'everyStatusList');"
                                style="left: 552px; top: 72px; position: absolute; width: 216px" valueChangeListener="#{ActiveIncidents.everyStatusList_processValueChange}"/>
                            <ui:table augmentTitle="false" binding="#{ActiveIncidents.table1}" id="table1" sortPanelToggleButton="true" clearSortButton="true" deselectMultipleButton="true" deselectSingleButton="true"
                                style="left: 124px; top: 144px; position: absolute; width: 3720px" title="Active Incidents" width="1116">
                                <script><![CDATA[
    /* ----- Functions for Table Preferences Panel ----- */
    * Toggle the table preferences panel open or closed
    function togglePreferencesPanel() {
    var table = document.getElementById("form1:table1");
    table.toggleTblePreferencesPanel();
    /* ----- Functions for Filter Panel ----- */
    * Return true if the filter menu has actually changed,
    * so the corresponding event should be allowed to continue.
    function filterMenuChanged() {
    var table = document.getElementById("form1:table1");
    return table.filterMenuChanged();
    * Toggle the custom filter panel (if any) open or closed.
    function toggleFilterPanel() {
    var table = document.getElementById("form1:table1");
    return table.toggleTableFilterPanel();
    /* ----- Functions for Table Actions ----- */
    * Initialize all rows of the table when the state
    * of selected rows changes.
    function initAllRows() {
    var table = document.getElementById("form1:table1");
    table.initAllRows();
    * Set the selected state for the given row groups
    * displayed in the table.  This functionality requires
    * the 'selectId' of the tableColumn to be set.
    * @param rowGroupId HTML element id of the tableRowGroup component
    * @param selected Flag indicating whether components should be selected
    function selectGroupRows(rowGroupId, selected) {
    var table = document.getElementById("form1:table1");
    table.selectGroupRows(rowGroupId, selected);
    * Disable all table actions if no rows have been selected.
    function disableActions() {
    // Determine whether any rows are currently selected
    var table = document.getElementById("form1:table1");
    var disabled = (table.getAllSelectedRowsCount() > 0) ? false : true;
    // Set disabled state for top actions
    document.getElementById("form1:table1:tableActionsTop:deleteTop").setDisabled(disabled);
    // Set disabled state for bottom actions
    document.getElementById("form1:table1:tableActionsBottom:deleteBottom").setDisabled(disabled);
    }]]></script>
                                <ui:tableRowGroup binding="#{ActiveIncidents.tableRowGroup1}" id="tableRowGroup1" rows="10"
                                    sourceData="#{ActiveIncidents.incidentDataProvider}" sourceVar="currentRow">
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn1}" headerText="incidentid" id="tableColumn1" sort="incidentid">
                                        <ui:staticText binding="#{ActiveIncidents.staticText1}" id="staticText1" text="#{currentRow.value['incidentid']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn2}" headerText="version" id="tableColumn2" sort="version">
                                        <ui:staticText binding="#{ActiveIncidents.staticText2}" id="staticText2" text="#{currentRow.value['version']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn20}" headerText="custaffectedmanuallycalced" id="tableColumn20" sort="custaffectedmanuallycalced">
                                        <ui:checkbox binding="#{ActiveIncidents.checkbox1}" id="checkbox1" selected="#{currentRow.value['custaffectedmanuallycalced']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn25}" headerText="onhold" id="tableColumn25" sort="onhold">
                                        <ui:checkbox binding="#{ActiveIncidents.checkbox2}" id="checkbox2" selected="#{currentRow.value['onhold']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn26}" headerText="onholdby" id="tableColumn26" sort="onholdby">
                                        <ui:staticText binding="#{ActiveIncidents.staticText24}" id="staticText24" text="#{currentRow.value['onholdby']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn27}" headerText="onholdwhen" id="tableColumn27" sort="onholdwhen">
                                        <ui:staticText binding="#{ActiveIncidents.staticText25}" id="staticText25" text="#{currentRow.value['onholdwhen']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn28}" headerText="onholdcomment" id="tableColumn28" sort="onholdcomment">
                                        <ui:staticText binding="#{ActiveIncidents.staticText26}" id="staticText26" text="#{currentRow.value['onholdcomment']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn29}" headerText="incidenttreeid" id="tableColumn29" sort="incidenttreeid">
                                        <ui:staticText binding="#{ActiveIncidents.staticText27}" id="staticText27" text="#{currentRow.value['incidenttreeid']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn30}" headerText="inactivityreport" id="tableColumn30" sort="inactivityreport">
                                        <ui:checkbox binding="#{ActiveIncidents.checkbox3}" id="checkbox3" selected="#{currentRow.value['inactivityreport']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn binding="#{ActiveIncidents.tableColumn31}" headerText="outagestatus" id="tableColumn31" sort="outagestatus">
                                        <ui:staticText binding="#{ActiveIncidents.staticText28}" id="staticText28" text="#{currentRow.value['outagestatus']}"/>
                                    </ui:tableColumn>
                                </ui:tableRowGroup>
                            </ui:table>
                        </ui:form>
                    </ui:body>
                </ui:html>
            </ui:page>
        </f:view>
    </jsp:root>

  • How to add a Tab in Company Detail System Form

    Hi Experts
    I am making a new Tab in Company Detail System form In Accounting Tab after Excise tab. This is tree of Tabs. Accounting Tab has two Sub-Tabs General and Excise. Now this New Tab 'Export' will also be the sub-Tab of Accounting Tab. My code for inserting tab is given below
    If pVal.FormType = "136" Then
                        Dim sysItem As Item
                        Dim SysEdit As Item
                        Dim lbl As StaticText
                        Dim editText As EditText
                        Dim oFolder As Folder
                        sysItem = form.Items.Item("140002039")
                        oItem = form.Items.Add("ExportFD", BoFormItemTypes.it_FOLDER)
                        oItem.Left = sysItem.Left + sysItem.Width
                        oItem.Top = sysItem.Top
                        oItem.Width = sysItem.Width + 20
                        oItem.FromPane = 5
                        oItem.ToPane = 6
                        oFolder = oItem.Specific
                        oFolder.Caption = "Import/Export"
                        oFolder.GroupWith("140002039")
                        sysItem = form.Items.Item("140002040")
                        SysEdit = form.Items.Item("140002041")
                        oItem = form.Items.Add("LDrMfNo", BoFormItemTypes.it_STATIC)
                        oItem.Left = sysItem.Left
                        oItem.Top = sysItem.Top + 65
                        oItem.Width = 120
                        oItem.FromPane = 6
                        oItem.ToPane = 6
                        lbl = oItem.Specific
                        lbl.Caption = "Drug Manufacture Licence No."
                        oItem = form.Items.Add("EDrMfNo", BoFormItemTypes.it_EDIT)
                        oItem.Left = SysEdit.Left
                        oItem.Top = sysItem.Top + 65
                        oItem.Width = SysEdit.Width
                        oItem.FromPane = 6
                        oItem.ToPane = 6
                        editText = oItem.Specific
                        editText.DataBind.SetBound(True, "OADM", "U_DrMfcLNo")
    The tab is added properly It also show labels and  Edit boxes but when I select this tab General and Excise tab is disappeared.
    Plz suggest me what can be the problem
    Thanks
    Best Regards
    Jitender
    Edited by: Jitender Garhwal on Apr 5, 2010 6:28 AM

    Hello,
    Change the ToPane Property of  General and Excise  until your last panelevel (6?)
    The ToPane property of these items is less than your folders panelevel ! This is the problem.
    Regards,
    J

  • Hide tabs in Item Master

    Dear All
    I Would like to hide all the tabs except sales and Inventory tab,how ever i have tried all the ways but when i navigate or do some updation Item Master form comes as default with all the tabs, Does SAP Business One Supports hiding of tabs .is it recommended to hide SAP Standard Forms tabs
    Zubair

    Hi,
    actually we came to the point that you cant hide them in the normal way.
    everything you do oItem.Top or oItem.Visible will influence the whole group.
    the last solution can be - put a big empty (with no caption) statictext label over the folders !
    than it looks like the other folders are not there
    give it a try - that's the last idea i have regarding this issue.
    lg David

  • UI Tabbed Panel?

    Hi All,
    I have created a UI Dialog script with Tabbed Panel (two tabs). When I am running my UI script, it's showing first tab. But I want show second tab on executing my script.
    Is it possible?
    Second how I know which tab is active in UI?
    Here is code
    var w = new Window ("dialog", "Tabbed Panel", undefined);
    var tpanel = w.add ("tabbedpanel");
    tpanel.preferredSize = [350,300];
    var general = tpanel.add ("tab", undefined, "Test1");
    var images = tpanel.add ("tab", undefined, "Test2");
    var buttons = w.add ("group");
    buttons.add ("button", undefined, "OK", {name: "ok"});
    w.show ();
    Thanks,
    Veera

    Hi
    After fixing a bit, it works for me. (OSX 10.6.4, InDesign CS4)
    Test2 is selected first
    use like this
    == > tabbedpanel.selction = tab
    var w = new Window ('dialog', "Tabbed Panel", undefined);
    var tpanel = w.add('tabbedpanel');
    tpanel.preferredSize = [350,300];
    var general = tpanel.add('tab', undefined, "Test1");
    general.add('statictext', undefined, "within Test1 Tab");
    var images = tpanel.add('tab', undefined, "Test2");
    images.add('statictext', undefined, "within Test2 Tab");
    tpanel.selection = images;
    var buttons = w.add('group');
    buttons.add ('button', undefined, "OK", {name: 'ok'});
    w.show ();

  • Custom Tab not getting high-lighted

    Custom Tab not getting high-lighted
    Hi,
    I have added a new tab TabX in Item Master data form.
    When only my add-on is running, it is working properly:
    When I click on the TabX, all the controls belonging to the tab are displaying correctly.
    TabX control is getting highlighted.
    When my add-on runs with another add-on (DBS):
    When I click on the TabX, all the controls belonging to the tab are displaying correctly.
    But, TabX is not getting highlighted. Instead, some other tab(purchasing tab) is getting highlighted.
    1) I'm not sure what is done by the other add-on.
    2) I cannot debug my add-on when the other add-on is running. (Because we cannot get the other add-on installed in our office network. It is running only in client site.)
    So, I need to 'guess' what might solve this problem.
    Please help me if you know any work-arounds, so that I can highlight TabX (The normal effect of pressing a tab) in this situation.
    Thank you.
    Regards,
    Geetha

    Hi Geeta,
    on FormLoad event,add the panelevel and set the panelevel of the Items.(must ber unique on that form)
    OnLoadAfter(ref SAPbouiCOM.ItemEvent pVal, out bool BubbleEvent)
                BubbleEvent = true;
                AddNew_IndirectCost_Tab()
    private void AddNew_IndirectCost_Tab()
                     oForm.DataSources.UserDataSources.Add("Folder", SAPbouiCOM.BoDataType.dt_LONG_TEXT, 100);
                    oItem = (SAPbouiCOM.Item)oForm.Items.Item("36");
                    oNewItem = oForm.Items.Add("oFldrCost", SAPbouiCOM.BoFormItemTypes.it_FOLDER);
                    // oNewItem.AffectsFormMode = true;
                    oNewItem.Top = oItem.Top;
                    oNewItem.Height = oItem.Height;
                    oNewItem.Width = oItem.Width;
                    oNewItem.Left = oItem.Left + oItem.Width + 50;
                    oFolder = (SAPbouiCOM.Folder)oNewItem.Specific;
                    oFolder.DataBind.SetBound(true, "", "Folder");
                    oNewItem.AffectsFormMode = false;
                    oFolder.Caption = "Indirect Cost";
                    oFolder.GroupWith("36");
                    oItem = (SAPbouiCOM.Item)oForm.Items.Item("60");
                    oNewItem = oForm.Items.Add("LblMacCost", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                    oNewItem.Top = oItem.Top;
                    oNewItem.Height = oItem.Height;
                    oNewItem.Width = oItem.Width + 20;
                    oNewItem.Left = oItem.Left;
                    *oNewItem.FromPane = 222;*      // set pane level
                    *oNewItem.ToPane = 222;*          //set panelevel
                    oStaticText = (SAPbouiCOM.StaticText)oNewItem.Specific;
                    oStaticText.Caption = "Actual Machine Cost";
    on click of the your pane set the panelevel, like;
    protected override void  etClickBeforeAction(ref SAPbouiCOM.ItemEvent pVal, out bool BubbleEvent)
                BubbleEvent = true;
                 if (pVal.ItemUID == "oFldrCost")                    // oFldrCost-My pane,
                     oForm.PaneLevel = 222;
    The main thing is that you have to set the form's panelevel on click_before event and youe pane will be high lighted

  • Image Processor Tab Missing in New Adobe Bridge CC 2014

    In the new Bridge CC you used to have a TAB under tools called Photoshop which you could run the script Image Processor for easily processing jpegs. What has happened to this and is their maybe a new way of processing jpegs to lo-res that I dont know about from tiff or jpeg or does my bridge have a problem?
    I have attached a image grab from my bridge that shows that the tab is not there. I know that you can access image processor directly from Photoshop, but they used to always be linked.

    No, it is still in Bridge CC.
    Did you uninstall Photoshop CC after installing Photoshop CC 2014? If so, that may have removed some of the Bridge integration scripts by mistake. Re-installing Photoshop CC 2014 should replace the scripts.
    and it should give the image processor tab back

  • Logical Level in Content Tab

    Hi,
    What is the use of Logical Level under Content Tab in Logical Table Source?
    Need more information, docs related to this
    Thanks,
    Satheesh

    Hi
    This logical level is useful for level bases metrics.It shows the levels in your hierarchy.We can give the level in this and in the report it shows the data for that level only.
    See this lnk, http://gerardnico.com/wiki/dat/obiee/measure_level_based
    Thanks
    Don

  • Images for tabs are not getting displayed in the page

    Hi,
    I have given images for tabs on a page. when iam applying images from the local disk, it is showing the images in edit mode. But when I view the page, it is not showing any images.
    Where should i copy the images I use in my pages. I ahev copied all the images in the images directory of portal30 in server.
    Please help.
    Murthy

    Hi,
    Please check the httpd.conf file in your server for /images alias. The /images alias will point to a directory. Copy your
    image files in that directory.
    Thanks,
    Sharmila

  • How do I use Panorama / Tab Groups with the keyboard?

    Yes I know that CTRL-SHIFT-E opens the panorama window, and then I can use the mouse to organize my tabs into groups.
    But how do I do this with the keyboard?
    I've [http://lifehacker.com/#!5719596/switch-between-tab-groups-in-firefox-with-a-keyboard-shortcut read] [http://ubuntuforums.org/showthread.php?t=1705714 that] Ctrl-`should move me through tab groups. That doesn't work for me on my Danish keyboard. (Where the ' and ` chars are weird. But is how they are on a valid standard Danish keyboard) I've tried changing the keyboard to USA and then moving through tab groups works fine.
    In short: Pretend I don't have a mouse. How do I use Panorama / Tab Groups?

    Sorry. These are both known bugs:
    [https://bugzilla.mozilla.org/show_bug.cgi?id=587010 Bug 587010] - Add keyboard UI for manipulated groups and tabs in Tab Candy
    and
    [https://bugzilla.mozilla.org/show_bug.cgi?id=626594 Bug 626594] - shortcut for switching tab groups is badly accessible on many non-US keyboard layouts

  • My downloaded text sounds do not show up under the sounds tab in settings after installing 8.1.1. can someone help me please?

    i downloaded a couple text tones and since installing 8.1.1, they will not show up under the sounds tab. in fact, they do not show up in my recent purchases on itunes, but when i go to buy them again, it says that i have already bought this tone. I just want to use the tones i paid for as the tones on my phone. not asking much.... thanks for the help. i hope someone can help me get the tones working. thank you.

    This was happening to me too but only for some of my songs. I have a mac so I dunno about PCs, but for most of my ringtones I had to create an ACC version in itunes to make them short enough then turn that into a m4r and those all worked fine. But if the song was already short enough and I didn't create an ACC version and just turned the original into a m4r, then it wouldn't appear in my itunes.
    so if you're on a mac:
    1. go to get info, options, pick when you want the song to start and end.
         Has to be pretty short to work, 30 second or less is good
         if it's already short enough that's fine
    2. right click and click 'create ACC version'
         a copy with the length you put in will appear, drag that into a folder or whatever and just type in m4r where m4a would be
         still make an ACC version even if it's the right length
    Hopefully this helps someone else.

  • Jabber 9.2.6 - No Phone Tab

    When clicking on the message icon in jabber we get an error message stating the user is not signed in, to resolve goto the phone accounts tab under the options window, we have no such tab showing, anyone help?

    Neither CUCM nor CUC are SSO-integrated with Active Directory in the current shipping versions to say nothing of Jabber itself. All LDAP Auth in the server does is relay the user-provided credentials to the LDAP server for a go/no-go decision. The user/client is still responsible for providing them to whatever Cisco server it's trying to authenticate to. The XML Jaime mentions above instructs Jabber to copy/paste the credentials you entered when logging into Jabber itself into the PhoneService (i.e. CCMCIP) and Voicemail (a separate element).
    Please remember to rate helpful responses and identify helpful or correct answers.

  • When I login to my homepage yahoo, why does a paypal tab open next to yahoo, and will it harm anything?

    When I log on to Mozilla, my homepage is Yahoo, but next to the yahoo tab on the left is a small tab with the paypal logo, will this harm anything, and can it be stopped?

    You may have "pinned the tab". Right click on it and unpin the tab to make it go away.

  • When I login to a forum, it only holds true for the tab I currently have open

    Until recently, if I logged into a forum, I could open pages within that forum in multiple tabs and still be logged in on every tab. Now I can't, a new tab requires me to login again. I have always used "always start firefox in private browsing mode" and have made no changes in the settings.

    Your plugins list shows outdated plugin(s) with known security and stability risks.
    *Java Plug-in 1.6.0_13 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp#jdk (you need JRE)

  • I used to be able to open links in a new tab by clicking my middle mouse button, but now that I've updated it to the most recent update it doesn't work anymore. How do I fix this? I really love that feature. It works in IE and Chrome but not Mozilla.

    Ok, I used to be able to open links up in a new Tab using my middle mouse button. However, I updated firefox with the automatic Updates on the 26th of October and now I no longer can open links with my middle mouse button. Why? I use this feature just about every time I go searching on the internet so I really would like it back. I couldn't find anything that it was related to in the options so I turn this over to you guys.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

Maybe you are looking for

  • 2014 Photosmart b210 networked printer can't scan

    You might want to switch this over to a different forum .... doesn't have anything to do with laptop or notebook. .. sorry. I have a Photosmart Plus All in One Printer Scanner.  The printer is wired to my computer using USB and OS is Windows 7. Recen

  • WLST Offline and Replacement Variables

    Hello. I'm having a problem where when I'm using WLST to create a domain from a template with an application in it, it writes the application out to the default <BEA_HOME>/user_projects/... as opposed to under the domain directory specified in the wl

  • Stock posting for lot 010000000121 not supported

    Hi Experts, I am unable to reverse the UD and stock by using SAP NOTE 175842. By using std program RQEVAC50 activated ZQM_RQEVAC50 and given the transaction code. When I runn this T Code System is giving error massage "Stock posting for lot 010000000

  • Page looks stretched in IE

    Take a look at this main page in IE: www.napatouristguide.com Now look at this page: www.napatouristguide.com/restaurants.html In Firefox, no problems. In IE, the restaurant page is stretched too wide. I've gone over the code but can't figure out wha

  • Your screen or eye sight is not ruined!

    Greetings humble Spotify users! You might recently have been deceived to think that your computer screen is not working properly or that your color vision has lost some of the green/yellow spectrum, but it's all just a big FAT coup! Spotify is playin