Need help : for changing the flv movie size

i am loading my flv thogh xml link if load my flv the same
size what i kept in my folder using script shall i change the movie
size because lot of movies is loads dynmicaly i cannot go and
change each and evry movie
so some body can help me to change the movie - flv while it
loads.

You should be able to change the product name in Google Cloud.  The ChromeBook uses Google Cloud to print (Google Cloud uses HP ePrint).  Log into your google account and change the printer name there.
I am an HP employee.
Opinions expressed are mine and do not necessarily reflect the opinions of HP.
Reminder: Please select the Accept as Solution button on the post that best answers your question. Also, you may select the Kudos button on any helpful post to give that person a quick thanks.

Similar Messages

  • Need help for finding objects impacted by size change for an infoobject

    hi all,
    need help for finding objects impacted by size change
    for xxx infoobject, due to some requirements, the size to be changed from
    char(4) to char(10), in the source database tables as well as adjustment
    to be done in BI side.
    this infoobject xxx is nav attribute of YYY as well as for WWW
    infoobjects. and xxx is loaded from infopkg for www infoobject load.
    now that i have to prepare an impact analysis doc for BI side.
    pls help me with what all could be impacted and what to be done as a
    solution to implement the size change.
    FYI:
    where used list for xxx infoobject - relveals these object types :
    infocubes,
    infosources,
    tranfer rules,
    DSO.
    attribute of characteristic,
    nav attribute,
    ref infoobject,
    in queries,
    in variables

    Hi Swetha,
    You will have to manually make the table adjustments in all the systems using SE14 trans since the changes done using SE14 cannot be collected in any TR.
    How to adjust tables :
    Enter the table name in SE14. For ex for any Z master data(Say ZABCD), master data table name would be /BIC/PZABCD, text table would be /BIC/TZABCD. Similarly any DSO(say ZXYZ) table name would be /BIC/AZXYZ00 etc.
    Just enter the table name in SE14 trans --> Edit --> Select the radio button "Save Data" --> Click on Activate & adjust database table.
    NOTE : Be very careful in using SE14 trans since there is possibility that the backend table could be deleted.
    How to collect the changes in TR:
    You can collect only the changes made to the IO --> When you activate, it will ask you for the TR --> Enter the correct package name & create a new TR. If it doesn't prompt you for TR, just goto Extras --> Write transport request from the IO properties Menu screen. Once these IO changes are moved successfully, then the above proceduce can be followed using SE14 trans.
    Hope it helps!
    Regards,
    Pavan

  • Need help to find the "leading point size"

    Hi,
    I need help to find the "leading point size".
    Any para style leading is more than 2 points of my font size, I need the alert message "Its more than 2 points for your font size". For instance my para font size is 10 here my leading should be 12 points rather than its 14 points, I need the alert message.
    Is this possible by script?
    by
    hasvi

    Hi Hasvi,
    Try this.
    var doc = app.activeDocument;
    var texts = doc.stories.everyItem().textStyleRanges.everyItem().getElements();
    var pstyle = "Following paragraph styles have more leadings:\r\r";
    for(var i=0;i<texts.length;i++)
        var ps = texts[i].pointSize;
        if(texts[i].leading > ps + 2)
            pstyle += texts[i].appliedParagraphStyle.name;
    alert(pstyle)
    If it is correct than mark the answer as correct and don't mark your question as correct answer.
    Regards,
    Chinna

  • Need help in changing the langauge on the Nokia570...

    Anybody can help please. I was given a brand new Nokia 5700 by my nephew from Taiwan and the langauge set is Chinese. I do not read or write chinese. Need help to change thelangauge on the phone. Any body can help.
    Thanks in advance

    Friend, I am based in China and my secretary is chinese - but nobody can figure out how to do it. I have another engineer who has the same phone has been playing around with it for 2 days and cannot get it done also. That is the reason I am getting on this site for help.
    Thanks anyways

  • Need help for understanding the behaviour of these 2 queries....

    Hi,
    I need your help for understanding the behaviour of following two queries.
    The requirement is to repeat the values of the column in a table random no of times.
    Eg. A table xyz is like -
    create table xyz as
    select 'A' || rownum my_col
    from all_objects
    where rownum < 6;
    my_col
    A1
    A2
    A3
    A4
    A5
    I want to repeat each of these values (A1, A2,...A5) multiple times - randomly decide. I have written the following query..
    with x as (select my_col, trunc(dbms_random.value(1,6)) repeat from xyz),
    y as (select level lvl from dual connect by level < 6)
    select my_col, lvl
    from x, y
    where lvl <= repeat
    order by my_col, lvl
    It gives output like
    my_col lvl
    A1     1
    A1     3
    A1     5
    A2     1
    A2     3
    A2     5
    A3     1
    A3     3
    A3     5
    A4     1
    A4     3
    A4     5
    A5     1
    A5     3
    A5     5
    Here in the output, I am not getting rows like
    A1     2
    A1     4
    A2     2
    A2     4
    Also, it has generated the same set of records for all the values (A1, A2,...,A5).
    Now, if I store the randomly-decided value in the table like ---
    create table xyz as
    select 'A' || rownum my_col, trunc(dbms_random.value(1,6)) repeat
    from all_objects
    where rownum < 6;
    my_col repeat
    A1     4
    A2     1
    A3     5
    A4     2
    A5     2
    And then run the query,
    with x as (select my_col, repeat from xyz),
    y as (select level lvl from dual connect by level < 6)
    select my_col, lvl
    from x, y
    where lvl <= repeat
    order by my_col, lvl
    I will get the output, exactly what I want ---
    my_col ....lvl
    A1     1
    A1     2
    A1     3
    A1     4
    A2     1
    A3     1
    A3     2
    A3     3
    A3     4
    A3     5
    A4     1
    A4     2
    A5     1
    A5     2
    Why the first approach do not generate such output?
    How can I get such a result without storing the repeat values?

    If I've understood your requirement, the below will achieve it:
    SQL> create table test(test varchar2(10));
    Table created.
    SQL> insert into test values('&test');
    Enter value for test: bob
    old   1: insert into test values('&test')
    new   1: insert into test values('bob')
    1 row created.
    SQL> insert into test values('&test');
    Enter value for test: terry
    old   1: insert into test values('&test')
    new   1: insert into test values('terry')
    1 row created.
    SQL> insert into test values('&test');
    Enter value for test: steve
    old   1: insert into test values('&test')
    new   1: insert into test values('steve')
    1 row created.
    SQL> insert into test values('&test');
    Enter value for test: roger
    old   1: insert into test values('&test')
    new   1: insert into test values('roger')
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select lpad(test,(ceil(dbms_random.value*10))*length(test),test) from test;
    LPAD(TEST,(CEIL(DBMS_RANDOM.VALUE*10))*LENGTH(TEST),TEST)
    bobbobbobbobbobbobbobbobbobbob
    terryterry
    stevestevesteve
    rogerrogerrogerrogerrogerrogerrogerrogerrogerYou can alter the value of 10 in the SQL if you want the potential for a higher number of names.
    Andy

  • Need help with changing the product name for a HP LaserJet Pro 401n to use on a ePrint network.

    I am in a school environment, naming printers is imortant. 
    Bonjour Service Name and Device Description name have been changed. IOS7 devices see the Bonjour name but ChromeBooks see the Product name. How can I change the Product name on the printer so that it is then recognized by HP Connected and shown to ChromeBook devices?

    You should be able to change the product name in Google Cloud.  The ChromeBook uses Google Cloud to print (Google Cloud uses HP ePrint).  Log into your google account and change the printer name there.
    I am an HP employee.
    Opinions expressed are mine and do not necessarily reflect the opinions of HP.
    Reminder: Please select the Accept as Solution button on the post that best answers your question. Also, you may select the Kudos button on any helpful post to give that person a quick thanks.

  • I need help to change the password to my Apple ID

    I have two apple ID's I made the second one for my iCloud when I bought my iPad not knowing that I could have used my normal Apple ID that I use for everything else. Now I cant sign out of that apple ID in my icloud on all three of my devices my iphone 4, my ipad and my iphone 5 I currently use, because I cannot for the life of me remember my password!
    I have tried everything I can remember and none of the passwords I was sure would work, works. So first of all I tried to have apple send me an email to reset my password and no email is received in my email account from apple, I have checked my other two email addresses I use thinking maybe I entered those as my alternate email addresses and there is nothing from apple in either of them for this particular apple ID. Then I tried the option to answer my security questions and it doesn't even recognise my date of birth linked with this apple ID! which is ridiculous because the account is mine. So I started googleing and found that I could change my normal apple id with the one I want to change the password to but when I enter that email it says 'email must be valid,be available and not be a domain owned by apple' and it wont let me save that email address to do that.
    Then I found a video on youtube that tells you how to unlock it and delete it from your device without the password but it only works if the icloud is actually signed in and mine isn't signed in so I can't even do that, mine is signed out on all my devices but still on my phones and ipad and everything is grey so I cant click into anything! and every time I use my phone or ipad and go into safari or anything else a box pops up every two seconds asking me to sign into icloud its soo frustrating to have to click cancel every single time and now that I'm so fed up with it I thought I would now reset my password thinking it wouldn't be hard to do as I usually forget my passwords to almost everything and am constantly resetting them its become the most difficult thing to do with apple!
    I called apple support and they were trying to get me to do all these things in my settings and nothing worked! I've been needing to call them back and ask if there is a way they can just reset my password for me or if my phone number is linked with my apple ID so maybe they could text me my reset key, does anybody know if they can do that? usually these days everything can be texted to you like my email provider and net bank providers but Apple seem to not even have that option or can anyone tell me how I can hack into my own account? also I went to that "find my apple ID" thing when you go to sign in and popped in all my possible email addresses, either all together or one each with my name and it wont find this apple ID I'm locked into it's like it doesn't even exists anymore but it does exists I remember creating it, its still on all my devices with my picture there as well! I've even been thinking I should go to a hypnotist or something to help me remember this password its making me so frustrated I've never had a password of mine that I have forgotten that I've never been able to reset or crack back into but Apple makes this so difficult. can anybody help?

    Restore it.
    (83648)

  • HT1918 Need help for changing billing information.

    I couldn't change my billing information for my Apple ID. It rejects and says,"Please contact iTunes support to complete the transactions". I did contact them but nothing helps.

    Hello,
    You should be able to bring up multiple IP's on your machine so that you can have both up until the new one takes over or the old one expires.
    I haven't done this for awhile, but I think you would use something like:
    ifconfig hme0:2 plumb
    ifconfig hme0:2 202.68.216.40 netmask 255.255.255.0 up
    route add default 202.68.216.1
    NOTE: you would need to change the hme0 to the appropriate NIC for your system, and the interface# and IP addresses as needed.
    If that works and the IP is reachable from outside, you could then update the:
    /etc/hosts
    /etc/netmasks
    /etc/defaultrouter
    And reboot. Hope this helps.

  • Need fix for change the batteries error on canon powershot s2 is

    "change the batteries" error message is popping up after taking 2 or 3 pictures with a new set of batteries. After surfing the Internet for solutions we found changing the date battery should solve the problem. But it does not work. We also tried formatting the SD card. Please help

    Hi Vindhiya!
    Thank you for posting and welcome to the Canon Forum.
    The connection between the batteries and the camera may be dirty.  Gently clean over the contacts on the battery compartment cover, inside the battery compartment and on the batteries.  Make sure the batteries are fresh as well.  If this does not help, the camera will be in need of repair.
    The Powershot S2 IS is no longer in service life, so it is unable to be repaired by our Factory Service Centers.  However,  you may participate in the Canon Loyalty Program instead.  The Canon Loyalty Program option allows you to replace your current camera for a discounted fee, plus shipping.  The original non-functioning camera would then be returned to Canon USA for recycling using a prepaid shipping label that would be provided.  
    If you would like to take part in this option, please call our Sales Department at (800) OK CANON (800-652-2666) seven days a week, 8am to Midnight.  Let them know you have been working with online support and the Canon Loyalty Program was offered.  Be sure to have your serial number for your camera at the time of your call.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Need help with changing the name.

    I got my palm pre from an uncle who lives in the states. The problem is I can't call tech support to ask them because I live in belize. The proble I have with my pre is that I have added my email account to the phone, but when I send an email, they receive it in my uncles name, my name is lanny and they receive an email form cesar, I think you can see where the problem lies. Is there anyway I can change it to my name? Please help!
    Post relates to: Pre p100eww (Sprint)

    Hello and thank you for using the Palm Help Forums!
    I would create a new Palm Profile. To do this you will need to go to the Device Info app, Reset Options, then select Full Erase. All pictures, videos, and anything else stored in the USB side of the device will be erased. I recommend that if you want to keep any of that to connect your device to a computer then click and drag everything you want to keep off of the device and onto your computer.
    After you perform the Full Erase the device is going to reboot. It is going to come up with a screen to sign in to a Palm Profile or Create a New Palm Profile. NOTE*** You will need a data connection to do this. Select Create a New Palm Profile and fill in the blanks. Once you are back into the device you can set up your email accounts again and it should display the name you created the Palm Profile with.
    I hope this helps,
    -Pat

  • WRTG42 v1 Need help with changing the Security Mode

    I need to change my wireless security mode but for some reason whenever I try to change anything the website automatically puts what ever I changed back to normal.  Basically, I try to change an option and the website changes the option back instantly. Has anyone else had this issue? And if so, can you please walk me through what you did? Thanks!

    Try using a different browser and make sure you click on Save Settings after changing security settings. Here's a link for detailed instructions.

  • Help for changing the case of a selected word of a multiline text to upper

    DBVersion:10g
    Foms Version:10g
    Hi Experts,
    Actually i have a requirement where i have to change the case of a selected word by a user into upper case.
    ex: FFFFFF hhhhh GGGG
    when user selects hhhhh and click on some button or any other option it should change it to upper case.
    plss help me out.
    regards :(
    Edited by: user123 on May 11, 2011 12:46 PM

    Here is some PL/SQL code to change a particular occurence of a word in a text.
    In this case, I change the second occurence of the "two" word:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> set serveroutput on
    SQL>
    SQL> declare
      2   c varchar2(100) := 'one two three four one two three four one two three four' ;
      3   c2 varchar2(100);
      4   i integer;
      5   j integer := 0 ;
      6   pos integer := 1 ;
      7   occurence integer := 2 ; -- occurence to change
      8  begin
      9   loop
    10    i := instr(c,'two', pos);
    11    exit when j = (occurence-1) or i = 0;
    12    j := j + 1;
    13    pos := pos + i ;
    14   end loop;
    15   i := instr(c,'two', pos);
    16   if i > 0 then
    17     c2 := substr( c,1,i-1) || upper(substr(c,i, length('two')))
    18        || substr(c, i+length('two'));
    19   end if ;
    20   dbms_output.put_line(c2);
    21  end;
    22  /
    one two three four one TWO three four one two three four
    PL/SQL procedure successfully completed.Francois

  • Need help to change the size of the Tablespaces.

    Hi DBA's
    Kindly help me on bellow tablespaces, which are the tablespaces need to increase the size in my R12.1.1 Instance? what size should i increase?
    TABLESPACE_NAME SIZEMB FREEMB
    APPS_TS_QUEUES 1000 894.88
    CTXD 19 1.79
    OWAPUB 10 9.92
    APPS_UNDOTS1 1802 4
    APPS_TS_NOLOGGING 64 25.63
    APPS_TS_ARCHIVE 866 367.25
    APPS_TS_TOOLS 500 499.88
    APPS_TS_TX_IDX 7736.75 722.63
    XXKGI 100 99
    APPS_TS_SEED 2982 388.5
    SYSTEM 12012.1328 1169.96
    APPS_TS_INTERFACE 1041 253.63
    ODM 11 1.44
    PORTAL 100 99.53
    APPS_TS_TX_DATA 5680.125 512.63
    OLAP 17.2421875 1.75
    APPS_TS_SUMMARY 1146 253.25
    APPS_TS_MEDIA 1446 276.88
    SYSAUX 472.6875
    Regards,
    SG

    SG,
    Kindly help me on bellow tablespaces, which are the tablespaces need to increase the size in my R12.1.1 Instance? what size should i increase?You are the best one to tell which tablespaces need to be increased (based on your monitoring to the datafile growth). I always keep 30%-40% free space in the tablespaces and get an alert when the used space go beyond that limit.
    Another option is to enable AUTOEXTEND so you do not have to worry (assuming you have enough space at the OS level).
    How To Check For Autoextensible Datafiles Set To Maxsize Unlimited [ID 468096.1]
    How to Determine if a Datafile has AUTOEXTEND ENABLED [ID 1023280.6]
    Thanks,
    Hussein

  • Need help for focusing the cursor from one textbox to another textbox

    hii all,
    I have a problem in java script.
    Note:The textboxes are generated dynamically.it is not having fixed length.(the number of textboxes generated may be 3,2,4....etc.it is not fixed.
    To move cursor from one textbox to another text box ,I have taken the length of the textboxes of the first column.I used onkeyDown event .
    in the function ,first i checked the condition like
    for(i=0;i<form1.box.length;i++) //box is the name of the textboxes
    if(event.keyCode==13)
    form1.box[i+1].focus();
    return false;
    by using this the cursor is moving from first text box to second textbox and stops.
    if i use event.returnValue=false; instead of return false ,then the cursor automatically going to the laxt textbox of the column.
    my problem is how i can focus the cursor from one textbox to another textbox one after the other till the end.
    if any one has solution please help me.
    also if we can do in another way also,please help me.
    thanx.>

    thanx .u helped me so much.
    i have to check another condition. see the code below
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnTest(str) {
    if(event.keyCode==13) {
    if(str == 4) {
    formHeader.box[0].focus();
    else {
    formHeader.box[parseInt(str)+1].focus();
    return false;
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('0');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('1');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="0" disabled="false" onKeyDown="javascript:fnTest('2');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('3');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('4');">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    suppose if some of the fields are disabled,then the focus must skip to the next one.i have written disabled for box2.if the cursor focuses in box1,then the cursor should move to box3 escaping box2.
    if u know plz tell me.

  • Need help in changing the way plumtree renders an html output

    We are in the process of customizing Plumtree rendering on Plumtree 5.
    As per my understanding, plumtree 5 renders every portlet as two different tables (One html table tag each for Portlet Header and for Portlet Body).
    I need to add few custom attributes (like PortletID, WebServiceID) to these table tags (Portlet Header table and Portlet Body table) to track the user statistics.
    For example
    <table name="PortletHeaderArea" PortletID="123" WebServiceID="99" >
    Portlet header
    </table>
    <table name="PortletBodyArea" PortletID="123" WebServiceID="99">
    Actual Portlet
    </table>
    The section in blueabove is the customization required.
    At the same time I want to have page level hidden variables for these attributes.
    Can anybody help me on this. This is a urgent requirement.
    Thanks

    Maybe this link will help.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

Maybe you are looking for

  • IPod to TV video failure

    I have an 80GB 5th Gen iPod and previously tried to use an A/V-to-RCA (http://www.oreillynet.com/pub/a/mac/2005/11/18/video-ipod.html) but it did not work. I made the assumption that maybe it was too good to be true. So I recently purchased an iPod a

  • How to create an Apple Id for a 10 year old kid ?

    I'd like to create an Apple Id for my 10 year old kid in order to use the family sharing. How can I do this ?

  • How to get the dimensions of the selected cell in java client

    hi, I am able to retrieve the value of a particular cell using the data access package.i want to know how can i get the measure and dimension of a particular cell in java client.is it possible to get the row and edge of the selected cell?please help

  • Org structure creation

    Hi All, I am creating new org structure. I found Bussiness partner number is not created. I have amaintained Address for the root org structure, still it is not created. I have maianteined bussiness parttner number ranges as well. Any pointers for wh

  • Calling Matlab 7.1 from LabView 6.1

    Hello, I am using LabView 6.1 and I have recently installed Matlab 7.1 on the same machine. When I try to call Matlab by a Matlab script node, I only get the error message that the script could not be executed and that a failure occured calling the s