[android-developers] Creating events

2008-04-03 Thread dimenwarper
hey all! Does anyone know if there is any way to create and launch events (such as click and key events) via software (e.g. createClickEvent(float x, float y))? Rgrds, dw --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Creating events

2008-04-03 Thread Dan U.
You mean to make your app interact with another app? I don't think that's possible. On Apr 2, 11:13 pm, dimenwarper [EMAIL PROTECTED] wrote: hey all! Does anyone know if there is any way to create and launch events (such as click and key events) via software (e.g. createClickEvent(float x,

[android-developers] DatePicker Refresh initialized date problem

2008-04-03 Thread kdavis95139
I have created an activity page where I programmatically display two different dates (at different times) using a single XML define DataPicker Calendar. My problem is, when I init() the date on the DatePicker Calendar the second time, the calendar reflects the correct date but does not redraw

[android-developers] WebView very weird behavior loading http://google.com

2008-04-03 Thread Diego Torres Milano
This is really weird ! WebView can load and display any web page but http://google.com ! I've tried this: public class WebActivity extends Activity { private WebView webView; @Override protected void onCreate(Bundle icicle) { super.onCreate(icicle);

[android-developers] Re: dlopen() behaving weird

2008-04-03 Thread David Given
Digit wrote: [...] ok, I had the time to look at the dynamic linker's sources, and clearly it doesn't implement R_ARM_ABS32 properly. I guess we never encountered this in the system because these relocs are (correctly) removed by our prelinker system. Ah --- excellent --- will do. Thanks.

[android-developers] Finish Activity(Urgent)

2008-04-03 Thread Greg
I have three activies A B C i start sub activity from A then i startsubactivity from B i just want to do like when i finish C ..it finish all activies and show me the A activity please help me out i tried to do that but ..when i press back button it

[android-developers] copyWindowBitmap() help needed

2008-04-03 Thread noha mansour
hi all, copyWindowBitmap() does not work any solutions? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Re: How can I determine if app is running on the emulator or a device.

2008-04-03 Thread Digit
the ro.qemu properly is defined when running in the emulator, and not the device. however, be *very* cautious about making different code path for emulator and device cases. this is generally not a good idea (and since no devices are available, you device-specific code is never going to run as

[android-developers] Re: Starting my application from browser using MIME Type Intent

2008-04-03 Thread baldmountain
I managed to get a bit farther. My intent filter looks like: !-- intent-filter action android:name=android.intent.action.VIEW / category android:name=android.intent.category.DEFAULT / data android:mimeType=text/plain / /intent-filter -- You can see it is commented out. It causes the

[android-developers] Re: Custom listview

2008-04-03 Thread David Given
dreamer wrote: [...] How can I make a custom list view, such that each item has for e.g a scroll text, image and a label. Ive checked it several times but to no success. Also how to do this thru layout XML only( without coding) if its possible. The easiest way I found to do that is to

[android-developers] Dynamic UI-Processing - without XML files.

2008-04-03 Thread simon
Hi. I want to make an app that displays a List (or Table) with a dynamic number of columns. I want to be able to assign data via a Cursor to a dynamic number of TextViews (or whatever) which represent a table row. For example: I can't use a SimpleCursorAdapter like this: new

[android-developers] Re: Long list of LogCat error messages from DeviceMonitor

2008-04-03 Thread [EMAIL PROTECTED]
I see the same messages, usually when the buildin gooogle service crashed. On Apr 3, 6:47 am, jalopy [EMAIL PROTECTED] wrote: I have seen these error messages all the time. I normally needed to restart my emulator with -wipe-data to get back to normal. I noticed that those error messages

[android-developers] Re: send attachment to gmail

2008-04-03 Thread Vincent BARAT
Hello, I get the same error (see below). Have you found a fix for that? I really cannot figure out how to fix this! ERROR/SendMail(5424): IOException while sending message ERROR/SendMail(5424): javax.mail.MessagingException: IOException while sending message; ERROR/SendMail(5424): nested

[android-developers] android app communicating with a database server

2008-04-03 Thread scimitar
Hi, I'm very new to Android, so I'm still trying to figure out the basics. I want to write an application that needs to communicate with a database server, and upload it's contact list to the server. In this regard I have the following questions: 1). Is there a way to associate a phone number

[android-developers] Re: Finish Activity(Urgent)

2008-04-03 Thread xingye
override B.onActivityResult and call finish() On 4月3日, 下午5时23分, Greg [EMAIL PROTECTED] wrote: I have three activies A B C i start sub activity from A then i startsubactivity from B i just want to do like when i finish C ..it finish all activies and

[android-developers] How to getTable list from SQLiteDatabase

2008-04-03 Thread Android-Berry
Hi All, As title, if App has dynmatically created some table within database. How to get table list from database? Thanks~ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: How to getTable list from SQLiteDatabase

2008-04-03 Thread Android-Berry
I have got it, Use SQLiteData SQLITE_MASTER table, Thanks. On Apr 3, 9:44 am, Android-Berry [EMAIL PROTECTED] wrote: Hi All, As title, if App has dynmatically created some table within database. How to get table list from database? Thanks~

[android-developers] Re: Dynamic UI-Processing - without XML files.

2008-04-03 Thread simon
Thanx for the fast answer. i also managed to build a dynamic UI in the mean time. But i still don't see a possibility to completly do it without XML files. Even in the example you mentioned, there is still the R class involved to get the main layout where the widgets will be put. and the

[android-developers] Re: suggestion: the *relevant* context should be automatically accessible from any method

2008-04-03 Thread Anil
ok, thanks! On Apr 2, 11:24 pm, Joe Onorato [EMAIL PROTECTED] wrote: Hi Anil, This is not correct. Here are a few examples: If your app has two services, there will be two different contexts running at the same time. If your app has two activities, one will still have methods running

[android-developers] Re: Conversion to Dalvik format failed with error 2

2008-04-03 Thread Taras Puchko
If your application does not declare or use annotations itself you may translate the dependency before adding it to the Eclipse project: java -jar retrotranslator-transformer-1.2.6.jar -target 1.5 -embed support -reflection safe -stripannot -srcjar gdata-media-1.0.jar Regards, Taras. On 28

[android-developers] Re: Creating events

2008-04-03 Thread dimenwarper
Yea, more or less I want one app of mine to serve as a proxy actor to another app. I don't see any of these in the docs or anywhere else so I'll probably have to implement a mini layer based on intents to do the job =| chrs, dw On Apr 3, 12:36 am, Dan U. [EMAIL PROTECTED] wrote: You mean to

[android-developers] Re: MapView.toggleShowMyLocation and MapController.setFollowMyLocation

2008-04-03 Thread Roland
Hi, I did not try Mark's suggestion, but I was able to get the map to behave as I expect it will when setFollowMyLocation is set to true by using a Handler with a call back to a Runnable that updates the map position to the current location. I was already using a similar technique to update the

[android-developers] gtalk - error 503 while sending message

2008-04-03 Thread nirdroid
ERROR/gtalkSrv(1639): ERROR Message: message id=8fmxs-5 to=[EMAIL PROTECTED]/androidwCxwXphYj3JM from=[EMAIL PROTECTED]/androidwCxwXphYj3JM type=error error code=503/error x xmlns=google:data-msg token=1yAeH-1 intent_action=com.test.app.msg app-data

[android-developers] Re: Conversion to Dalvik format failed with error 2

2008-04-03 Thread Taras Puchko
I've made a mistake in my previous post, the correct command is the following: java -jar retrotranslator-transformer-1.2.6.jar -target 1.5 - stripannot -embed support -reflection safe -classpath retrotranslator- android-1.2.6.jar -srcjar gdata-media-1.0.jar To use annotations in your code

[android-developers] Smack

2008-04-03 Thread CochiVgr
Hello everybody. I'm trying to extend several messages using smack library and I have got a problem. I can perfectly add an extension for a packet: Message my_message = new Message(); my_message.setTo([EMAIL PROTECTED]); PacketExtension my_extension = new PacketExtension(my_element, my

[android-developers] Re: Creating events

2008-04-03 Thread hackbod
No, we don't allow an application to inject key events that drive another app. Too big of a security hole. :) On Apr 3, 7:45 am, dimenwarper [EMAIL PROTECTED] wrote: Yea, more or less I want one app of mine to serve as a proxy actor to another app. I don't see any of these in the docs or

[android-developers] Re: Finish Activity(Urgent)

2008-04-03 Thread hackbod
Fwiw, there will be a better way to accomplish this in an upcoming SDK. On Apr 3, 6:13 am, xingye [EMAIL PROTECTED] wrote: override B.onActivityResult and call finish() On 4月3日, 下午5时23分, Greg [EMAIL PROTECTED] wrote: I have three activies A B C i

[android-developers] Progmatic Selection of List Item

2008-04-03 Thread Raja Nagendra Kumar
Hi, in ListActivity UI, how to pre select an item in the list, so that as soon as the list gets displayed, that item would be selected. Regards, Nagendra --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: adb logcat -f out.log doesn't work?

2008-04-03 Thread Raja Nagendra Kumar
Not sure if this the way filters should behave. By default only the those which match filter should be displayed. In you approach two filters are used one to completely stop all the message and other for application logs. I think by default *:s should have been applied when a filter spec is

[android-developers] Re: Progmatic Selection of List Item

2008-04-03 Thread Megha Joshi
Hi Nagendra, You could use getListView().setSelection(int position) in the OnCreate()/OnResume() of your Activity. Note that you will not see a highlighted selection initially when your List is displayed, but if you try to navigate through the items in your list, the navigation will start from

[android-developers] Android EditText Bug?

2008-04-03 Thread Android-Berry
Hi All, Is there anyone meets this issue? When I extend EditText view, and call super, it always throws me and exception like below: DEBUG/dalvikvm(599): Exception Ljava/lang/ClassNotFoundException; from PathClassLoader.java:205 not caught locally DEBUG/dalvikvm(599): NOTE: loadClass

[android-developers] Re: Dynamic UI-Processing - without XML files.

2008-04-03 Thread Dan U.
But if he's trying to use the CursorAdapter, is that even possible? The constructor needs an id of a layout xml file. I was going to say to create a layout xml that was basically just an empty container (maybe a LinearLayout) and then add child views into that programmatically, but it looks like

[android-developers] Re: Creating events

2008-04-03 Thread Dan U.
Yeah, I agree. Huge security problem there. I can see where it might come in handy for automated GUI testing, but not much else. On Apr 3, 9:35 am, hackbod [EMAIL PROTECTED] wrote: No, we don't allow an application to inject key events that drive another app. Too big of a security hole. :)

[android-developers] How does a user input a text on HVGA portrait mode with no keyboard, in the actual device.

2008-04-03 Thread Agus
For the actual device, how does a user input a text on HVGA portrait mode with no keyboard? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: LocationManager crashes app, every time

2008-04-03 Thread JoeB
No, only one emulator, but thanks for asking. After wiping emulator data and launching in debug mode from eclipse a few times, I was finally able to see logcat output. Ultimately it was a permission typo causing the crash. Still no idea why I couldn't get log info before. For anyone who is

[android-developers] bluetooth simulation?

2008-04-03 Thread Jason Pyeron
Does the SDK simulator support running two phones and communicating via Bluetooth? -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - - - Jason Pyeron PD Inc. http://www.pdinc.us - - Principal

[android-developers] Re: Text input on HVGA mode with no physical keys?

2008-04-03 Thread Agus
bump. On Thu, Apr 3, 2008 at 3:15 PM, Agus [EMAIL PROTECTED] wrote: How is it possible for users to input text when theres no physical keys on HVGA mode Maybe there exists a virtual keyboard for HVGA mode? --~--~-~--~~~---~--~~ You received this message

[android-developers] Text input on HVGA mode with no physical keys?

2008-04-03 Thread Agus
How is it possible for users to input text when theres no physical keys on HVGA mode Maybe there exists a virtual keyboard for HVGA mode? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: addRemoteChatListener in IGTalkSession

2008-04-03 Thread Bård Magnus
Same as Lev. I haven't been able to successfully register IChatListener either. Anyone out there have any insight or code samples to share on this? On 2 Apr, 22:47, Lev [EMAIL PROTECTED] wrote: I haven't quite understood what to implement into the asBinder method. Could you help me out?

[android-developers] How to show application loading progress bar on click of application on main home menu?

2008-04-03 Thread Niket Anand
Hi All, I am trying to show the progress bar when user clicks my app on android home main menu. I tried different options but failed to do so. Mainly I called ProgressDialog.show in onCreate method but it is not showing as I am looking for. As one can see my app icon on main menu then on click

[android-developers] Why bitmap cache was removed in mc5?

2008-04-03 Thread rostik slipetskyy
When I loaded images from the web, it was quite useful to use caching of images; however, in mc5 this functionality was removed. What was the reason for that? Is there any other way to cache images by means of SDK? --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: Is it safe to share a View among several layouts?

2008-04-03 Thread Romain Guy
Hi, You cannot do this. If you try to put the same View in different layouts, an exception will be thrown anyway. On Thu, Apr 3, 2008 at 1:34 PM, Anil [EMAIL PROTECTED] wrote: I need to use the same buttons in several list items - each of which is a nested layout. Instead of creating a

[android-developers] Scrolling with internal focus problem

2008-04-03 Thread Ted Hopp
I'm trying to work out how to do this properly in Android: I have a tall custom view embedded in a ScrollView. The custom view has a few scattered hot spots that can receive focus. (So far, this is more or less like the internal selection demo in ApiDemos.) I'd like the following behavior: the

[android-developers] Re: Creating events

2008-04-03 Thread Peli
Another possible usage could be speech recognition (SR) - if this is not covered by the Android framework itself: A SR application could put text at the cursor position of another application, and thus enable blind people to work with arbitrary applications - email, web browser forms, proprietary

[android-developers] Re: Is it safe to share a View among several layouts?

2008-04-03 Thread Anil
Thanks Romain for clarifying! On Apr 3, 3:40 pm, Romain Guy [EMAIL PROTECTED] wrote: Hi, You cannot do this. If you try to put the same View in different layouts, an exception will be thrown anyway. On Thu, Apr 3, 2008 at 1:34 PM, Anil [EMAIL PROTECTED] wrote: I need to use the same

[android-developers] Re: GTalk subscription requests broken ..

2008-04-03 Thread Megha Joshi
Subscriptions are stored in the IM content provider, in data/data/com.google.android.providers.im/databases/im.db. in the subscriptions table. On Tue, Apr 1, 2008 at 9:30 AM, writser [EMAIL PROTECTED] wrote: No, not yet. I just made a bug report although I guess that Google already knows

[android-developers] Re: How to show application loading progress bar on click of application on main home menu?

2008-04-03 Thread hackbod
If you are using M3, there is a bug where windows opened during startup would get covered by the app window. This was fixed in M5, where it should work fine. If ProgressDialog isn't being displayed, you might want to try a simple AlertDialog -- I -know- those worked when shown in onCreate() (as

[android-developers] Re: Online streaming MP3 Media Player

2008-04-03 Thread jessealbini
I have choppy audio playback as well. It works smoothly on XP for some reason though. - Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: gtalk - error 503 while sending message

2008-04-03 Thread Megha Joshi
I think the 503 generally means feature not supported. It looks like the destination address is an Android device (by looking at the resource pard of the JID). So is [EMAIL PROTECTED] a buddy of [EMAIL PROTECTED]? You need to be a buddy in order to send data messages to each other. Or could it be

[android-developers] Re: Is it safe to share a View among several layouts?

2008-04-03 Thread Anil
I have to say this - adding a button dynamically to a layout is *extremely* slow. It takes about 3 seconds for the button to be added! On Apr 3, 3:40 pm, Romain Guy [EMAIL PROTECTED] wrote: Hi, You cannot do this. If you try to put the same View in different layouts, an exception will be

[android-developers] View Parents

2008-04-03 Thread [EMAIL PROTECTED]
when i triying to change from a subactivity to main activity then push navigation keys and appear an exception what does mean? parameter must be a descendant of this view --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Is it safe to share a View among several layouts?

2008-04-03 Thread hackbod
On Apr 3, 2:50 pm, Anil [EMAIL PROTECTED] wrote: I have to say this - adding a button dynamically to a layout is *extremely* slow. It takes about 3 seconds for the button to be added! Um. I've never seen it take that long. :) Note that inflating a view hierarchy from a layout file is slower

[android-developers] Re: Quality of audio sound in MediaPlayer

2008-04-03 Thread acopernicus
I couldn't get a .ogg file to play, but from what I've heard, the quality is fairly low. Does anyone know how to setup a streaming server? I've looked for info on adding streaming functionality to my Tomcat server but can't find any info Anthony

[android-developers] How to setup a server for streaming audio files

2008-04-03 Thread acopernicus
I've spent over an hour looking for a way to add an .mp4 streaming web service to my Tomcat server but can't find any information. Could someone explain to me how we're supposed to setup such a server as streaming .mp4 files seems to be Android's only fully supported audio function. Also...has

[android-developers] Re: Text input on HVGA mode with no physical keys?

2008-04-03 Thread Zach Hobbs
Please don't bump a message twice 15 mins after posting. It's obvious that there will be some kind of on screen keyboard that users will use to input keys (like the iPhone), but it is not available with the currently SDK. -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads

[android-developers] Re: Good .apk file size to shoot for?

2008-04-03 Thread conlan
thanks On Mar 19, 11:30 pm, hackbod [EMAIL PROTECTED] wrote: 50k-500k sounds fine. ;) It really depends on your app. For calibration, I believe our minimum spec is 128MB of FLASH, and you should figure half of that dedicated to the system, so 32-64MB for installing applications and their

[android-developers] Re: How to setup a server for streaming audio files

2008-04-03 Thread David Given
acopernicus wrote: [...] Also...has anyone successfully streamed .mp4 files to Android? What is the quality like? If it's not better than playing my .mp3 files off the local drive then I'll just wait until the performance improves. Assuming you don't want *live* streaming, then surely all

[android-developers] synching a mobile app with an external database server

2008-04-03 Thread scimitar
Hi, I'm very new to Android, so I'm still trying to figure out the basics. I want to write an application that needs to communicate with a database server, and upload it's contact list to the server. In this regard I have the following questions: 1). Is there a way to associate a phone number

[android-developers] Re: Creating events

2008-04-03 Thread hackbod
Being able to inject key events to any applications means you can effectively do anything the user can do -- you can start phone calls without them being involved, download and install applications without them being involved, etc. This is not something we plan to support. On Apr 3, 5:03 pm,

[android-developers] RadioButton size

2008-04-03 Thread DotNetCode
I need to control the size of the RadioButtons inside a RadioGroup. Can someone please tell which attribute should I look for?? Thanks, PS: This is posted by someone else on developer group with no response. --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: Is it safe to share a View among several layouts?

2008-04-03 Thread Anil
When user clicks a button, these 3 lines are executed: button = new ImageButton(context); button .setImageResource(R.drawable.buttonJPG); layout.addView(button, new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); I observe that during the first add, it takes

[android-developers] Re: Is it safe to share a View among several layouts?

2008-04-03 Thread Romain Guy
It looks like its setImageResource() which is taking a lot of time. On Thu, Apr 3, 2008 at 6:28 PM, Anil [EMAIL PROTECTED] wrote: When user clicks a button, these 3 lines are executed: button = new ImageButton(context); button .setImageResource(R.drawable.buttonJPG);

[android-developers] MapView inside ScrollView doesn't move right

2008-04-03 Thread colintheprep
Hi - anybody know if it's possible to have a mapview inside a scrollview, and have it take focus such that it can move without the scrollview scrolling? So I want: scrollview some stuff mapview some more stuff When I drag on empty space or tab between elements in stuff, the scrollview

[android-developers] Re: Is it safe to share a View among several layouts?

2008-04-03 Thread Anil
Any way to speed it up? for example if there is a way that the image can be read in and stored in an image/icon class and if buttons can share that image/icon. Also do you have any idea why it is quicker on subsequent adds? On Apr 3, 8:29 pm, Romain Guy [EMAIL PROTECTED] wrote: It looks like

[android-developers] style and the color of the separator

2008-04-03 Thread Ken
1) How to change the color of the white separator in ListView? 2) For a more general question, where can I find the specification for the things that I can change inside style tag? Example: style name=Theme.Transparent item name=android:windowBackground@drawable/ transparent_background/item

[android-developers] Re: How to setup a server for streaming audio files

2008-04-03 Thread acopernicus
Thanks...I was able to access the .mp4 I created using IE FireFox but still cannot get the MediaPlayer to stream the .mp4 file. I'm even using the example MediaPlayer files provide by the Google team but STILL NO LUCK. Has anyone got the MediaPlayer examples to stream .mp4 files I

[android-developers] Re: NullPointerException Error (Very Easy)

2008-04-03 Thread Dan U.
It'd be helpful to see your code, but I'm guessing you have a ListActivity and you haven't set a list adapter. On Apr 3, 7:42 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello everyone, When I want to start my activity in Run mode, all I get is a NullPointerException error. When I run it

[android-developers] Any one tried uisng mediaplayer example ,I ma unable to play video file from local directory

2008-04-03 Thread karna
Any one tried uisng mediaplayer example ,I ma unable to play video file from local directory --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Progmatic Selection of List Item

2008-04-03 Thread Raja Nagendra Kumar
But why is such behavior, I would expect the display to be highlighted.. is this a bug.. On Apr 3, 11:26 pm, Romain Guy [EMAIL PROTECTED] wrote: Note that you will not see a highlighted selection initially when your List is displayed You will if the activity is launched using the keyboard

[android-developers] is there any plans to release c++ version of andriod

2008-04-03 Thread karna
is there any plans to release c++ version of andriod --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Re: MapView inside ScrollView doesn't move right

2008-04-03 Thread acopernicus
I don't use a MapView within a ScrollView. My understanding is that the MapView handles its own scrolling. You can see working examples of MapViews in my tutorials here: blog.pocketjourney.com Anthony --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: MediaPlayer example: Has anyone been able to stream an .mp4 file yet?

2008-04-03 Thread acopernicus
Please feel free to test your working code against my .mp4 file if your code works. It's possible there's something wrong with my .mp4 file, but I doubt it. Thanks...again! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: MapView inside ScrollView doesn't move right

2008-04-03 Thread xingye
Maybe you should override the scrollview's dispatchTouchEvent, and detect if the touch event fired by the mapview, then decided who will handle that event. On 4月4日, 上午9时47分, colintheprep [EMAIL PROTECTED] wrote: Hi - anybody know if it's possible to have a mapview inside a scrollview, and have

[android-developers] Re: NullPointerException Error (Very Easy)

2008-04-03 Thread xingye
Is there a view with id list in your layout file? On 4月4日, 下午12时46分, Dan U. [EMAIL PROTECTED] wrote: It'd be helpful to see your code, but I'm guessing you have a ListActivity and you haven't set a list adapter. On Apr 3, 7:42 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello