How to change alpha of overlapping section of Movieclips

Hello Forum,
I am working with Flash CS3, and using Action script 2.0.
I use attachMovie to add 5 clips on the stage each in a
different layer (can I have two mcs on one layer?). Three of these
clips are filled circles. One large yellow circle is on layer 1
(depth 1), a smaller circle (blue) is added on layer 2, and then a
different instance of the blue circle is added on layer 3. I then
tween the two blue clips in toward the big yellow circle, one on
the left side, and one on the right side. Each blue circle
partially overlaps the yellow circle. I would like to change the
alpha of each blue circle where it overlaps the yellow circle. Just
the overlapping sector, not the whole circle. This is like a venn
diagram. I have looked at the blendMode, but this seems to have no
effect at all. I think it is due to the fact that I tween the clips
and am using attachMovie in AS2 on an actions layer. If I just drag
two clips on the stage, and set the blendMode of the top clip, I
see an effect, but it changes the entire clip, not just the
overlapping part. I suspect this is due to the fact that I have a
white background on the stage. Is there a way I can set the alpha
just where the clips overlap? Maybe using some sort of mask layer?
I have looked around for a solution on the internet, and have
not quite found what I am looking for. This is for AS2, not AS3.
Thanks,
eholz1

Well the first thing is there are no "layers" in
actionscript. So I'll assume you mean you've added them at
different depths?
The next bit is that you could probably come up with some
very complex masking way of doing this, but I don't think you need
to. The trick is that you can't tell that there is a blending mode
over the white -- at least I can't -- until you move the item over
something else. So the trick is to keep your cirlces from moving
over things you don't want them to move over.
I used the code below and it worked like I think you are
describing.

Similar Messages

  • How to change alpha of a "container"

    I want to change alpha like when we change pages, but only for a container named:contain
    I have 4 btn (text1, text2, text3, text4) in the "left_side" and each of those change "contain1" to "contain4".
    (contain1, contain2, ... are all in my library and my btn
    that's the code:
    import fl.transitions.*;
    import fl.transitions.easing.*;
    // claim MCs from library to use on stage when needed using addChild
    var c1:contain1 = new contain1;
    var c2:contain2 = new contain2;
    var c3:contain3 = new contain3;
    var c4:contain4 = new contain4;
    left_side.addChild(c1);
    var pageMoveTween:Tween = new Tween(left_side, "y", Elastic.easeOut, 300, 110, 2, true);
    left_side.text1.addEventListener(MouseEvent.CLICK, btn1Click);
    left_side.text2.addEventListener(MouseEvent.CLICK, btn2Click);
    left_side.text3.addEventListener(MouseEvent.CLICK, btn3Click);
    left_side.text4.addEventListener(MouseEvent.CLICK, btn4Click);
    function btn1Click (event:MouseEvent):void {
    var btn1Outro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 1, 0, 1, true);
    btn1Outro.addEventListener(TweenEvent.MOTION_FINISH, runBtn1Transition);
    function runBtn1Transition (event:TweenEvent):void {
    left_side.removeChildAt(1);
    left_side.addChild(c1);
    var btn1Intro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 0, 1, 1, true);
    function btn2Click (event:MouseEvent):void {
    var btn2Outro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 1, 0, 1, true);
    btn2Outro.addEventListener(TweenEvent.MOTION_FINISH, runBtn2Transition);
    function runBtn2Transition (event:TweenEvent):void {
    left_side.removeChildAt(1);
    left_side.addChild(c2);
    var btn2Intro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 0, 1, 1, true);
    function btn3Click (event:MouseEvent):void {
    var btn3Outro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 1, 0, 1, true);
    btn3Outro.addEventListener(TweenEvent.MOTION_FINISH, runBtn3Transition);
    function runBtn3Transition (event:TweenEvent):void {
    left_side.removeChildAt(1);
    left_side.addChild(c3);
    var btn3Intro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 0, 1, 1, true);
    function btn4Click (event:MouseEvent):void {
    var btn4Outro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 1, 0, 1, true);
    btn4Outro.addEventListener(TweenEvent.MOTION_FINISH, runBtn4Transition);
    function runBtn4Transition (event:TweenEvent):void {
    left_side.removeChildAt(1);
    left_side.addChild(c4);
    var btn4Intro:Tween = new Tween(left_side, "alpha", Strong.easeOut, 0, 1, 1, true);
    thank's for your help!

    Make it easy on yourself if you're going to keep synchronized numbering and loop it.
    var maxButtons:Number = 4;
    var currentSection:Number = 1;
    for (var buttonNumber:Number = 1; buttonNumber <= maxButtons; buttonNumber++)
        left_side.getChildByName('text'+buttonNumber).addEventListener(MouseEvent.CLICK, _buttonHandler);
    function _buttonHandler(e:MouseEvent):void
       var buttonPressed:MovieClip = MovieClip(e.currentTarget);
       var indexPressed:Number = Number(buttonPushed.name.substr(4,1));
       if (indexPressed != currentSection)
          currentSection = indexPressed;
          var content:MovieClip = MovieClip(left_side.getChildByName('content'));
          var fadeTween:Tween = new Tween(content,"alpha",Regular.easeOut,1,0,1,true);
          fadeTween.addEventListener(TweenEvent.MOTION_FINISH, _loadContent);
    function _loadContent(e:TweenEvent):void
        // remove old content
        left_side.removeChild(left_side.getChildByName('content'));
        var content:MovieClip;
        content.name = 'content';
         if (currentSection == 1)
            content = new content1();
         else if (currentSection == 2)
            content = new content2();
         else if (currentSection == 3)
            content = new content3();
         else if (currentSection == 4)
            content = new content4();
         content.alpha = 0;
         left_side.addChild(content)
         new Tween(content,"alpha",Regular.easeOut,0,1,1,true);
    I hate switches in general, opt for ugly if blocks. If you really want to do it right then get all your content in easily synchronized indexed arrays as references so you don't need to do any string comparison work.. This is just quick and dirty to give you an idea that you can re-use functions as well as loops to make things less tedious.

  • How to change standard class private section code

    Dear experts,
    I need to add new attributes in a standard class as per one OSS note. I took access key to add new attributes. I have a question.
    class name: CL_J_1BEFD
    Attribute: MT_GROUP_C350
    Level: Instance
    Visibility: Private
    Type STANDARD TABLE OF mty_result
    How do i add the instance attribute because i do not want to give the typing and associated type. instead i have to declare data: MT_GROUP_C350 type standard table of mty_result in class builder private section code.
    if you look at the pushbutton between Associated type and Description, for all instance attributes there's a green color lining below the arrow. I want my attribute also to be exactly same.
    Though i have access key, in private section the display<->Change button is disabled.
    Please suggest me how do i add code in private section of a standard class. i have required access key to change the class.
    Thanks,
    Rajesh.

    Hi ,
    Please follow the OSS note 1828074 - Syntax error in LSEPA_MANDATE_UI_LISTF01 / visibility of the method "GET_SELECTED_MANDATES" to change visibility section of a standard class.
    Regards,
    Chetan

  • How to change alpha of textfield

    Forum Members,
    I have looked around, and not really found an answer to this
    question. It seems it can be done, but I am
    not sure how to do it.
    I would like to emulate Powerpoint in flash, in the sense of
    having text appear on the stage.
    In one case I have created a textfield,
    var myTextField:Textfield = new Textfield();
    I am able to assign a format to the textfield using the
    TextFormat class.
    and tween it around, etc.
    I am reading an xml file to set another textfield's text
    value.
    I would like to change the alpha of this textfield (var
    subText:TextField = new TextField();)
    to zero, and then tween it up to 1 (using tweenlite).
    I do not seem to be able to set the alpha on the textfield.
    Is this possible? I do not want to convert it to a MovieClip or
    Sprite, but if that is what I need to do to get the ability to
    change the alpha, I will do it.
    Thanks,
    Eholz1

    you can assign its alpha property like any display object.
    you just need to embed its font.

  • How to change alpha of an array?

    It's me again.
    I am trying to dynamically change the alpha value of a set of movieclips on a timer.  The timer works but I get an error message from the function.     
    This is the error:
    TypeError: Error #1010: A term is undefined and has no properties.
    at piedacoulisse_timer_fla:MainTimeline/zoom/piedacoulisse_timer_fla:onTime()[piedacoulisse_ timer_fla.MainTimeline::frame1:124]
    at flash.utils::Timer/flash.utils:Timer::_timerDispatch()
    at flash.utils::Timer/flash.utils:Timer::tick()
    This is the code:
      var txt:Array = ["txt1","txt2","txt3","txt4","txt5"];
      var flashTimer:Timer = new Timer(3000,5);
      flashTimer.addEventListener(TimerEvent.TIMER, onTime);
      flashTimer.start();
      var frame:int = 0;
      function onTime(evt:TimerEvent):void{
       zoomIn.slider_mc.txt[frame].alpha = 1;  \\ line 124
       frame ++;  
    Can anyone tell me what the problem is and how to fix it?

    Sorry guys, no luck.  I tried all three suggestions and got the same error.  I ended up using timeline animation to change the alpha of my movieclips.  That worked but I am getting the error again when I try to stop some of the mc's from playing.  Here's the error:
    TypeError: Error #1010: A term is undefined and has no properties.
    at piedacoulisse_timer3_fla:MainTimeline/zoom/piedacoulisse_timer3_fla:onTime()[piedacouliss e_timer3_fla.MainTimeline::frame1:136]
    at flash.utils::Timer/flash.utils:Timer::_timerDispatch()
    at flash.utils::Timer/flash.utils:Timer::tick()
    Here's the complete code, in case there is something I am not seeing elsewhere in the program:
    slider_mc.tickMark_mc.stop();
    slider_mc.stop();
    var myRectangle:Rectangle = new Rectangle(9,9,125, 420);
    var slideRectangle:Rectangle = new Rectangle(body_mc.x + 24.5,body_mc.y + 1,219.5,.01);
    var startSlide:Number;
    var deltaSlide:Number = 0;
    var startMoveX:Number = 0;
    var startMoveY:Number = 0;
    var endMoveX:Number = 0;
    var endMoveY:Number = 0;
    var contactTop:Boolean = false;
    var contactBottom:Boolean = false;
    var contactPoint:String;
    body_mc.addEventListener(MouseEvent.MOUSE_DOWN,pickUp);
    body_mc.addEventListener(MouseEvent.MOUSE_UP,dropIt);
    body_mc.addEventListener(MouseEvent.MOUSE_OUT,dropIt);
    slider_mc.addEventListener(MouseEvent.MOUSE_DOWN,beginSlide);
    slider_mc.addEventListener(MouseEvent.MOUSE_UP,stopSlide);
    slider_mc.addEventListener(MouseEvent.MOUSE_OUT,stopSlide);
    topMask.addEventListener(Event.ENTER_FRAME,moveMask);
    botMask.addEventListener(Event.ENTER_FRAME,moveMask);
    bodyMask.addEventListener(Event.ENTER_FRAME,moveMask);
    stage.addEventListener(Event.ENTER_FRAME,zoom);
    //  blockIt stops the draggable mc's when they hit the phone_mc
    function blockIt(event:Event):void{
    if(topMask.hitTestObject(phone_mc) == true){
      reply.text = "top hit";
      contactTop = true;
      event.currentTarget.stopDrag();
      contactPoint =  "top";
      nudgeIt(null);
    }else if(botMask.hitTestObject(phone_mc) == true){
      reply.text = "bottom hit";
      contactBottom = true;
      event.currentTarget.stopDrag();
      contactPoint = "bottom";
      nudgeIt(null);
    }else if(bodyMask.hitTestObject(phone_mc) == true){
      reply.text =  "body hit";
      event.currentTarget.stopDrag();
      contactPoint = "body";
      nudgeIt(null);
    //  drags the hit-detection objects - I needed to do this to allow for a U-shaped object to surround another object.
    function moveMask(event:Event){
    topMask.x = body_mc.x+19;
    topMask.y = body_mc.y+108;
    botMask.x = slider_mc.x+32;
    botMask.y = slider_mc.y+108;
    bodyMask.x = body_mc.x+100;
    bodyMask.y = body_mc.y+38;
    //  drags the movable mc's
    function pickUp(event:MouseEvent):void{
    event.currentTarget.startDrag(false,myRectangle);
    slider_mc.addEventListener(Event.ENTER_FRAME,followMe);
    body_mc.addEventListener(Event.ENTER_FRAME,blockIt);
    startMoveX = event.currentTarget.x;
    startMoveY = event.currentTarget.y;
    contactTop = false;
    //  drops the movable mc's
    function dropIt(event:MouseEvent):void{
    event.currentTarget.stopDrag();
    slider_mc.removeEventListener(Event.ENTER_FRAME,followMe);
    endMoveX = event.currentTarget.y;
    endMoveY = event.currentTarget.y;
    contactBottom = false;
    //  moves the slider with the body when it is dragged
    function followMe(event:Event) {  
         slideRectangle.y = body_mc.y;
      slideRectangle.x = body_mc.x + 24.5;
      slider_mc.x = slideRectangle.x + deltaSlide;
      slider_mc.y = body_mc.y;
    //  drags the slider along the body
    function beginSlide(event:MouseEvent):void{
    event.currentTarget.startDrag(false,slideRectangle);
    deltaSlide = slider_mc.x - slideRectangle.x
    contactBottom = false;
    // drops the slider
    function stopSlide(event:MouseEvent):void{
    event.currentTarget.stopDrag();
    // adjusts the postion of the draggable mc's to just butt up against the phone_mc - I did this so the mc's can be dragged again.  Without it, they are
    locked in place by the hitTest.
    function nudgeIt(event:Event):void{
    if(contactPoint == "top"){
      body_mc.x = body_mc.x - 1;
    }else if(contactPoint == "bottom"){
      slider_mc.x = slider_mc.x + 1;
    }else if(contactPoint == "body"){
      body_mc.y = body_mc.y - 1;
    // "zooms" in on the image and adds text commentary.  tickMark and oval mc's animate and then stop
    //  This is where the error messages started appearing
    //  Lines 136 137 and 138 all throw the same error
    function zoom(event:Event):void{
    if(contactTop == true &&contactBottom == true){
      body_mc.removeEventListener(MouseEvent.MOUSE_DOWN,pickUp);
      slider_mc.removeEventListener(MouseEvent.MOUSE_DOWN,beginSlide);
      var zoomIn:MovieClip = new MovieClip;
      zoomIn.addChild(phone_mc);
      zoomIn.addChild(body_mc);
      zoomIn.addChild(slider_mc);
      zoomIn.scaleX = 2.5; zoomIn.scaleY =2.5;
      addChild(zoomIn);
      zoomIn.x = -150; zoomIn.y = -350;
      slider_mc.tickMark_mc.gotoAndPlay(2);
      var flashTimer:Timer = new Timer(2000,8);
      flashTimer.addEventListener(TimerEvent.TIMER, onTime);
      flashTimer.start();
      var frame:int = 2;
      function onTime(evt:TimerEvent):void{
       slider_mc.gotoAndPlay(frame);
       slider_mc.stop();
       frame ++; 
       if(frame == 3){zoomIn.slider_mc.tickMark_mc.gotoAndStop(1);}   // line 136
       if(frame == 5){zoomIn.slider_mc.oval1_mc.gotoAndStop(1);}        // line 137
       if(frame == 7){zoomIn.slider_mc.oval2_mc.gotoAndStop(1);}        // line 138

  • How to change alpha to numeric on keypad

    HP officejet J4680. how do I change (on keypad) alpha to numeric?

    Hi,
    You should use the keys on the device, keep clicking the using the numeric keypad's button till the number will appear (similar to SMS typing)
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to change column in the section?

    I have created new record type and make it related to the account tab. It appears with many columns that I don't want them to show. How can I change the column of the section under account tab??
    Jan

    This will be addressed in R16. However, you can rename the the field to a "Blank" value so it does not show-up in the related section. This forum thread tells you how to do it: Page Layout Tip: Blank Space

  • How to change alpha value in pixel

    I am trying to alter the alpha values in a pixel array. I can change the RGB values, but changing the alpha seems to have no effect. Hope you can help. Thanks.
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import com.sun.image.codec.jpeg.*;
    import java.util.Random;
    import java.awt.Toolkit;
    public class alterImage extends Component {
    public FileOutputStream fos = null;
    public File fc = null;
    private static Frame window;
    public void paint (Graphics g){
      Toolkit theKit = window.getToolkit();
      Image img = theKit.getImage("originalImage.jpeg");
      img = img.getScaledInstance(100,100,1);
      MediaTracker mtracker =  new MediaTracker(this);
      mtracker.addImage(img, 0);
      try {
      mtracker.waitForID(0);
      } catch (Exception e) {}
      int w = img.getWidth(this);
      int h = img.getHeight(this);
      int[] pixels = new int[w * h];
      PixelGrabber pixs = new PixelGrabber(img, 0, 0, w, h, pixels, 0, w);
         try {
         pixs.grabPixels();
         if (pixs.getColorModel().hasAlpha())
         System.out.println("hasAlpha");
              } catch (InterruptedException e) {
                System.err.println("interrupted waiting for pixels!");
                return;
    // alter pixel values
    for(int i = 0; i < pixels.length; i++){
         int alpha = (pixels[i] >> 24) & 0xff;
         //System.out.println("alpha " + alpha);
         int red   = (pixels[i] >> 16) & 0xff;
         //System.out.println("red" + red);
         int green = (pixels[i] >>  8) & 0xff;
         //System.out.println("green" + green);
         int blue  = (pixels[i]      ) & 0xff;
         //System.out.println("blue" + blue);
         green /= 2;   // green is effected
         alpha /= 2;   // alpha is not effected
         pixels[i] = (alpha << 24) | (red << 16) | (green << 8) | blue;
    // create new image with altered pixel data
    BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
    image.setRGB(0, 0, w, h, pixels, 0, w);
    // write new image to file
    try {
    fc = new File("newImage.jpeg");
    fc.createNewFile();
    fos = new FileOutputStream(fc);
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(fos);
    encoder.encode(image);
    fos.flush();
    fos.close();
    // show image in window
    Image img2 = theKit.getImage("newImage.jpeg");
    g.drawImage(img2, 0, 0, 100, 100, this);
    } catch(IOException e) {}
    // end paint
    public static void main (String arg[]){
         window = new Frame ("Alter Image");
         window.add(new alterImage());
         window.pack();
         window.setSize(100,100);
         window.show();
    // end class
    }

    It only makes sense to apply transparency in respect of another image that this one is to appear 'on top of'; this is done by performing a comparison on the pixel value for each of the two images, altering in favour of the 'on top' image if transparency for that pixel is low, or for the 'underneath' image if transparency for that pixel is high.
    Although tricky (for me at least, perhaps not for you!), using the WritableRaster from BufferedImage's GetWritableRaster() method lets you accomplish this. Look here for more:
    http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/WritableRaster.html
    Once you have created a composite image of the two source images, that can then be saved as a separate JPG, GIF or whatever. Look here too:
    http://java.sun.com/docs/books/tutorial/2d/display/compositing.html
    Good luck!
    Chris.

  • How to change the header and footer in the Section Breaks Next Page using OpenXML?

    I have a word document file in which I added a Section Break of Next Page, now I want to change the header and footer of that page.
    Scenario of example, I have a doc file which has four pages with headers and footers and added fifth page in the section break next page, I want to change the header and footer of the fifth page only. This is achievable manually by deselecting the Link to Previous
    button in the Word Application but I don't know how to change it using XML?
    My code that adds the new page in the section breaks is:
    class Program
    static void Main(string[] args)
    string path = @"C:\Riyaz\sample.docx";
    string strtxt = "Hello This is done by programmatically";
    OpenAndAddTextToWordDocument(path,strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    using (DocX document = DocX.Load(@"C:\Riyaz\sample.docx"))
    document.InsertSectionPageBreak();
    Paragraph p1 = document.InsertParagraph();
    p1.Append("This is new section");
    document.Save();
    Please help.

    Here is the sample for your reference:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using DocumentFormat.OpenXml;
    using DocumentFormat.OpenXml.Packaging;
    using DocumentFormat.OpenXml.Wordprocessing;
    namespace WordAddNewFooterHeader
    class Program
    static void Main(string[] args)
    string path = @"E:\Document\TestHeaderandfooter-Copy.docx";
    string strtxt = "OpenXML SDK";
    OpenAndAddTextToWordDocument(path, strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    // Open a WordprocessingDocument for editing using the filepath.
    WordprocessingDocument wordprocessingDocument = WordprocessingDocument.Open(filepath, true);
    MainDocumentPart part = wordprocessingDocument.MainDocumentPart;
    Body body = part.Document.Body;
    //create a new footer Id=rIdf2
    FooterPart footerPart2 = part.AddNewPart<FooterPart>("rIdf2");
    GenerateFooterPartContent(footerPart2);
    //create a new header Id=rIdh2
    HeaderPart headerPart2 = part.AddNewPart<HeaderPart>("rIdh2");
    GenerateHeaderPartContent(headerPart2);
    //replace the attribute of SectionProperties to add new footer and header
    SectionProperties lxml = body.GetFirstChild<SectionProperties>();
    lxml.GetFirstChild<HeaderReference>().Remove();
    lxml.GetFirstChild<FooterReference>().Remove();
    HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rIdh2" };
    FooterReference footerReference1 = new FooterReference() { Type = HeaderFooterValues.Default, Id = "rIdf2" };
    lxml.Append(headerReference1);
    lxml.Append(footerReference1);
    //add the correlation of last Paragraph
    OpenXmlElement oxl = body.ChildElements.GetItem(body.ChildElements.Count - 2);
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    SectionProperties sectionProperties1 = new SectionProperties() { RsidR = oxl.GetAttribute("rsidR", oxl.NamespaceUri).Value };
    HeaderReference headerReference2 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.HeaderParts.FirstOrDefault()) };
    FooterReference footerReference2 = new FooterReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.FooterParts.FirstOrDefault()) };
    PageSize pageSize1 = new PageSize() { Width = (UInt32Value)12240U, Height = (UInt32Value)15840U };
    PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
    Columns columns1 = new Columns() { Space = "720" };
    DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };
    sectionProperties1.Append(headerReference2);
    sectionProperties1.Append(footerReference2);
    sectionProperties1.Append(pageSize1);
    sectionProperties1.Append(pageMargin1);
    sectionProperties1.Append(columns1);
    sectionProperties1.Append(docGrid1);
    paragraphProperties1.Append(sectionProperties1);
    oxl.InsertAt<ParagraphProperties>(paragraphProperties1, 0);
    body.InsertBefore<Paragraph>(GenerateParagraph(txt, oxl.GetAttribute("rsidRDefault", oxl.NamespaceUri).Value), body.GetFirstChild<SectionProperties>());
    part.Document.Save();
    wordprocessingDocument.Close();
    //Generate new Paragraph
    public static Paragraph GenerateParagraph(string text, string rsidR)
    Paragraph paragraph1 = new Paragraph() { RsidParagraphAddition = rsidR };
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    Tabs tabs1 = new Tabs();
    TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Position = 5583 };
    tabs1.Append(tabStop1);
    paragraphProperties1.Append(tabs1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = text;
    run1.Append(text1);
    Run run2 = new Run();
    TabChar tabChar1 = new TabChar();
    run2.Append(tabChar1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    paragraph1.Append(run2);
    return paragraph1;
    static void GenerateHeaderPartContent(HeaderPart hpart)
    Header header1 = new Header();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Header" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    header1.Append(paragraph1);
    hpart.Header = header1;
    static void GenerateFooterPartContent(FooterPart fpart)
    Footer footer1 = new Footer();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Footer" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    footer1.Append(paragraph1);
    fpart.Footer = footer1;
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Anyone know how to change the default font for the new pages? Apparently it does not even come up when I search the 'Help' section of Pages. The level of incompetence in this new version seems breathtaking

    I cannot find how to change the default font in the new Pages. It does not appear in the Help area when I search for it. I am never sing Helvetica for my standard documents and cannot seem to change it. What am I missing? And why does Pages help not have an easy answer?
    dan

    You open a blank template and change the font to you liking. Remember to also get all the styles changed with new font. Then Save As Template. Now you have a template with the font you like.

  • How to change keyboard map fmrweb.res for different forms

    I'm using Oracle Forms 10g with Oracle Forms and Reports Application server 10g.
    I know how to change fmrweb.res to change how keys function on web forms. The problem I'm having is I only know how to assign the fmrweb.res file when connecting to the application server, which means all forms running on that session have to use the same keyboard mapping.
    I know you can change the defualt fmrweb.res for all the forms executed on the application server
    and you can change the fmrweb.res file in the URL like
    server/forms/frmservlet?Form=login.fmx&config=dataentry
    (where dataentry is defined in the formsweb.cfg file)
    and in the config section I have
    [dataentry]
    term=fullpath/fmrweb_new.res
    My question is, is there a way to pick a different fmrweb.res file based on the form?
    Can you specify multiple forms in the basexxx.htm file(basejini.htm) in the PARAM section like
    <PARAM NAME="serverArgs"
    VALUE="module=form1.fmx term=fillpath/filename1.res"
    VALUE="module=form2.fmx term=fillpath/filename2.res"
    VALUE="module=form3.fmx term=fillpath/filename3.res"
    VALUE="module=form4.fmx term=fillpath/filename4.res">
    Is there a way to pass term=fullpath\filename.res to the Oracle Forms Web Runtime process for each form using call_form, open_form, or new_form?
    Edited by: user537213 on Sep 19, 2008 5:38 PM
    Edited by: user537213 on Sep 19, 2008 6:24 PM

    Posiible approach (i now it sounds strange):
    Configure your enter-key to fire the KEX-EXEQRY-Trigger.
    In the dataentry-form-module: Overwrite the KEY-EXEQRY-Trigger so thtat is just does a NEXT_ITEM; .
    I know there may be other implications depending of the compelixity of your dataentry-form, but maybe this helps.

  • How to change reject call SMS message text

    Hello everyone
    Some time ago I bought a Nokia N9 and one feature I use frequently is reject calls sending a message.
    In other Nokia phones (symbian) you can change the message text in options section, but in this phone I can find how to change it.
    Do anyone know how to change this message?
    Thanks in advance

    Hi Amit,
    This can be done easily, if it showing the data of a view object then you can change the value of view attribute.
    Suppose a column in VO I say rank fetches value as 1,2,3 then in vo query to append L1,L2....
    Suppose I have quary like select rank from xx_table then I can change it to select 'L'||rank from xx_table.
    I hope this will resolve your problem.
    Regards,
    Reetesh Sharma

  • How to change the default left alignment setting in Word 2010 professional (personal use)

    Hi, I use Word 2010 Professional for my personal use at home, and somehow the default setting for the left alignment in a new Word document has been changed to a hanging indent at .25.  So every time I open a new Word  document, the left margin
    has an indent setting.  I have to change it to 0.0 every time, which is annoying.
    I've tried to go into the "Options" section, under "Custom Settings" to de-select an auto left margin indentation, but I can't seem to find an option to do that.  Can anyone please tell me how to change this setting in the master Word 2010 template,
    so that every time I open a new doc, the left side is aligned at the 1" margin with no hanging indent?
    Thank you.

    Page Layout-Page Setup-Margins-Custom Margins...-change your setting-Set As DefaultStay Hungry, Stay Foolish

  • How to change DEFAULT font and font size on new Pages document

    When I open a new Page document, it always comes in with a default font and font size. I know how to change those settings on the open document.
    I want to know how to change the ~default~ font and font size so that a new Page document always opens with those default settings.
    -Thanks for your service to the community.

    Hi Lionate
    Welcome to the forum.
    Make a document to your liking.
    Change the Body style and any other styles in :
    +Menu > Show Styles Drawer > click on the little triangle next to Body > redefine Style from Selection+
    Capture the page:
    +Menu > Format > Advanced > Capture Pages… > Name it > OK+
    +Menu > Format > Advanced > Manage Pages… > Delete other Sections/Pages > OK+
    Save as a template:
    +Menu > File > Save as Template…+
    +Menu > Pages > Preferences > General Preferences > For New Documents > click Use template: > Choose > browse to the template above+
    Peter

  • How to change "Select a content category " text

    Hi folks,
    I really appreciate the support community, as I did deeper and deeper into the produce I've seen the same handful of names pop up across the board! Thanks for all your help!
    I was wondering how to change the "Select a content category>>" text that displays in a traditional skin next to your content categories upon generation. Specifically this:
    Is there a way to edit the text? Mine are focused on government levels and I'd like to make it easier for users.
    Thanks! Happy New Year!

    Hi there
    I believe you do it as follows:
    Click File > Project Settings.
    Ensure the General tab has focus.
    Click the Advanced... button.
    Click the LNG File tab.
    Scroll the list to the [WebHelp] section.
    Locate the item that reads: ContentCategoryList=Select a content category.
    Click on it to select it.
    Click the Edit button.
    Change the text following the equals sign it to what you want it to read.
    ContentCategoryList=Change this text
    Press Enter to accept the change.
    Click OK to dismiss the dialogs.
    Generate and test!
    Hope this helps... Rick

Maybe you are looking for

  • Sun cluster 3.2 - resource hasstorageplus taking too much time to start

    I have a disk resource called "data" that takes too much time to startup when performing a switchover. Any idea what may control this ? Jan 28 20:28:01 hnmdb02 Cluster.Framework: [ID 801593 daemon.notice] stdout: becoming primary for data Jan 28 20:2

  • Goods movement from Maintenance order

    Hi Experts I have the following scenario, I have a component ( with Material master) in the maintenance order  and i use Item category N to trigger  a Purchase requisition. The Pur Req is converted to Purchase Order and then the GR is done directly t

  • Youtube audio keeps playing after I hit back button.

    Hi, I've been having this issue on youtube when I hit the back button the audio from the video keeps playing, I've also noticed that it only seems to happen when the comment section gets stuck loading which is frequent even though I have a fast inter

  • Interactive code

    can any one help me code plz an Interactive Report for displaying plant status report to know the status of a particular material.

  • Working of SLIN in abap

    Hi, Can anyone please tell me how does the SLIN work in ABAP. I am using a code which involves the use of SLIN in ecc 6.0 system. When I use the same code in 4.7 system, it is giving errors. Can I copy-paste the code of the SLIN Type Pool from 6.0 sy