[XenConcept] Favicon For Links 2.0.3
خلاصه ویژگی:
سایت های حذف شده
تنظیمات برگزیده حساب
این افزونه به شما امکان می دهد فاویکون را در کنار لینک ها قرار دهید.
گزینه ها :
سایت های حذف شده
فاویکون برای:
پیام - پیوندهای داخلی (محلی).
پیام - پیوندهای خارجی
امضا - پیوندهای داخلی (محلی).
امضا -...
Warning Improvements by Xon v2.9.0
مجموعه ای از پیشرفت های سیستم هشدار XF
هشدار ; همه عناوین گروه کاربر در صورتی که در یک اقدام هشدار اعمال شوند قابل مشاهده خواهند بود
هشدارها/ممنوعیتهای با انقضای مبتنی بر زمان اکنون در اولین بازدید پس از زمان انقضا حذف میشوند، نه اینکه منتظر بمانید تا کار...
اضافه کردن آیکون برای وضعیت کاربران آفلاین
به قالب message_macros بروید و کد زیر را پیدا کنید:
<span class="message-avatar-online" data-xf-init="tooltip" title="{{ phrase('online_now')|for_attr }}"></span>
و این کد را زیر آن اضافه کنید
<xf:else /><span class="message-avatar-Offline"></span>...
#آموزش
♦️ بعضا پیش میاد که میخوایم ربات در جواب درخواستی که براش ارسال میشه،در جواب بصورت رندوم یه درصدی رو برای کاربر به نمایش بگذاره.
♦️ یه مثال میزنم تا درک این آموزش براتون ساده تر بشه.
➖➖➖➖➖➖➖➖
$update = json_decode(file_get_contents('php://input'));
$message = $update->message;
$cid =...
My program works well when using esp-now in the Arduino IDE, but when I transferred this program to B4R it does not work properly back to the specified CALLBack function. What are the drawbacks of my program? :rolleyes:
C:
#include <ESP8266WiFi.h>
#include <espnow.h>
// REPLACE WITH THE MAC...
BCToast is a custom "toast" message implementation based on BCTextEngine: https://www.b4x.com/android/forum/t...-bbcode-parser-rich-text-view.106207/#content
It requires BCTextEngine v1.65+.
Note that unlike B4A built-in toast message feature, this toast message can only be displayed from...
Ciao a tutti, ho questo codice che si comporta in modo strano:
B4X:
Dim bc As ByteConverter
Dim msg As String
Dim t(1) As Byte
Dim crc As Int
If PacketLen = 0 And Data.Length >= 2 Then
PacketLen = Bit.And(Data(1), 0xFF)
PacketLen = Bit.ShiftLeft(PacketLen...
Ciao a tutti, ho questo codice che si comporta in modo strano:
B4X:
Dim bc As ByteConverter
Dim msg As String
Dim t(1) As Byte
Dim crc As Int
If PacketLen = 0 And Data.Length >= 2 Then
PacketLen = Bit.And(Data(1), 0xFF)
PacketLen = Bit.ShiftLeft(PacketLen...
What does this error mean ?
An insert/Update I make to another table of the same database works fine.
An update to the table where the error occurs works fine, but an Insert command brings this error.
With 2 other tools the same insert worked fine, only in b4j I get this error.
B4X...
تابع لغو مسدودیت کاربر ( آنبن کردن ) :
function unbanChatMember($chat_id,$user_id){
bot('unbanChatMember',[
'chat_id'=>$chat_id,
'user_id'=>$user_id
]);
}
✅ بسیار ساده و آسان
تابع اصلی ربات تعریف شده باشه!
موقع استفاده از فانکشن به جای $user_id از متغیر به دست اوردن ایدی...
Wasn't sure where to put this message since it is more of a heads up than a question. Using the new B4A BlueTooth Chat example Here I couldn't connect to B4J JBlueTooth Here after playing around I found that Two B4As connected OK but if I sent a message from B4A to B4J nothing happened -...
I'm trying to make a call to an API (MVC). From the Postman application the call is made correctly, the received data being correct. If I try to make the same call from the B4A application, I get an error message: ResponseError. Reason: Not Found, Response: {"Message": "No HTTP resource was...
NB6 notification not work with android 10 ,with no error return
B4X:
Private icon,icon2 As Bitmap
icon = LoadBitmap(File.DirAssets,"logo24.png") '24
icon2 = LoadBitmap(File.DirAssets,"log256.png") '256
Dim n As NB6
n.Initialize("default"...
آموزش ایجاد کلید شیشه ای در ربات تلگرام
سلام
برای اینکار ابتدا نیاز به ایجاد چند تا متغییر هست
$message = $update->message;
$chatid = $update->callback_query->message->chat->id;
$data = $update->callback_query->data;
$messageid = $update->callback_query->message->message_id;
حالا کد اصلی...
Herkese merhaba arkadaşlar,
Bugün sizlere Mobil Uygulamanızdan Nasıl Bildirim gönderebileceğinizi anlattım.
Uygulamanıza FirebaseMessaging adlı bir Servis Modülü ekleyin (bu isim zorunludur!);
FirebaseMessaging:
Sub Process_Globals
Private fm As FirebaseMessaging
End Sub
Sub...
Has anyone written any B4J programs running in MicroService architecture where one B4J program (controller) can start a new B4J program (worker) that will run on a different CPU core and then the controller can pass messages to the second worker program and receive results back from in the form...
hi, I am connecting to a tcp device via clientsocket and sending a message via AsyncStreams, if I create a sub to send the message can I receive the reply on the same sub or only through AStreams1_NewData?
In one cycle, I would need to send data and receive an answer immediately before...