Please help me with a simple flash game problem

I am trying to learn how to make flash games with Adobe flash 5.5. I am doing a tutorial from a book and am stuck.
The game is called concentration and you are suppose to match 2 tiles of the same shape. there are 10 shape tiles
and 1 question mark tile. These tiles are held in an array. 20 tiles are suppose to be displayed 5 to a row with 4 rows
and the question mark is suppose to be up on all 20. My problem is I get a blank screen when I test the movie. I
think the code is good but I beleive I have not uploaded the tiles right. I did upload the 11 tiles to the library and have
those 11 tiles and tile_movieclip in the library. Here is the code:
package {
// importing classes
import flash.display.Sprite;
// end of importing classes
public class Main extends Sprite {
public function Main() {
// variables and constants
const NUMBER_OF_TILES:uint=20;
const TILES_PER_ROW:uint=5;
var tiles:Array=new Array();
var tile:tile_movieclip;
// end of variables and constants
// tiles creation loop
for (var i:uint=0; i<NUMBER_OF_TILES; i++) {
tiles.push(Math.floor(i/2));
trace("My tiles: "+tiles);
// end of tiles creation loop
// shuffling loop
var swap,tmp:uint;
for (i=NUMBER_OF_TILES-1; i>0; i--) {
swap=Math.floor(Math.random()*i);
tmp=tiles[i];
tiles[i]=tiles[swap];
tiles[swap]=tmp;
trace("My shuffled tiles: "+tiles);
// end of shuffling loop
// tile placing loop
for (i=0; i<NUMBER_OF_TILES; i++) {
tile=new tile_movieclip();
addChild(tile);
tile.cardType=tiles[i];
tile.x=5+(tile.width+5)*(i%TILES_PER_ROW);
tile.y=5+(tile.height+5)*(Math.floor(i/TILES_PER_ROW));
tile.gotoAndStop(NUMBER_OF_TILES/2+1);
// end of tile placing loop
Can someone please explain to me what I am suppose to do to make the this work? I beleive the problem is it doesnt know where the tiles are.
Thanks.

To create the tiles, draw 10 distinct shapes in the first 10 frames of your symbol, and
the back of the tile in the 11th frame. You are free to draw them as you want, but I suggest you make them as 90 pixels squares with registration point (starting x and y position) at 0, because these are the properties of the tiles used in this chapter's
examples. At least, they should all be the same size.
It didnt say put in a library. It is saying to draw them in frames of symbol but it didnt walk me through that. Can you guide me through this? I also was looking at how to add the link identifier but it said I need a popup window but I cant see one. I thought that was done
when I went to insert new symbol. It said something about actionscript linkage. I am familliar with perl, java and c++ so I can follow the code so far but I dont have much understanding of the flash interface. I made the 10 shape tiles and the 1 question mark tile
in paint. They are .jpeg images.

Similar Messages

  • Please help me with the digital signature validation problem?

    Please help me with the digital signature validation problem?

    Hi
    Execute the program in the Debuggin mode.
    In the Debugger Window
    Select Breakpoint -> Break point at -> Breakpoint at source code Menu Item and enter the details of the program/include/line no..
    Activate the System Debugger On from the Settings Menu.
    Hope this would help you.
    Murthy
    Edited by: Kalyanam Seetha Rama Murthy on Jul 18, 2008 7:20 AM

  • Please help me with Nokia E71 very strange problem...

    I have Nokia E71_v1, I got lots of strange problem like:
    1- The camera didnt save the images and create the images like this: Name of the image*jpg but I can take videos without a problem.
    2- when I put anything in the memory card or the phone memory it became currpted and then I couldnt open them at all, the message "can open the file" or "file is currpted" appears.
    3- I couldnt install any application to the phone, if I put any sis file on the memory I get "file currpted" message but if I sent it to the phone via bluetooth I could install it.
    4- The name of the folders usually change their name and currpted characters appeard in the folder naming.
    5- When I added any mp3 files to any memory the files are disappeared.
    410.21.010
    RM364
    Noka E71-1 (19)
    please help
    Attachments:
    090620091272.jpg ‏242 KB
    090620091273.jpg ‏299 KB

    You better reset the E71. Dial *#7370# 12345 reformat, you'll lose all data. Make a backup first and restore without the settings. Reformat the card in the phone and remove the card using the menu from the power button. Do not encrypt the card as a test.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Please help me with this chaotical Flash Builder 4.5 Code Assist

    Hello everybody. In the past few days, I have been analyzing a very strange behavior of my Flash Builder 4.5. I am trying to upgrade to it, from Flex Builder 3, but I am finding the process impossible due to 2 problems. This is the first one:
    I get no code assist for SOME casted types. I don't understand why! I would be very grateful to any kind soul which can pull me aboard Flash Builder 4.5. I've been waiting 26 months (yes, more than 2 years) to have an ActionScript IDE with snippets & conditional breakpoints and now I can't make it work ::- (.
    First, see this image:
    As you can see there, the environment WARNS me (I hate warnings!) that there is no "Text" member. HOWEVER, the code compiles and runs. Even worse, accessing that member after an explicit type declaration works fine.
    Now here comes the funny part: I declared some other type called "SomeClass" and put in it a TestMethod and casted "sender" to it. SURPRISE!!! The Code Assist works there!
    WHY !?
    I even tried a TestProperty, just like in G3Widget, and that works fine as well! I don't get it any more!!!
    I extracted some code for you:
    //This is where I did the above tests.
    package //This class is in the root of the application.
      import Gamaddiction.ASDFG.GAS3.G3Construction.G3Widget;
      import Gamaddiction.ASDFG.GAS3.G3Construction.SomeClass;
      public class SandBox
        private function cmdTwo_Click (sender: Object, fe: Event, payload: Object): void
          trace(G3Widget(sender).Text); //Can't see "Test" in Code Assist List and I get a WARNING: -Access of undefined property Text
          var a: G3Widget = G3Widget(sender);
          trace(a.Text); //But this works!
          trace(SomeClass(sender).TestMethod); //This crashes, of course, because sender is NOT a "SomeClass"
          //but nevertheless, it compiles fine and I get NO warnings and the Code Assist WORKS FINE HERE.
    //Code assist works fine for the following Class.
    package Gamaddiction.ASDFG.GAS3.G3Construction
      public class SomeClass
        public function SomeClass ()
        public function get TestMethod (): String
          return "bau";
    //This is the G3Widget Class, on whose Text member Code Assist fails.
    //This class is in THE SAME path as the above Class, which works fine.
    package Gamaddiction.ASDFG.GAS3.G3Construction
      public class G3Widget implements IG3Parent
        protected var _Text: String;
        public function get Text (): String
        { return _Text; }
        public function set Text (text: String): void
        { _Text = text; }

    I found why the nasty behavior above was happening ::- D.
    I usually design my classes in Enterprise Architect. Since this is a rather large project, started from of about 30 classes, I did the entire architecture in EA, then, generated the code.
    But, EA has poor AS3 support. And as a consequence, it has a few issues, such as the way it generates CONSTRUCTORS:
    public function G3Widget (name: String, parent: IG3Parent = null): void
    Spot the mistake ::- D.

  • Please help me with somewhat simple problems

    Hi,
    I'm being asked to produce a 90 second "movie/commercial" that will be put on youtube.  I've used Motion 4 to create using just text and jpg pictures.  I've imported these various scenes into Final Cut Pro and have added transitions and edited.  When I'm not playing the movie from the timeline, the text and pictures are crystal clear.  After rendering, when I play the timeline, all the pictures and text are fuzzy.  I thought that once I exported the video, it would look clear...but it doesn't.  Can somebody give me some direction on what I need to do so that everything looks clear?  It doesn't have to be HD quality...just clear.  I don't have a lot of experience with Final Cut as I have been using Adobe Premiere Elements for the last 5 years.  Its getting very frustrating.
    Thanks
    Greg

    The white background you are selecting is only a tool to help view the image in the canvas. It does not actually place a background in your sequence. To have a white background, click on the Generator Button ( lower right corner of the Viewer window with an "A" on it) and from the drop down menu, choose Matte > Color. This will load a solid color into the viewer. Click on the Controls tab in the viewer and adjust it to the color you want - in this case white.
    Next, on your sequence, if you don't already have an available Video track above your edited clips, then add one by control-clicking on the space above V1 and select Add Track:
    This will add another track:
    Select your video clips on V1, and move them directly up to V2 by selecting them, then clicking down and dragging the selected clips up to V2 so that V1 becomes empty:
    And then edit the color you have in the viewer to V1:
    Now you will have a White background behind what ever is on the higher Video Tracks. If you have a long edit, you may need to edit the white color a couple times to make it run the length of the edit.
    MtD

  • Can you please help me with this simple (not for me:) issue

    Why this doesnt work?
    public void spl ()
         String a=("moon.sun");
    String [] f=a.split(".");
    System.out.println(f[0]);
    }

    The second expression to split() is a regular expression. A period in a regular expression matches all characters, and you're wanting it to just match a period.
    To match just the period for your split, you'll need to escape it:String[] f = a.split("\\.");

  • Please help me with this 'did not respond' problem.

    So, I too have this same old 'user did not respond' problem. I know there are lot of similar problems but this was the last thing left to do – post here. So, audio and video are not working.
    My setup:
    ADSL-line -> A-Link RoadRunner 44E –modem --(wired)--> Airport Express –(wireless)--> My PowerBook
    More information about the modem can be found here: http://www.a-link.com/uk/RR44.html?id=H4phxx3p
    A-Link:
    IP = 10.0.0.2
    Subnet = 255.255.255.0
    NAT = Enabled (only way to get AirTunes to work)
    Firewall = Disabled
    Port forward = Disabled (tried it but no difference)
    DHCP = Enabled 10.0.0.3-10.0.0.99 Subnet 255.255.255.0
    UPnP = Don’t have it
    Airport Express:
    IP = 10.0.0.3
    Subnet = 255.255.255.0
    NAT = Disabled
    DHCP = Disabled
    PowerBook (10.4.4):
    IP = 10.0.0.22 (using dhcp)
    Subnet = 255.255.255.0
    Firewall = Off (On or off no difference. Yes, I added all the necessary ports)
    QuickTime Streaming Speed is set to match my Download
    iChat > Preferences > Video Section > Bandwidth Limit is set to NONE
    Tried 10.4.4 combo installer but no luck.
    Everything else works (Internet, Skype, AirTunes…) and I can text chat in iChat. I don’t know what else to try anymore . By-the-way this has worked with these same settings one time before, then it went dead. Don’t understand…
    I tried to connect and this is what /Applications/iChat.app/Contents/MacOS/iChat -errorLogLevel 7 had to say (looong and some is in finnish):
    PowerBook-Ville:~ ville$ /Applications/iChat.app/Contents/MacOS/iChat -errorLogLevel 7
    185350.100130 Loading hardware rules from hardwarerulesH264-G4.plist
    185350.101435 Checking H264 hardware rules
    185350.101926 Satisfied rule #4 (30:160x120)
    185350.102967 setLocalUserName: Ville @10.0.0.22
    185350.143698 ### NEW STATE: to: VC_INIT, from: VC_INVALID
    185350.145859 ### NEW STATE: to: VC_IDLE, from: VC_INIT
    185350.146389 ++++++++ confStatusMapRemoveAll
    185350.146662 ( ) -- mapUserIDToSecurityInfo cleared --
    185350.147441 UPnP init passed
    185350.150244 NATTraversal created
    185350.151282 Bandwidth based on QT prefs = 384
    185350.167948 BWD: GotBandwidth: 445845/468686 (up/down) @[10.0.0.22:255.255.255.0]
    185350.168679 BWD bandwidth: 445 kbits up, 468 kbits down.
    185350.168965 videoNetworkCapable: 1 -- 3 max participants.
    185350.169148 audioNetworkCapable: 1 -- 9 max participants.
    185350.169400 vcCapabilities returns: 0x0000001f
    185350.169914 VCCapAudio
    185350.170480 VCCapVideo
    185350.172530 VCCapMultiAudio
    185350.173351 VCCapMultiVideo
    185350.173632 VCCapMultiAudioHost
    185609.538404 Microphone: callback thread: STANDARD; EXTENDED timeshare: 0; PRECEDENCE importance: 17
    185609.538585 Microphone: null device thread: STANDARD; EXTENDED timeshare: 0; PRECEDENCE importance: 17
    185609.583711 Microphone devices:
    185609.583779 Camera_HasAudio = 0
    185609.586286 iSight Sisäänrakennettu
    185609.586693 Sisäinen mikrofoni
    185609.586740 Linja sisään
    185609.604815 Selected mic: Sisäänrakennet / imic
    185609.683890 SIPManager init
    185609.700807 selectedCamera returned iSight
    185609.972619 Microphone devices:
    185609.973469 Camera_HasAudio = 0
    185609.973961 iSight Sisäänrakennettu
    185609.975015 Sisäinen mikrofoni
    185609.975690 Linja sisään
    185609.978111 Microphone devices:
    185609.978692 Camera_HasAudio = 0
    185609.979612 iSight Sisäänrakennettu
    185609.980640 Sisäinen mikrofoni
    185609.981305 Linja sisään
    185609.984519 Microphone devices:
    185609.985590 Camera_HasAudio = 0
    185609.986262 iSight Sisäänrakennettu
    185609.989338 Sisäinen mikrofoni
    185609.990224 Linja sisään
    185609.993780 Microphone devices:
    185609.999644 Camera_HasAudio = 0
    185610.000253 iSight Sisäänrakennettu
    185610.001371 Sisäinen mikrofoni
    185610.002618 Linja sisään
    185610.004677 BWD: GotBandwidth: 445845/468686 (up/down) @[10.0.0.22:255.255.255.0]
    185610.005235 BWD bandwidth: 445 kbits up, 468 kbits down.
    185610.005539 videoNetworkCapable: 1 -- 3 max participants.
    185610.005750 audioNetworkCapable: 1 -- 9 max participants.
    185610.006038 vcCapabilities returns: 0x0000001f
    185610.006306 VCCapAudio
    185610.006494 VCCapVideo
    185610.006670 VCCapMultiAudio
    185610.006830 VCCapMultiVideo
    185610.006999 VCCapMultiAudioHost
    185610.017356 Camera_HasAudio = 0
    185610.018534 Diffusion prefilter disabled
    185610.019653 Temporal prefilter disabled
    185610.020353 startPreview returned 0
    185610.246234 VCDelegate conforms to VideoConferenceDelegate protocol.
    185610.246504 setLocalUserName: [email protected]
    185610.246738 ( ) setValidatedIdentity: [00000000]
    185610.484041 Updating local frame notification.
    185610.505527 Found 1 cameras:
    185610.506223 iSight - 2857630788957422
    185610.506822 selectedCamera returned iSight
    185610.509889 Microphone devices:
    185610.510561 Camera_HasAudio = 0
    185610.511032 iSight Sisäänrakennettu
    185610.512038 Sisäinen mikrofoni
    185610.512794 Linja sisään
    185610.513875 Selected mic: Sisäänrakennet / imic
    185610.515986 Found 1 cameras:
    185610.538016 iSight - 2857630788957422
    185610.541768 selectedCamera returned iSight
    185610.544617 Microphone devices:
    185610.545694 Camera_HasAudio = 0
    185610.546398 iSight Sisäänrakennettu
    185610.547749 Sisäinen mikrofoni
    185610.549249 Linja sisään
    185610.550480 Selected mic: Sisäänrakennet / imic
    185610.566895 Found 1 cameras:
    185610.567504 iSight - 2857630788957422
    185610.567942 selectedCamera returned iSight
    185610.598208 Microphone devices:
    185610.598987 Camera_HasAudio = 0
    185610.599405 iSight Sisäänrakennettu
    185610.600395 Sisäinen mikrofoni
    185610.605420 Linja sisään
    185610.606595 Selected mic: Sisäänrakennet / imic
    185610.887059 SNATMAP Configuration Data: snatmap://snatmap.mac.com:5678
    185610.887146 acquireSNATMAPConfigurationProc: Refresh UPnP status via SIP
    185610.887587 SIPUpdateExternalInfo, force = 0
    185610.887993 Transport(UDP) Thread start...
    185610.922366 Sending SNATMAP heartbeat to 11FAF895:5678
    185611.034312 Microphone devices:
    185611.034395 Camera_HasAudio = 0
    185611.034563 iSight Sisäänrakennettu
    185611.034772 Sisäinen mikrofoni
    185611.034808 Linja sisään
    185611.036584 Microphone devices:
    185611.036629 Camera_HasAudio = 0
    185611.036712 iSight Sisäänrakennettu
    185611.036907 Sisäinen mikrofoni
    185611.036942 Linja sisään
    185611.038972 Microphone devices:
    185611.039013 Camera_HasAudio = 0
    185611.039118 iSight Sisäänrakennettu
    185611.039377 Sisäinen mikrofoni
    185611.039418 Linja sisään
    185611.040876 Microphone devices:
    185611.040908 Camera_HasAudio = 0
    185611.040979 iSight Sisäänrakennettu
    185611.041128 Sisäinen mikrofoni
    185611.041158 Linja sisään
    185611.043801 Microphone devices:
    185611.043860 Camera_HasAudio = 0
    185611.043968 iSight Sisäänrakennettu
    185611.044153 Sisäinen mikrofoni
    185611.044187 Linja sisään
    185611.045709 Microphone devices:
    185611.045744 Camera_HasAudio = 0
    185611.045814 iSight Sisäänrakennettu
    185611.046424 Sisäinen mikrofoni
    185611.046468 Linja sisään
    185611.048000 Microphone devices:
    185611.048038 Camera_HasAudio = 0
    185611.048116 iSight Sisäänrakennettu
    185611.048312 Sisäinen mikrofoni
    185611.048345 Linja sisään
    185611.053033 Microphone devices:
    185611.053109 Camera_HasAudio = 0
    185611.053228 iSight Sisäänrakennettu
    185611.053932 Sisäinen mikrofoni
    185611.053984 Linja sisään
    185611.055690 Microphone devices:
    185611.055733 Camera_HasAudio = 0
    185611.055818 iSight Sisäänrakennettu
    185611.055982 Sisäinen mikrofoni
    185611.056014 Linja sisään
    185611.057544 Microphone devices:
    185611.057577 Camera_HasAudio = 0
    185611.057648 iSight Sisäänrakennettu
    185611.057800 Sisäinen mikrofoni
    185611.057831 Linja sisään
    185611.059749 Microphone devices:
    185611.059791 Camera_HasAudio = 0
    185611.059872 iSight Sisäänrakennettu
    185611.060046 Sisäinen mikrofoni
    185611.060077 Linja sisään
    185611.061622 Microphone devices:
    185611.061659 Camera_HasAudio = 0
    185611.061732 iSight Sisäänrakennettu
    185611.061883 Sisäinen mikrofoni
    185611.061913 Linja sisään
    185611.063394 Microphone devices:
    185611.063428 Camera_HasAudio = 0
    185611.063497 iSight Sisäänrakennettu
    185611.063643 Sisäinen mikrofoni
    185611.063672 Linja sisään
    185611.066617 Microphone devices:
    185611.066673 Camera_HasAudio = 0
    185611.066776 iSight Sisäänrakennettu
    185611.067227 Sisäinen mikrofoni
    185611.067271 Linja sisään
    185611.068950 Microphone devices:
    185611.068987 Camera_HasAudio = 0
    185611.069074 iSight Sisäänrakennettu
    185611.069268 Sisäinen mikrofoni
    185611.069303 Linja sisään
    185611.070700 Microphone devices:
    185611.070729 Camera_HasAudio = 0
    185611.070797 iSight Sisäänrakennettu
    185611.070943 Sisäinen mikrofoni
    185611.070972 Linja sisään
    185611.073651 Microphone devices:
    185611.073709 Camera_HasAudio = 0
    185611.073900 iSight Sisäänrakennettu
    185611.074105 Sisäinen mikrofoni
    185611.074137 Linja sisään
    185611.077101 Microphone devices:
    185611.077164 Camera_HasAudio = 0
    185611.077282 iSight Sisäänrakennettu
    185611.077535 Sisäinen mikrofoni
    185611.077574 Linja sisään
    185611.079754 Microphone devices:
    185611.079804 Camera_HasAudio = 0
    185611.079903 iSight Sisäänrakennettu
    185611.080082 Sisäinen mikrofoni
    185611.080115 Linja sisään
    185611.081523 Microphone devices:
    185611.081552 Camera_HasAudio = 0
    185611.081618 iSight Sisäänrakennettu
    185611.081762 Sisäinen mikrofoni
    185611.081792 Linja sisään
    185611.121455 Microphone devices:
    185611.122034 Camera_HasAudio = 0
    185611.122425 iSight Sisäänrakennettu
    185611.124169 Sisäinen mikrofoni
    185611.125123 Linja sisään
    185611.127666 Microphone devices:
    185611.128187 Camera_HasAudio = 0
    185611.128587 iSight Sisäänrakennettu
    185611.129647 Sisäinen mikrofoni
    185611.130244 Linja sisään
    185611.132819 Microphone devices:
    185611.134250 Camera_HasAudio = 0
    185611.135216 iSight Sisäänrakennettu
    185611.136205 Sisäinen mikrofoni
    185611.136834 Linja sisään
    185611.139475 Microphone devices:
    185611.139950 Camera_HasAudio = 0
    185611.140296 iSight Sisäänrakennettu
    185611.141079 Sisäinen mikrofoni
    185611.141615 Linja sisään
    185611.166215 SNATMAP heartbeat resulted in IP change (from: 0 to: C1E5E663)
    185611.166278 SNATMAP heartbeat resulted in port change (from: 0 to: 5060)
    185612.167249 UPnP not found (-3)
    185612.171190 SIPUpdateExternalInfo, force = 0
    185612.171685 count of local IP's = 2
    185612.171957 LOCAL: ifname=[external], IP=[193.229.230.99], PORT = 5060
    185612.172156 LOCAL: ifname=[en1(IPv6)], IP=[fe80:0005:0000:0000:0214:51ff:fe7d:9c80], PORT = 5060
    185612.172352 LOCAL: ifname=[en1], IP=[10.0.0.22], PORT = 5060
    185612.173468 LOCAL: ifname=[en1~], IP=[245.255.255.233], PORT = 5060
    185622.137382 BWD: GotBandwidth: 445845/468686 (up/down) @[10.0.0.22:255.255.255.0]
    185622.138294 BWD bandwidth: 445 kbits up, 468 kbits down.
    185622.138712 videoNetworkCapable: 1 -- 3 max participants.
    185622.139590 audioNetworkCapable: 1 -- 9 max participants.
    185622.140080 vcCapabilities returns: 0x0000001f
    185622.140369 VCCapAudio
    185622.140561 VCCapVideo
    185622.140722 VCCapMultiAudio
    185622.140873 VCCapMultiVideo
    185622.142572 VCCapMultiAudioHost
    185622.156043 BWD: GotBandwidth: 445845/468686 (up/down) @[10.0.0.22:255.255.255.0]
    185622.156628 BWD bandwidth: 445 kbits up, 468 kbits down.
    185622.156950 videoNetworkCapable: 1 -- 3 max participants.
    185622.157183 audioNetworkCapable: 1 -- 9 max participants.
    185622.157453 vcCapabilities returns: 0x0000001f
    185622.157698 VCCapAudio
    185622.157875 VCCapVideo
    185622.158024 VCCapMultiAudio
    185622.158272 VCCapMultiVideo
    185622.158449 VCCapMultiAudioHost
    185622.165188 Invoke delegate method vcc:initiateConferenceStartedForParty:(tapiopihlava2)
    185622.165935 ### NEW STATE: to: VC_SIGNALING, from: VC_IDLE
    185622.166598 initiateConferenceCallUsingRemoteIPAndPortData - start
    185622.167128 [ipAndPortData length] = 160
    185622.167895 Length is valid: YES
    185622.168283 CALLEE: ifname=[external], IP=[80.223.48.120], wPort = 5060
    185622.168547 CALLEE: ifname=[en0(IPv6)], IP=[fe80:0004:0000:0000:020d:93ff:fec2:a986], wPort = 5060
    185622.168809 CALLEE: ifname=[en0], IP=[192.168.0.103], wPort = 5060
    185622.169066 ( )( )( ) ---- <nil> valid returned 0
    2006-02-06 18:56:22.170 iChat[890] IPAndPortList: ({ip = "80.223.48.120"; port = 5060; }, {ip = "192.168.0.103"; port = 5060; })
    185622.170164 =========== OpenPorts!
    185622.362532 BWD: GotBandwidth: 445845/468686 (up/down) @[10.0.0.22:255.255.255.0]
    185622.364353 BWD bandwidth: 445 kbits up, 468 kbits down.
    185622.364681 videoNetworkCapable: 1 -- 3 max participants.
    185622.364885 audioNetworkCapable: 1 -- 9 max participants.
    185622.365149 vcCapabilities returns: 0x0000001f
    185622.365391 VCCapAudio
    185622.365562 VCCapVideo
    185622.365711 VCCapMultiAudio
    185622.365858 VCCapMultiVideo
    185622.366002 VCCapMultiAudioHost
    185622.656162 Public mapping: 193.229.230.99:16384
    185622.879503 Public mapping: 193.229.230.99:16385
    185623.444910 Public mapping: 193.229.230.99:16386
    185623.860324 Public mapping: 193.229.230.99:16387
    185623.874400
    VideoConferenceFramework version 245.0 - 02102005 - Dec 15 2005
    185623.875487 Checking H263 hardware rules
    185623.876060 Satisfied rule #4 (30:1)
    185623.877092 selectedCamera returned iSight
    185623.884938 * Caller SDP *
    185623.886009 v=0
    o=ville 0 0 IN IP4 %RTP-IP%
    [email protected]
    c=IN IP4 %RTP-IP%
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:1666
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio %ARTP-PORT% RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1939560629
    m=video %VRTP-PORT% RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO %ARTCP-PORT% VIDEO %VRTCP-PORT%
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-604506380
    185623.886877 SIPConnect start...
    185623.889046 TAInviteClientProc Thread start...
    185623.889850 ( )( )( )( )( ) TP IS BINARY? (0)
    185623.890303 ( )( )( )( )( ) TP TEXT BODY (910) (484)
    185623.890537 Send to 50DF3078:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 193.229.230.99;branch=z9hG4bK1386bfa62bd64505
    Max-Forwards: 70
    To: "tapiopihlava2" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1532351692
    Call-ID: 8145be4e-9731-11da-b767-f3451e6113c4@10-0-0-22
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 484
    v=0
    o=ville 0 0 IN IP4 193.229.230.99
    [email protected]
    c=IN IP4 193.229.230.99
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:1666
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1939560629
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-604506380
    185624.392078 ( )( )( )( )( ) TP IS BINARY? (0)
    185624.393194 ( )( )( )( )( ) TP TEXT BODY (910) (484)
    185624.394457 Send to 50DF3078:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 193.229.230.99;branch=z9hG4bK1386bfa62bd64505
    Max-Forwards: 70
    To: "tapiopihlava2" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1532351692
    Call-ID: 8145be4e-9731-11da-b767-f3451e6113c4@10-0-0-22
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 484
    v=0
    o=ville 0 0 IN IP4 193.229.230.99
    [email protected]
    c=IN IP4 193.229.230.99
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:1666
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1939560629
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-604506380
    185625.397658 ( )( )( )( )( ) TP IS BINARY? (0)
    185625.398766 ( )( )( )( )( ) TP TEXT BODY (910) (484)
    185625.399296 Send to 50DF3078:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 193.229.230.99;branch=z9hG4bK1386bfa62bd64505
    Max-Forwards: 70
    To: "tapiopihlava2" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1532351692
    Call-ID: 8145be4e-9731-11da-b767-f3451e6113c4@10-0-0-22
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 484
    v=0
    o=ville 0 0 IN IP4 193.229.230.99
    [email protected]
    c=IN IP4 193.229.230.99
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:1666
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1939560629
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-604506380
    185625.892455 Dialog(CREATED) Match(STATUS) [8145be4e-9731-11da-b767-f3451e6113c4@10-0-0-22]=[8145be4e-9731-11da-b767-f3451 e6113c4@10-0-0-22], [1532351692]=[1532351692]
    185625.893480 TAInviteClientProc Thread end(800B0017)...
    185625.894096 SIPConnect stop(900A0015)...
    185625.894489 SIPConnect start...
    185625.895221 TAInviteClientProc Thread start...
    185625.895918 ( )( )( )( )( ) TP IS BINARY? (0)
    185625.896499 ( )( )( )( )( ) TP TEXT BODY (890) (474)
    185625.896748 Send to C0A80067:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 10.0.0.22;branch=z9hG4bK21044bc52afe21a2
    Max-Forwards: 70
    To: "tapiopihlava2" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1854864533
    Call-ID: 82780e7a-9731-11da-b767-a80aaba613c4@10-0-0-22
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 474
    v=0
    o=ville 0 0 IN IP4 10.0.0.22
    [email protected]
    c=IN IP4 10.0.0.22
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:1666
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1939560629
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-604506380
    185626.398285 ( )( )( )( )( ) TP IS BINARY? (0)
    185626.399598 ( )( )( )( )( ) TP TEXT BODY (890) (474)
    185626.400034 Send to C0A80067:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 10.0.0.22;branch=z9hG4bK21044bc52afe21a2
    Max-Forwards: 70
    To: "tapiopihlava2" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1854864533
    Call-ID: 82780e7a-9731-11da-b767-a80aaba613c4@10-0-0-22
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 474
    v=0
    o=ville 0 0 IN IP4 10.0.0.22
    [email protected]
    c=IN IP4 10.0.0.22
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:1666
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1939560629
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-604506380
    185627.403907 ( )( )( )( )( ) TP IS BINARY? (0)
    185627.407726 ( )( )( )( )( ) TP TEXT BODY (890) (474)
    185627.408136 Send to C0A80067:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 10.0.0.22;branch=z9hG4bK21044bc52afe21a2
    Max-Forwards: 70
    To: "tapiopihlava2" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1854864533
    Call-ID: 82780e7a-9731-11da-b767-a80aaba613c4@10-0-0-22
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 474
    v=0
    o=ville 0 0 IN IP4 10.0.0.22
    [email protected]
    c=IN IP4 10.0.0.22
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:1666
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1939560629
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-604506380
    185627.897341 Dialog(CREATED) Match(STATUS) [82780e7a-9731-11da-b767-a80aaba613c4@10-0-0-22]=[82780e7a-9731-11da-b767-a80aa ba613c4@10-0-0-22], [1854864533]=[1854864533]
    185627.898634 TAInviteClientProc Thread end(800B0017)...
    185627.900651 SIPConnect stop(900A0015)...
    185627.901212 SIP connect returned 21
    185627.902477 SIPCloseCall start...
    185627.902912 (SIP.c:3322) Cannot find call ID(2)
    185627.903671 SIPCloseCall stop(800C0016)...
    185627.904006 ### NEW STATE: to: VC_IDLE, from: VC_SIGNALING
    185627.904247 ++++++++ confStatusMapRemoveAll
    185627.904434 ( ) -- mapUserIDToSecurityInfo cleared --
    185627.904619 Preparing to send VCInitiateConferenceCompleted
    185627.904842 Invoke delegate method vcc:initiateConferenceCompletedForParty:(tapiopihlava2) - retcode: -8
    185627.910736 SIPUpdateExternalInfo, force = 0
    185627.911922 count of local IP's = 2
    185627.912335 LOCAL: ifname=[external], IP=[193.229.230.99], PORT = 5060
    185627.912559 LOCAL: ifname=[en1(IPv6)], IP=[fe80:0005:0000:0000:0214:51ff:fe7d:9c80], PORT = 5060
    185627.912806 LOCAL: ifname=[en1], IP=[10.0.0.22], PORT = 5060
    185627.912978 LOCAL: ifname=[en1~], IP=[245.255.255.233], PORT = 5060
    185627.913185 sendPing: 80.223.48.120:5060
    185627.913404 Sending SNATMAP heartbeat to 50DF3078:5060
    185627.913731 Sending SNATMAP heartbeat to 50DF3078:5060
    185627.914107 Sending SNATMAP heartbeat to 50DF3078:5060
    185627.914425 sendPing: 192.168.0.103:5060
    185627.914689 Sending SNATMAP heartbeat to C0A80067:5060
    185627.915221 Sending SNATMAP heartbeat to C0A80067:5060
    185627.915564 Sending SNATMAP heartbeat to C0A80067:5060
    185634.876688 BWD: GotBandwidth: 445845/468686 (up/down) @[10.0.0.22:255.255.255.0]
    185634.878098 BWD bandwidth: 445 kbits up, 468 kbits down.
    185634.878441 videoNetworkCapable: 1 -- 3 max participants.
    185634.879209 audioNetworkCapable: 1 -- 9 max participants.
    185634.879652 vcCapabilities returns: 0x0000001f
    185634.879945 VCCapAudio
    185634.880129 VCCapVideo
    185634.880285 VCCapMultiAudio
    185634.880433 VCCapMultiVideo
    185634.880574 VCCapMultiAudioHost
    185638.106335 Connection closed from the child process
    185638.115266 cancelPreview returned 0
    185638.116545 MULTIPOINT VC_API OVERRIDE: endConference
    185638.117034 userIDToCallIDMap count = 0
    185638.117308 ++++++++ confStatusMapRemoveAll
    185638.117511 ( ) -- mapUserIDToSecurityInfo cleared --
    185638.222629 Found 1 cameras:
    185638.223364 iSight - 2857630788957422
    185638.223767 selectedCamera GUID returned iSight
    185638.226179 Microphone devices:
    185638.226723 iSight Sisäänrakennettu
    185638.227581 Sisäinen mikrofoni
    185638.228156 Linja sisään
    185638.228705 Selected mic: Sisäänrakennet / imic
    185638.229534 Found 1 cameras:
    185638.229992 iSight – 2857630788957422
    … The rest isn’t probably that important.
    So what the dell is going on !? Could somebody pleeaaase help me? Pleaseeeee.
    3.1.1   Mac OS X (10.4.4)  

    Hi
    I made a couple of changes hope they work.
    A-Link:
    IP = 10.0.0.2
    Subnet = 255.255.255.0
    NAT = Enabled (only way to get AirTunes to work)
    Firewall = Disabled>>>>>>>>>>>>>>>>>>>>>>>>>>Enable firewall
    Port forward = Disabled (tried it but no difference)>>>>>>>Enable go here for info http://www.portforward.com/english/routers/port_forwarding/A-Link/roadrunner44b/ iChat.htm
    DHCP = Enabled 10.0.0.3-10.0.0.99 Subnet 255.255.255.0
    UPnP = Don’t have it
    Airport Express:
    IP = 10.0.0.3
    Subnet = 255.255.255.0
    NAT = Disabled>>>>>>Enable
    DHCP = Disabled
    PowerBook (10.4.4):
    IP = 10.0.0.22 (using dhcp)
    Subnet = 255.255.255.0
    Firewall = Off (On or off no difference. Yes, I added all the necessary ports)>>>>>>>>>>>>>>Turn on and untick any ports you put in for iChat
    QuickTime Streaming Speed is set to match my Download
    iChat > Preferences > Video Section > Bandwidth Limit is set to NONE
    Tried 10.4.4 combo installer but no luck.
    Tony

  • Since up dating my Firefox I can not play any games on Facebook they all run very slow, can someone please help me with a solution.

    Since up dating my Firefox I can not play any games on Facebook they all run very slow, can someone please help me with a solution.It mainly seems to be with games.

    RE: "P.S. I  found it aggravating that I couldn't copy and paste text  here, it wanted me to insert as a link or an image, how do you insert plain  text?"
    I take it you tried using the "right click" menu?   That doesn't seem to work, as you noted, but, you should be able to paste text by pressing your CTRL key  and while holding it down, press the "V" letter  key.
    CTRL + C = COPY
    CTRL + X = CUT
    CTRL + V = PASTE
    HTH,
    Ortho_Fan

  • Please help me with simple program

    Can someone please write a simple program for me that opens up a webpage in the center of the screen , with a set size, and then asks the user where they would like to click on the screen. Then once the person clicks it asks how many times they would like to click there, and then once they enter the # the program opens up the webpage (in the center at the same spot as before, with the same set size) and automatically clicks on the predesignated spot , and then closes all open internet windows, and keeps doing it for however many times the person chose. PLEASE HELP ME WITH THIS!!! If you could, please post the source code here. Thank you so much to whoever helps me!!!!!!!

    If it's not to learn, then what is the purpose of
    this project?well, if it's not HW and its not for learning java, then why the hell would anyone like to have a program that may open a webpage and then repeatedly click on predefined place...
    let me see...
    now if he had asked for program that fakes IP as well, then i would suggest that he tryes to generate unique clicks, but now... i'm not sure... maybe just voting in some polls or smthing... though, i would not create a program that clicks on the link or form element, but rather just reload url with given parameters for N times...

  • HT201401 Q) Can anyone please help me with this: My in coming call ringing tone not working?

    Q) Can anyone please help me with this: My in coming call-messges ringing tone not working? All I am getting in Vabration + Flashing light when receiveing messages or incoming Calls. I am missing my phone Calls constantly. Please Help me?
    I have just received this phone as a replacement from my insurance company, as I had lost my own phone. It has taken them 3 weeks to sort this out. This has ruined my business because it has taken so long. I really do not have time to send it back to them. Because it will waist another three weeks for them to sort it out again. Please Help!

    HA! By Jove I've Got it! it was simples..
    TURN ON THE RINGING ON / OFF BUTTON ON THE SIDE OF YOUR PHONE JUST ABOVE THE VOLUME BUTTONS. THEN MAKE SURE THE VOLUME IS UP TO THE HIGHEST. NOW JUST TRY THIS!
    I ALSO LOOKED UP A MANUAL ON IPHONE4:
    Ringtones, Ring/Silent switch, and vibrate
    iPhone comes with ringtones that sound for incoming calls, Clock alarms, and the Clock timer.
    You can also purchase ringtones from songs in iTunes. See Chapter 22, iTunes Store, on page 94.
    Set the default ringtone: Go to Settings > Sounds > Ringtone.
    Turn the ringer on or off: Flip the switch on the side of iPhone.
    Important:  Clock alarms still sound even if you set the Ring/Silent switch to silent.
    Turn vibrate on or off: Go to Settings > Sounds.
    Assign a different ringtone for a contact: In Contacts, choose a contact, tap edit, then tap
    Ringtone and choose a ringtone.
    For more information, see Sounds on page 139.
    THE REASON MY PHONE HAD NO RING TONE, WAS SIMPLY BECAUSE THE VOLUME WAS TURNED DOWN. :-/
    I HOPE THIS HELPS OTHERS INFUTURE!   :-D

  • Please help me with the following two questions, very urgent

    Hi All,
    Please help me with some scenerios about what are the common problems when modifying a standard script such a standard Invoice script and how can we overcome them.
    What are the common problems encountered when working with SAP SMARTFORMS and how to overcome them?
    Please help me with these questions, its very urgent.
    Thanks in advance.
    MD.

    hi
    hope it will help you.
    reward if ehlp.
    How to create a New smartfrom, it is having step by step procedure
    http://sap.niraj.tripod.com/id67.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Here is the procedure
    1. Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
    First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
    Here, you can specify your title and page numbering
    &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
    Main windows -> TABLE -> DATA
    In the Loop section, tick Internal table and fill in
    ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name Type assignment Reference type
    ITAB1 TYPE Table Structure
    Global definitions
    Variable name Type assignment Reference type
    ITAB2 TYPE Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g. HD_GEN for printing header details,
    IT_GEN for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
    http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
    INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
    MOVE-CORRESPONDING MKPF TO INT_MKPF.
    APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    if sy-subrc <> 0.
    WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    GS_MKPF = INT_MKPF
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Smartform
    you can check this link here you can see the steps and you can do it the same by looking at it..
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    SMARTFORMS STEPS.
    1. In Tcode se11 Create a structure(struct) same like the Internal table that you are going to use in your report.
    2. Create Table type(t_struct) of stracture in se11.
    3. In your program declare Internal table(Itab) type table of structure(struct).
    4. Define work area(wa) like line of internal table.
    5. Open Tcode Smartforms
    6. In form Global setting , forminterface Import parameter define Internal table(Itab) like table type of stracture(t_struct).
    7. In form Global setting , Global definitions , in Global data define Work area(wa) like type stracture(struct).
    8. In form pages and window, create Page node by default Page1 is available.
    9. In page node you can create numbers of secondary window. But in form there is only one Main window.
    10. By right click on page you can create windows or Go to Edit, Node, Create.
    11. After creating the window right click on window create table for displaying the data that you are passing through internal table.
    12. In the table Data parameter, loop internal internal table (Itab) into work area(wa).
    13. In table there are three areas Header, Main Area, Footer.
    14. Right click on the Main area create table line by default line type1 is there select it.
    15. Divide line into cells according to your need then for each cell create Text node.
    16. In text node general attribute. Write down fields of your work area(wa) or write any thing you want to display.
    17. Save form and activate it.
    18. Then go to Environment, function module name, there you get the name of function module copy it.
    19. In your program call the function module that you have copied from your form.
    20. In your program in exporting parameter of function pass the internal table(itab).
    SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms.
    SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can
    configure forms with data from an SAP System for the relevant business processes.
    To print a form, you need a program for data retrieval and a Smart Form that contains the entire from logic. As data retrieval and form logic are separated, you must only adapt the Smart Form if changes to the form logic are necessary. The application program passes the data via a function module interface to the Smart Form. When activating the Smart Form, the system automatically generates a function module. At runtime, the system processes this function module.
    You can insert static and dynamic tables. This includes line feeds in individual table cells, triggering events for table headings and subtotals, and sorting data before output.
    You can check individual nodes as well as the entire form and find any existing errors in the tree structure. The data flow analysis checks whether all fields (variables) have a defined value at the moment they are displayed.
    SAP Smart Forms allow you to include graphics, which you can display either as part of the form or as background graphics. You use background graphics to copy the layout of an existing (scanned) form or to lend forms a company-specific look. During printout, you can suppress the background graphic, if desired.
    SAP Smart Forms also support postage optimizing.
    Also read SAP Note No. 168368 - Smart Forms: New form tool in Release 4.6C
    What Transaction to start SAP Smart Forms?
    Execute transaction SMARTFORMS to start SAP Smart Forms.
    Key Benefits of SAP Smart Forms:
    SAP Smart Forms allows you to reduce considerably the implementation costs of mySAP.com solutions since forms can be adjusted in minimum time.
    You design a form using the graphical Form Painter and the graphical Table Painter. The form logic is represented by a hierarchy structure (tree structure) that consists of individual nodes, such as nodes for global settings, nodes for texts, nodes for output tables, or nodes for graphics.
    To make changes, use Drag & Drop, Copy & Paste, and select different attributes.
    These actions do not include writing of coding lines or using a Script language.
    Using your form description maintained in the Form Builder, Smart Forms generates a function module that encapsulates layout, content and form logic. So you do not need a group of function modules to print a form, but only one.
    For Web publishing, the system provides a generated XML output of the processed form.
    Smart Forms provides a data stream called XML for Smart Forms (XSF) to allow the use of 3rd party printing tools. XSF passes form content from R/3 to an external product without passing any layout information about the Smart Form.
    SmartForms System Fields
    Within a form you can use the field string SFSY with its system fields. During form processing the system replaces these fields with the corresponding values. The field values come from the SAP System or are results of the processing.
    System fields of Smart Forms
    &SFSY-DATE&
    Displays the date. You determine the display format in the user master record.
    &SFSY-TIME&
    Displays the time of day in the form HH:MM:SS.
    &SFSY-PAGE&
    Inserts the number of the current print page into the text. You determine the format of the page number (for example, Arabic, numeric) in the page node.
    &SFSY-FORMPAGES&
    Displays the total number of pages for the currently processed form. This allows you to include texts such as'Page x of y' into your output.
    &SFSY-JOBPAGES&
    Contains the total page number of all forms in the currently processed print request.
    &SFSY-WINDOWNAME&
    Contains the name of the current window (string in the Window field)
    &SFSY-PAGENAME&
    Contains the name of the current page (string in the Page field)
    &SFSY-PAGEBREAK&
    Is set to 'X' after a page break (either automatic [Page 7] or command-controlled [Page 46])
    &SFSY-MAINEND&
    Is set as soon as processing of the main window on the current page ends
    &SFSY-EXCEPTION&
    Contains the name of the raised exception. You must trigger your own exceptions, which you defined in the form interface, using the user_exception macro (syntax: user_exception <exception name >).
    Example Forms Available in Standard SAP R/3
    SF_EXAMPLE_01
    Simple example; invoice with table output of flight booking for one customer
    SF_EXAMPLE_02
    Similar to SF_EXAMPLE_01 but with subtotals
    SF_EXAMPLE_03
    Similar to SF_EXAMPLE_02, whereby several customers are selected in the application program; the form is called for each customer and all form outputs are included in an output request
    Advantages of SAP Smart Forms
    SAP Smart Forms have the following advantages:
    1. The adaption of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases.
    2. Displaying table structures (dynamic framing of texts)
    3. Output of background graphics, for form design in particular the use of templates which were scanned.
    4. Colored output of texts
    5. User-friendly and integrated Form Painter for the graphical design of forms
    6. Graphical Table Painter for drawing tables
    7. Reusing Font and paragraph formats in forms (Smart Styles)
    8. Data interface in XML format (XML for Smart Forms, in short XSF)
    9. Form translation is supported by standard translation tools
    10. Flexible reuse of text modules
    11. HTML output of forms (Basis release 6.10)
    12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis-Release 6.10)

  • Please help me with the step by step instructions on how to install a Windows server 2008 on a computer that has Windows 8 installed on it

    Please help me with the step by step instructions on how to install a Windows server 2008 on a computer that has Windows 8 installed on it without formatting windows 8.Please email the steps , Thanks

    Please help me with the step by step instructions on how to install a Windows server 2008 on a computer that has Windows 8 installed on it without formatting windows 8.Please email the steps , Thanks
    Assuming your rig can support virtual machines, you can use Hyper-V and run another OS there.
    Better practice however is to use a dedicated machine and use remote desktop to the server.
    Corsair Carbide 300R with window
    Corsair TX850V2 70A@12V
    Asus M5A99FX PRO R2.0 CFX/SLI
    AMD Phenom II 965 C3 Black Edition @ 4.0 GHz
    G.SKILL RipjawsX DDR3-2133 8 GB
    EVGA GTX 6600 Ti FTW Signature 2(Gk104 Kepler)
    Asus PA238QR IPS LED HDMI DP 1080p
    ST2000DM001 & Windows 8.1 Enterprise x64
    Microsoft Wireless Desktop 2000
    Wacom Bamboo CHT470M
    Place your rig specifics into your signature like I have, makes it 100x easier to understand!
    Hardcore Games Legendary is the Only Way to Play!

  • Please help me to find simple mathod to get working hours

    Please help me to find simple mathod to get  working hours .The following is my script
    ardate is date argument  in afunction
    id would be integer argument
    Choose  case  dayname(ardate)
      case  'monday'
    select mon_hrs
    into:l_db_hrs from workhrs
    where empid= :id;
      case  'tuesday'
    select tue_hrs
    into:l_db_hrs from workhrs
    where empid= = :id;
      case  'wednesday'
    select wed_hrs
    into:l_db_hrs from workhrs
    where empid= = :id;
     End  Choose
    With Many Thanks
    polachan

    Hi polachan,
    Since this is SQL Server forum, as other post, you need to describe your table structure, the data and expected results. Then it is appropriate and more experts will assist you in there.
    According to your code message, it does not regards SQL Server T-SQL statement. We need to verify if there are two tables (workhrs and I_db_hrs), after checking the values of “ Monday”,”Tuesday”,”Wednesday” from the workhrs table, then copy the related working
    hours into the new table (I_db_hrs),  right?
    If yes, you can refer to the following T-SQL statement.
    create table workhrs
    (id int, workname varchar(20), ardate varchar(10), hrs int)
    insert into workhrs
    values
    (1, 'A','monday',1),
    (1, 'A','tuesday',3),
    (1, 'A','wednesday',5),
    (2, 'B','monday',1),
    (2, 'B','tuesday',1),
    (3, 'C','monday',1),
    (3, 'C','wednesday',2)
    select * from workhrs
    select id, ardate, hrs into I_db_hrs from workhrs
    select * from I_db_hrs order by ardate
    ---the result:
    id ardate hrs
    1 monday 1
    2 monday 1
    3 monday 1
    2 tuesday 1
    1 tuesday 3
    1 wednesday 5
    3 wednesday 2
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • My MacBook Pro iTunes movie purchase is not showing in iTunes store movie purchases nor does it show on my iPad or Apple TV.  Can someone please help me with a solution?  Thanks.

      First of all, I live in Ho Chi Minh City, Vietnam. Sometimes, I use a VPN to search on the web here. I purchased Toy Story 3 on my MacBook Pro 2011 OS/X - Lion through iTunes.  I initially had trouble downloading it which may be due to being on and off the VPN but after a while it finally downloaded and shows up in my iTunes library on my MacBook. 
      Under my Apple ID account (which is the only Apple ID account I have), I look under purchase history and it shows that I paid for Toy Story which is where I got my Order # from.  But if you go to the iTunes Store then to the Quick Links then click on Purchased, under all my Movies, it does NOT show Toy Story 3 as one of my movies.
      Now when I go to my iPad (3rd gen.), Toy Story 3 does not show up under purchased movies (all or not on my iPad).  It does not show up on my Apple TV as well.  If I want to have Toy Story 3 on my iPad or Apple TV, then it says I have to purchase it again.
      I have searched for help via Apple support communities but so far none of their solutions have worked for me.  I have tried logging off iTunes & App Store on iPad and also shutting down the iPad.  I also made sure that under iTunes Preferences>Store that iTunes in the Clouds purchases is checked. Can someone please help me with this?  Your consideration is greatly appreciated.  Thanks.

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • I bought a movie the movie Godzilla 2014 recently but it didn't show up in my library. I went check the itunes store and it wants me to buy it again. Please help me with this problem.

    I just bought this movie "Godzilla 2014" but it won't show in my Movie Library. I closed my Itunes and put it back on again but still won't show up. I checked my purchased list and it shows that I recently bought the movie but when I checked the itunes store it wants to buy the movie again. Please help me with this right away Apple.

    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes
    international calling numbers..
    For Mac App Store: Apple - Support - Mac App Store.
    For iTunes: Apple - Support - iTunes.

Maybe you are looking for

  • Interactive Reporting and Aging Report

    I would like to create an aging report for our I.T. tickets using the results of my IR query. I looked at the date functions, but they seem to be limited (as in no DaysBetween option or no convert the date to day of the year option). Any suggestions

  • How to increase the line items against the std no of line items in MIGO

    hi, I have PO with more than 100 line items During GR system is showing the error message as Maximum number of items F1 reached What is the standard no of line items in MIGO And how to increase the line items Is there any notes to apply plz give suta

  • Unanswered Replacement Hard Drive Questions

    Hello everyone, Recently I've been researching upgrading my internal hard drive in anticipation for Leopard and new features. Almost all posts on this topic have pointed towards using SuperDuper and an external firewire drive to make a clone. That's

  • I can't turn off iPad 2 Screen

    I have that problem when i update from iOS 6 to 7 then cant fix it, i tried to eraser , format, restore everything then still cant fix it My Power button is totally work (restart, screenshot, ...) but cant lock ipad screen, i alway need to wait 2 min

  • Oracle 11g and sqldeveloper

    hi, could some one tell how to connect oracle 11g in windows from sqldeveloper. Is there something like starting oracle 11g before connection, I am bit confused.